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

:root {
    --primary-color: #2c5530;
    --secondary-color: #6a994e;
    --accent-color: #a7c957;
    --light-color: #f2e8cf;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    
    /* Ночной режим - светлая тема по умолчанию */
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --footer-bg: #2c5530;
    --header-text: #ffffff;
    --footer-text: #ffffff;
    
    /* Цвета секций для чередования */
    --section-light: #ffffff;
    --section-dark: #f2e8cf;
    
    /* Новые переменные для лучшего контраста в темной теме */
    --section-dark-card-bg: #2d2d2d;
    --section-light-card-bg: #ffffff;
}

/* Ночной режим */
[data-theme="dark"] {
    --primary-color: #6a994e;
    --secondary-color: #a7c957;
    --accent-color: #f2e8cf;
    --light-color: #2d2d2d;
    --dark-color: #1a1a1a;
    --text-color: #e0e0e0;
    --text-light: #aaaaaa;
    --white: #1a1a1a;
    --shadow: 0 8px 30px rgba(255, 255, 255, 0.05); /* Более светлая тень */
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --footer-bg: #1a1a1a;
    --header-text: #ffffff;
    --footer-text: #e0e0e0;
    
    /* Цвета секций для чередования в темной теме */
    --section-light: #1a1a1a;
    --section-dark: #2d2d2d;
    
    /* Контрастные фоны для подблоков */
    --section-dark-card-bg: #1a1a1a;
    --section-light-card-bg: #2d2d2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: var(--transition);
}

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

/* Переключатель темы */
.theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.theme-switcher:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

/* 1. ИСПРАВЛЕННАЯ КНОПКА ПРОКРУТКИ "ВВЕРХ/ВНИЗ" */
.scroll-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
}

.scroll-btn.visible {
    opacity: 1;
    visibility: visible;
    animation: fadeInButton 0.3s ease;
}

.scroll-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.scroll-btn.scrolled {
    transform: scale(1);
}

