/**
 * Сброс стилей
 **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; 
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

input {
  outline: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

.clear
{
	clear: both;
}
/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 

body {
    font-family: 'Roboto', Arial, Tahoma, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}


/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    color: inherit;
}

.logo__icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo__tower {
    width: 6px;
    height: 16px;
    background: white;
    position: relative;
    border-radius: 1px 1px 0 0;
}

.logo__tower::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -2px;
    width: 10px;
    height: 4px;
    background: white;
    border-radius: 2px 2px 0 0;
}

.logo__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px 3px 0 0;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo__title {
    font-size: 1.2em;
    font-weight: 700;
    color: #ff6b35;
}

.logo__subtitle {
    font-size: 0.7em;
    font-weight: 300;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Стили для кнопки назад */
.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .back-button {
        margin-bottom: 12px;
        align-self: flex-start;
        order: -1;
         width: 94%;  
        justify-content: center;
    }
    
    .banner {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Десктоп (769px+) */
@media (min-width: 769px) {
    .banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
    }
    
    .back-button {
        order: 1;
        margin: 0;
        flex-shrink: 0; /* Чтобы не сжималась */
    }
    
    .welcome {
        order: 2;
        flex: 1;
        text-align: center;
    }
    
    .contacts {
        order: 3;
        margin: 0;
        flex-shrink: 0; /* Чтобы не сжималась */
    }
}




/* Иконки в контактах */
.contacts .contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contacts .contact-link svg {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contacts .contact-link:hover svg {
    opacity: 1;
}

/* Адаптивность логотипа */
@media (max-width: 768px) {
    .logo__icon {
        width: 32px;
        height: 32px;
    }
    
    .logo__title {
        font-size: 1em;
    }
    
    .logo__subtitle {
        font-size: 0.6em;
    }
}




/* Основные стили баннера */
.banner {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Заголовок */
 .welcome {
    width: 100%;
    text-align: center;
}

.welcome h1 {
    font-family: 'Roboto', cursive;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
} 

/* Контакты - адаптивная сетка */
.contacts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-height: 32px;
    word-break: break-word;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.contact-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.contact-link:hover::before {
    left: 100%;
}

/* Цвета для конкретных контактов */
.contact-link[href*="t.me"]:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.contact-link[href*="whatsapp"]:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-link[href^="tel:"]:hover {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.contact-link[href^="mailto:"]:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* 📱 Адаптивность для очень маленьких экранов */

/* Планшеты и маленькие ноутбуки */
@media (min-width: 481px) and (max-width: 768px) {
    .banner {
        padding: 12px 20px;
        gap: 12px;
        background: linear-gradient(135deg, #2c3e50 0%, #2980b9 100%);
    }
    
    .welcome h1 {
        font-size: 1.6rem;
    }
    
    .contacts {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .contact-link {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* Большие мобильные (481px - 768px) */
@media (min-width: 481px) {
    .contacts {
        grid-template-columns: repeat(4, 1fr);
        max-width: 500px;
    }
    
    .contact-link {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

/* Маленькие мобильные (360px - 480px) */
@media (max-width: 480px) {
    .banner {
        padding: 8px 10px;
        gap: 8px;
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }
    
    .welcome h1 {
        font-size: 1.2rem;
    }
    
    .contacts {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .contact-link {
        padding: 5px 6px;
        font-size: 0.75rem;
        min-height: 28px;
    }
}

/* Очень маленькие мобильные (до 360px) */
@media (max-width: 360px) {
    .banner {
        padding: 5px 8px;
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }
    
    .welcome h1 {
        font-size: 1.1rem;
    }
    
    .contacts {
        grid-template-columns: 1fr;
        gap: 5px;
        max-width: 200px;
    }
    
    .contact-link {
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 15px;
    }
}

/* Ландшафтная ориентация мобильных */
@media (max-height: 500px) and (orientation: landscape) {
    .banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 5px 15px;
        min-height: 50px;
        background: linear-gradient(135deg, #2c3e50 0%, #2980b9 100%);
    }
    
    .welcome {
        width: auto;
        flex: 1;
    }
    
    .contacts {
        width: auto;
        flex: 2;
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }
    
    .welcome h1 {
        font-size: 1.1rem;
        text-align: left;
    }
}

/* Десктоп (769px+) */
@media (min-width: 769px) {
    .banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        min-height: 70px;
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }
    
    .welcome {
        width: auto;
        flex: 1;
    }
    
    .welcome h1 {
        /* font-family: 'Ma Shan Zheng', cursive;  */
         text-transform: uppercase; 
        font-size: 1.8rem;
        text-align: left;
        background: linear-gradient(45deg, #ffffff, #ecf0f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
    }
    
    .contacts {
        width: auto;
        flex: 1;
        grid-template-columns: repeat(4, 1fr);
        max-width: 500px;
        gap: 13px;
    }
    
    .contact-link {
        padding: 6px 13px;
        font-size: 0.9rem;
    }
}

/* Большие десктопы */
@media (min-width: 1024px) {
    .banner {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }
    
    .welcome h1 {
        font-size: 2.2rem;
        background: linear-gradient(45deg, #ffffff, #ecf0f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .contact-link {
        padding: 6px 12px;
        font-size: 1rem;
    }
}

/* Альтернативная цветовая схема (можно переключать) */
.banner.alternative {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.banner.alternative .welcome h1 {
    background: linear-gradient(45deg, #ffffff, #fef9e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner.alternative .contact-link:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .banner {
        background: linear-gradient(135deg, #1a2530 0%, #2c3e50 100%);
    }
    
    .contact-link {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        color: #ecf0f1;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .contact-link:hover {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        color: white;
    }
}

/* Анимация появления */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner {
    animation: fadeInDown 0.6s ease-out;
}
 

#content #wrap #contacts ul
{
	display: flex;
	flex-wrap: wrap; 
	padding-top: 10px;
}
#content #wrap #contacts ul li{
	color: #8e8e8e;
	text-decoration: none;
	padding : 0 5px;
}
 #content #wrap #contacts ul li a
{
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	padding : 9px 5px;
	font-weight:	400;
	font-size: 115%;
}
 #content #wrap #contacts ul li a span
{
	display: inline-block;
	background-color: hsl(0, 79%, 46%);
	border-radius: 10px;
	box-shadow: hsl(0, 92%, 5%) 1px 2px;
	padding : 5px 9px;
	 
}


#content #wrap nav #menu
{
	background-color: #95161f; 
	padding-right : 15px;	
}
	
#content #wrap #menu ul
{
	display: flex;
	flex-wrap: wrap;
	float:right;
}
	
#content #wrap #menu ul li{
	color: #8e8e8e;
	text-decoration: none;
	padding : 0 2px;
}

	
#content #wrap #menu ul li a
{
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	padding : 9px 5px;
	font-weight:	bold;
	font-size: 115%;
}

#content #wrap #menu ul li a:hover
{
	color: #8e8e8e;
	 
}
	
@media (max-width:500px)
{
	#content #wrap #menu ul li a
	{
		 padding : 7px 4px;
	} 
}






/* Заголовок */
.tour-title {
    font-family: 'Roboto', cursive;
    margin-top: 24px;text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    /* font-family: 'Ma Shan Zheng', cursive;  */
    text-transform: uppercase; 

}

/* Основная сетка */
.tour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    grid-template-areas: 
        "main gallery"
        "main description";
}

.main-photo {
    grid-area: main;
}

.photo-gallery {
    grid-area: gallery;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tour-description {
    grid-area: description;
}  

/* Секция программы */
.program-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок секции */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Roboto', cursive;
    margin-top: 24px;
	font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2; 
    /* font-family: 'Ma Shan Zheng', cursive;  */
    text-transform: uppercase; 
}

/* Сетка точек программы */
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Отдельная точка программы */
.point {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.point img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.point p {
    padding: 20px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    background: white;
}

/* 📱 Адаптивность для планшетов */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .points-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* 📱 Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .program-section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .point img {
        height: 180px;
    }
    
    .point p {
        padding: 15px;
        font-size: 1.1rem;
    }
}

/* 📱 Адаптивность для маленьких мобильных */
@media (max-width: 480px) {
    .program-section {
        padding: 20px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .points-grid {
        gap: 15px;
    }
    
    .point img {
        height: 150px;
    }
    
    .point p {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.point {
    animation: fadeInUp 0.6s ease-out;
}

/* Задержки для анимации каждого элемента */
.point:nth-child(1) { animation-delay: 0.1s; }
.point:nth-child(2) { animation-delay: 0.2s; }
.point:nth-child(3) { animation-delay: 0.3s; }
.point:nth-child(4) { animation-delay: 0.4s; }
.point:nth-child(5) { animation-delay: 0.5s; }
.point:nth-child(6) { animation-delay: 0.6s; }
.point:nth-child(7) { animation-delay: 0.7s; }

/* Стили для изображений */
.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.featured-image:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Текстовое описание */
.tour-description {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.tour-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.tour-description p:last-child {
    margin-bottom: 0;
}

/* 📱 Планшеты (768px - 1024px) */
@media (max-width: 1024px) {
    .tour-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .tour-grid {
        gap: 20px;
    }
    
    .featured-image {
        height: 400px;
    }
    
    .gallery-item img {
        height: 100px;
    }
}

/* 📱 Мобильные устройства (768px и меньше) */
@media (max-width: 768px) {
    .tour-section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .tour-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "main"
            "gallery"
            "description";
        gap: 20px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        height: 80px;
    }
    
    .tour-description {
        padding: 20px;
    }
    
    .tour-description p {
        font-size: 1rem;
    }
}

/* 📱 Маленькие мобильные (480px и меньше) */
@media (max-width: 480px) {
    .tour-title {
        font-size: 1.5rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item img {
        height: 100px;
    }
    
    .tour-description {
        padding: 15px;
    }
    
    .tour-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-grid > * {
    animation: fadeIn 0.6s ease-out;
}


#content #wrap #programm
{
 	background-color: #eef;
	 padding: 10px; 
}

 #content #wrap #programm h2 
{
	color :#020b02;
	font-size: 200%;
	font-weight: bold; 
	 margin: 0 auto;
	 padding: 10px; 
	 text-align: center;
}
	 
 
	
#content #wrap #programm #points
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap; 
	  padding: 0px;
	 margin: 0px;
	 width: 99%;
	 height: 100%;
}
 #content #programm #points .point 
 {
	min-height: 200px;
	width: 22%;
	height: auto;
	margin:1.5%;
	 
}
 
#content #programm #points .point img
{
	 margin: 2px;
	 width: 98%; 
	 height: auto; 
	 padding: 3px;
	  
	box-shadow:	
	0px 5px 6px 0px #b2b2b2,
	2px 0px 3px 0px #b2b2b2,
	-2px 0px 3px	-2px #b2b2b2; 
}
#content #programm #points .point p
{
	color: #282d33;
	font-size: 100%;
	font-weight:normal;
	padding:7px 2px;
	text-align: center;
	
	 
}

 @media (max-width:635px)
{  
	#content #wrap #programm #points
	{  	
		justify-content: center; 
	} 
	#content  #programm #points .point  
	{ 
		width: 210px;
		
	} 
	#content #programm #points .point img
	{
		padding: 5px;
		
	} 
}
 @media (min-width:1200px)
{  
 
	#content  #programm #points .point  
	{ 
		width: 25%
		 
		
	} 
	#content #programm #points .point img
	{
		padding: 5px;
		
	} 
}


 
/* Основная сетка */
/* Основная компактная сетка */
.pricing-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Компактные карточки */
.price-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.price-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Заголовок карточки */
.card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f3f4;
}

.card-ico {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
}

.card-head h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

/* Опции стоимости */
.price-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-option {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 14px;
    border-left: 3px solid #dc0d0d;
}

.option-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.option-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.option-tag {
    background: #dc0d0d;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.option-tag.premium {
    background: #ff6b00;
}

.price-option p {
    margin: 0 0 8px 0;
    color: #6c757d;
    font-size: 0.85rem;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc0d0d;
}

.price-desc {
    font-size: 0.8rem;
    color: #6c757d;
}

.price-note {
    font-size: 0.75rem;
    color: #8a8a8a;
    font-style: italic;
}

/* Дополнительные расходы */
.expenses {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expense-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.expense-name {
    font-size: 0.9rem;
    color: #2c3e50;
}

.expense-cost {
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
}

.currency-hint {
    margin-top: 10px;
    font-size: 0.7rem;
    color: #8a8a8a;
    text-align: center;
}

/* Продолжительность */
.duration {
    text-align: center;
    padding: 10px 0;
}

.duration-time {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 4px;
}

.duration-text {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Дополнительные услуги */
.services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-ico {
    font-size: 1rem;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

.service-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e88e5;
}

/* 📱 Адаптивность для планшетов */
@media (max-width: 1024px) {
    .pricing-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 12px;
    }
}

/* 📱 Адаптивность для мобильных */
@media (max-width: 768px) {
    .pricing-compact {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 10px;
    }
    
    .price-card {
        padding: 16px;
    }
    
    .card-head {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .card-ico {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .card-head h3 {
        font-size: 1rem;
    }
    
    .price-option {
        padding: 12px;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .duration-time {
        font-size: 1.6rem;
    }
}

/* 📱 Очень маленькие экраны */
@media (max-width: 360px) {
    .pricing-compact {
        padding: 8px;
        gap: 12px;
    }
    
    .price-card {
        padding: 14px;
        border-radius: 10px;
    }
    
    .card-head {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .option-head {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .price-main {
        flex-direction: column;
        gap: 4px;
    }
    
    .service-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .service-price {
        font-size: 0.8rem;
    }
}

/* Упрощенные анимации */
.price-card {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


 /* Альтернативный вариант с более компактным дизайном */
 .disclaimer-card {
    padding:  5px 0;
}
.disclaimer-card.compact {
    padding: 25px;
}

.disclaimer-card.compact .disclaimer-header {
    margin-bottom: 15px;
}

.disclaimer-card.compact .disclaimer-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
}




.footer {
    background: linear-gradient(135deg, #1a1d23 0%, #2d3436 100%);
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
}

 

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer__brand {
    text-align: left;
}

.footer__title {
    font-family: 'Roboto', cursive;
    /* font-family: 'Ma Shan Zheng', cursive;  */
    text-transform: uppercase; 
    color: #fcfbfb;
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: -0.5px;
}

.footer__tagline {
    color: #a0a0a0;
    font-size: 0.85em;
    margin: 0;
    font-weight: 300;
}

.contact-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.contact-link svg {
    transition: transform 0.3s ease;
}

.contact-link:hover svg {
    transform: scale(1.1);
}

.footer__copyright {
    text-align: right;
}

.footer__copyright p {
    color: #888;
    font-size: 0.8em;
    margin: 0;
    font-weight: 300;
}

/* Адаптивность */
@media (max-width: 968px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer__brand {
        text-align: center;
    }
    
    .contact-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer__copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 15px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-link {
        width: 200px;
        justify-content: center;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Увеличьте z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.close {
    position: fixed; /* Изменено на fixed */
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close:hover {
    color: #fff;
    background: rgba(0,0,0,0.8);
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}
 