.scroll-btn.scrolled:hover {
    transform: scale(1.1);
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Навигационные точки */
.scroll-indicators {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(44, 85, 48, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    display: block;
}

.scroll-dot:hover {
    background: var(--primary-color);
    transform: scale(1.3);
}

.scroll-dot.active {
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.scroll-dot.active:hover {
    transform: scale(1.5);
}

[data-theme="dark"] .scroll-dot {
    background: rgba(106, 153, 78, 0.3);
}

[data-theme="dark"] .scroll-dot.active {
    background: var(--secondary-color);
}

/* Шапка */
.header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--header-text);
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* График работы в шапке */
.schedule-info {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.schedule-text {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.schedule-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Исправление: телефон и ссылка ВК всегда белые */
.phone-link, .website-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 12px 30px;
    background: rgba(44, 85, 48, 0.8);
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

.phone-link:hover, .website-link:hover {
    background: rgba(106, 153, 78, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

/* Секции */
.section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background-color: var(--section-light);
}

.section-dark {
    background-color: var(--section-dark);
}

/* ИСПРАВЛЕННЫЙ ОТСТУП ПОД ЗАГОЛОВКАМИ (одинаковый во всех разделах) */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

.section-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

/* Особенности глэмпинга */
.features-section {
    background: var(--section-dark);
}

[data-theme="dark"] .features-section .features-content {
    background: var(--section-dark-card-bg);
}

.features-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.tab-icon {
    font-size: 1.2rem;
}

.features-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

/* ИСПРАВЛЕННОЕ ВЫРАВНИВАНИЕ ПО ЛЕВОМУ КРАЮ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-items: start; /* Изменено с center на start для выравнивания по левому краю */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
    width: 100%;
    max-width: 100%; /* Убрано ограничение 300px, теперь на всю ширину ячейки */
    min-height: 100px;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.07);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    flex: 1; /* Добавлено для растяжения текстового блока */
}

.feature-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Удалены лишние контейнеры для центрирования, теперь не нужны */
.feature-item-container {
    display: contents; /* Делаем контейнер прозрачным для сетки */
}

/* График работы - ИСПРАВЛЕННЫЙ (заголовок вынесен) */
.schedule-section {
    background: var(--section-light);
    padding: 80px 0;
}

.schedule-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    transition: var(--transition);
    text-align: center;
}

[data-theme="dark"] .schedule-content {
    background: var(--section-light-card-bg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .prices-section .schedule-content {
    background: var(--section-dark-card-bg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

.schedule-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .schedule-content:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.08);
}

.schedule-period {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
}

.schedule-notice {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed var(--text-light);
    text-align: center;
}

/* Блок координат для карты */
.map-coordinates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.coordinates-text {
    font-size: 1.2rem;
    color: var(--text-color);
    background: var(--light-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color);
}

.copy-coordinates-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
}

.copy-coordinates-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow);
}

.copy-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ИСПРАВЛЕННОЕ СООБЩЕНИЕ "СКОПИРОВАНО!" ДЛЯ ТЕМНОЙ ТЕМЫ */
.copied-text {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

[data-theme="dark"] .copied-text {
    background: var(--accent-color);
    color: #1a1a1a;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.copied-text.show {
    display: block;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    20%, 80% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* БЛОК ЦЕН - ИСПРАВЛЕННЫЙ (единый дизайн с другими блоками) */
.prices-section {
    background: var(--section-dark);
    padding: 80px 0;
}

.price-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    text-align: center;
}

[data-theme="dark"] .price-card {
    background: var(--section-light-card-bg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .price-card:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.08);
}

.price-info-text {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
}

/* Форматы отдыха */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.format-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-color);
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.format-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .format-card {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .format-card:hover {
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.09);
}

.format-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.format-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.format-tag {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
    transition: var(--transition);
}

[data-theme="dark"] .format-tag {
    background: var(--dark-color);
    color: var(--accent-color);
}

.format-description {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.7;
}

.format-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: var(--light-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: var(--transition);
}

[data-theme="dark"] .feature {
    background: var(--dark-color);
    color: var(--accent-color);
}

.format-card:hover .feature {
    background: var(--accent-color);
    color: var(--white);
}

/* Отзывы */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-link {
    display: block;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.review-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

[data-theme="dark"] .review-link {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .review-link:hover {
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08);
}

.google-review:hover {
    background: linear-gradient(135deg, var(--light-color), var(--card-bg));
}

.yandex-review:hover {
    background: linear-gradient(135deg, var(--light-color), var(--card-bg));
}

.review-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.review-link h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.review-link p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Контакты */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .contact-item {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .contact-item:hover {
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-link, .address-link {
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover, .address-link:hover {
    color: var(--secondary-color);
}

.address-link {
    font-style: normal;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
}

/* Карта */
.map-section {
    background: var(--section-dark);
}

.map-container {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Футер */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.footer-text {
    opacity: 0.9;
    margin-bottom: 5px;
    color: var(--footer-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

[data-theme="dark"] .footer-text {
    opacity: 0.8;
}

.footer-social {
    margin: 20px 0;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
    font-size: 1.1rem;
    display: inline-block;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--footer-bg);
}

[data-theme="dark"] .social-link:hover {
    color: var(--white);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Кнопка воспроизведения видео для мобильных */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(44, 85, 48, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-play-button:hover {
    background: rgba(106, 153, 78, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button.hidden {
    display: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .formats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .header-contacts {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-link, .website-link {
        width: 100%;
        max-width: 300px;
    }
    
    .features-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-content {
        padding: 25px;
    }
    
    /* Убраны лишние правила для центрирования */
    
    /* Координаты на мобильных */
    .map-coordinates {
        flex-direction: column;
        gap: 15px;
    }
    
    .coordinates-text {
        text-align: center;
        width: 100%;
    }
    
    /* Навигационные точки для мобильных */
    .scroll-indicators {
        right: 10px;
        gap: 8px;
    }
    
    .scroll-dot {
        width: 8px;
        height: 8px;
    }
    
    .scroll-dot.active {
        width: 10px;
        height: 10px;
    }
    
    /* Кнопки */
    .theme-switcher,
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .theme-switcher {
        top: 15px;
        right: 15px;
    }
    
    .scroll-btn {
        bottom: 15px;
        right: 15px;
    }
    
    /* График работы */
    .schedule-content {
        padding: 30px 20px;
    }
    
    .schedule-period {
        font-size: 1.1rem;
    }
    
    /* Блок цен */
    .price-card {
        padding: 30px 20px;
    }
    
    .price-info-text {
        font-size: 1.1rem;
    }
    
    /* Футер для мобильных */
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .footer-text {
        font-size: 1rem;
    }
    
    .social-link {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    /* Кнопка копирования на мобильных */
    .copy-coordinates-btn {
        width: 45px;
        height: 45px;
    }
    
    .copy-icon {
        font-size: 1.3rem;
    }
    
    /* Сообщение "Скопировано!" на мобильных */
    .copied-text {
        font-size: 0.8rem;
        padding: 4px 10px;
        top: -35px;
    }
}

@media (max-width: 500px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 35px;
    }
    
    .format-card,
    .review-link,
    .contact-item,
    .feature-item {
        padding: 25px 20px;
    }
    
    .theme-switcher,
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .theme-switcher {
        top: 10px;
        right: 10px;
    }
    
    .scroll-btn {
        bottom: 10px;
        right: 10px;
    }
    
    .scroll-indicators {
        right: 8px;
        gap: 6px;
    }
    
    .scroll-dot {
        width: 6px;
        height: 6px;
    }
    
    .scroll-dot.active {
        width: 8px;
        height: 8px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    /* Футер для очень узких экранов */
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Кнопка копирования на очень узких экранах */
    .copy-coordinates-btn {
        width: 40px;
        height: 40px;
    }
    
    .copy-icon {
        font-size: 1.2rem;
    }
    
    /* Сообщение "Скопировано!" на очень узких экранах */
    .copied-text {
        font-size: 0.7rem;
        padding: 3px 8px;
        top: -30px;
    }
}

@media (min-width: 2000px) {
    .container {
        max-width: 1600px;
    }
    
    .main-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-text,
    .format-description,
    .contact-link,
    .address {
        font-size: 1.3rem;
    }
}