@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;700;800;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Emerald & Sea Breeze Palette - Light Mode ONLY */
    --primary: #0EA8A0; /* Vibrant Teal from Logo */
    --accent: #14B8A6; /* Brighter Teal */
    --bg-dark: #FDFCF7; /* Мягкий и теплый песочный оттенок */
    --bg-card: rgba(255, 255, 255, 0.95);
    --text-main: #042F2E; /* Темный изумруд для контента */
    --text-muted: #134E4A; /* Читаемый бирюзовый */
    --white: #FFFFFF;
    --glass-border: rgba(14, 168, 160, 0.25);
    --glass-shadow: 0 10px 40px rgba(13, 148, 136, 0.08);
    --white-text: #FFFFFF;
    --text-on-white: #042F2E;
    
    /* Typography Luxe (GetLuxe style) */
    --font-heading: 'Geologica', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
    --reveal-delay: 0.1s;
}

html {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 10% 20%, rgba(20, 184, 166, 0.12) 0px, transparent 40%),
        radial-gradient(at 90% 10%, rgba(245, 158, 11, 0.15) 0px, transparent 40%),
        radial-gradient(at 50% 80%, rgba(249, 115, 22, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 90%, rgba(6, 182, 212, 0.12) 0px, transparent 40%);
    background-attachment: fixed;
    min-height: 100vh;
}

body {
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: transparent;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: transparent; /* Устраняем баг перекрытия летающих объектов! */
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

section {
    overflow: hidden; /* Защита от вылетающих анимаций и свечений */
    position: relative;
    width: 100%;
    z-index: 2; /* Позиционируем поверх летающих фоновых элементов, решая баг Chromium */
}

/* Элементы свечения на фоне */
.glow-spot {
    position: fixed; /* Фиксирует сферы во вьюпорте, исключая растягивание футера! */
    border-radius: 50%;
    filter: blur(140px); /* Мягкое гигантское размытие */
    z-index: -2; /* Глубокий слой под всем контентом */
    pointer-events: none;
    will-change: transform, opacity; /* Сигнал браузеру использовать GPU */
}

.glow-1 {
    top: -200px;
    right: -200px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.38) 0%, rgba(14, 168, 160, 0.15) 45%, rgba(0, 0, 0, 0) 70%);
    animation: drift-glow-1 30s ease-in-out infinite;
}

.glow-2 {
    top: 25%;
    left: -350px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, rgba(249, 115, 22, 0.12) 45%, rgba(0, 0, 0, 0) 70%);
    animation: drift-glow-2 25s ease-in-out infinite;
}

.glow-3 {
    top: 60%;
    right: -250px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(99, 102, 241, 0.1) 45%, rgba(0, 0, 0, 0) 70%);
    animation: drift-glow-3 35s ease-in-out infinite;
}

.glow-4 {
    bottom: -150px;
    left: 20%;
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(245, 158, 11, 0.12) 45%, rgba(0, 0, 0, 0) 70%);
    animation: drift-glow-4 28s ease-in-out infinite;
}

/* Оптимизация для мобильных устройств (уменьшаем размер сфер для слабых экранов) */
@media (max-width: 768px) {
    .glow-spot {
        filter: blur(100px);
    }
    .glow-1 { width: 500px; height: 500px; }
    .glow-2 { width: 450px; height: 450px; }
    .glow-3 { width: 500px; height: 500px; }
    .glow-4 { width: 480px; height: 480px; }
}

/* Энергоэффективные @keyframes для дрейфа (только transform) */
@keyframes drift-glow-1 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(120px, 80px, 0) scale(1.15) rotate(15deg);
    }
    66% {
        transform: translate3d(-70px, 160px, 0) scale(0.9) rotate(-15deg);
    }
}

@keyframes drift-glow-2 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-100px, 120px, 0) scale(1.2) rotate(-20deg);
    }
}

@keyframes drift-glow-3 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(90px, -140px, 0) scale(0.85) rotate(25deg);
    }
}

@keyframes drift-glow-4 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-80px, -100px, 0) scale(1.15) rotate(-15deg);
    }
}

/* Animations System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
    transition-delay: var(--delay, 0s);
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes scroll-glow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(0,210,255,0.1)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 25px rgba(0,210,255,0.3)); }
}

/* Header */
.header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(15px) saturate(160%);
    background: rgba(0, 49, 48, 0.15); /* Очень легкий оттенок из логотипа */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.header-scrolled {
    height: 70px;
    background: rgba(0, 49, 48, 0.45); /* Чуть плотнее при скролле */
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

body.light-theme .header {
    background: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(14, 168, 160, 0.1);
}

body.light-theme .header.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 28px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.header .logo img {
    height: 44px; /* Компактная высота для навбара */
    width: auto;
    display: block;
}

.footer-about .logo svg {
    width: 200px;
    height: auto;
}

.nav {
    display: flex;
    gap: 40px; /* Больше пространства */
}

.nav a, .mobile-nav a {
    text-decoration: none;
    color: var(--text-main); /* Более контрастный цвет */
    font-weight: 600; /* Выше жирность для читаемости */
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.nav a:hover, .mobile-nav a:hover {
    color: var(--primary);
}

/* Burger Menu Toggle */
.burger-menu {
    display: none; /* Скрыто на десктопе */
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition);
}

.burger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1050;
    background: rgba(4, 47, 46, 0.35); /* Полупрозрачный изумрудный оверлей */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-theme .mobile-menu-content {
    background: linear-gradient(135deg, rgba(253, 252, 247, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 1px solid rgba(14, 168, 160, 0.18);
    box-shadow: -10px 0 40px rgba(13, 148, 136, 0.06);
}

.mobile-menu-logo-wrap {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(14, 168, 160, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Распределяем логотип и кнопку закрытия по краям */
}

.mobile-menu-logo {
    height: 32px; /* Чуть уменьшаем высоту для изящности */
    width: auto;
    display: block;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 168, 160, 0.08);
    border: 1px solid rgba(14, 168, 160, 0.18);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.mobile-menu-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-close i {
    width: 18px;
    height: 18px;
    display: block;
}

body.light-theme .mobile-menu-close {
    background: rgba(14, 168, 160, 0.08);
    border-color: rgba(14, 168, 160, 0.18);
    color: var(--text-main);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav a i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(14, 168, 160, 0.08);
    border-color: rgba(14, 168, 160, 0.15);
    color: var(--primary);
    padding-left: 20px;
}

.mobile-nav a:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.mobile-nav a.mobile-cta {
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff !important;
    justify-content: center;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(14, 168, 160, 0.2);
}

.mobile-nav a.mobile-cta i {
    color: #fff;
}

.mobile-nav a.mobile-cta:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    box-shadow: 0 12px 28px rgba(14, 168, 160, 0.3);
    transform: translateY(-2px);
    padding-left: 20px; /* Сохраняем центрированный вид */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 110px 0 100px; /* Меньше пустоты сверху */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Ticker removed */

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr; /* Больше места под текст */
    align-items: center;
    gap: 60px;
}



.hero p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 450px;
    /* Немного уменьшили для баланса с текстом */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-static-img-wrap {
    width: 100%;
    height: 500px;
    border-radius: 32px; /* Чистое скругление */
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-static-img-wrap:hover {
    transform: scale(1.02);
}

.hero-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Glassmorphic Country Badge */
.hero-country-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.88); /* Премиальное светлое матовое стекло */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); /* Изящная полупрозрачная бирюзовая рамка */
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12); /* Мягкая тень в тон бренда */
    color: var(--text-main); /* Благородный темно-изумрудный оттенок */
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-heading);
    pointer-events: none; /* Исключить помехи для кликов */
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.hero-country-badge svg {
    width: 15px;
    height: 15px;
    color: var(--primary); /* Фирменный бирюзовый цвет иконки */
    stroke-width: 2.5px;
}

.hero-country-badge .badge-text {
    letter-spacing: 0.3px;
}

.decor-icon {
    position: absolute;
    width: 140px;
    z-index: 10;
    pointer-events: none;
    transition: var(--transition);
    opacity: 1;
}

body.light-theme .decor-icon {
    opacity: 1;
}

body.light-theme .glow-spot {
    opacity: 0.85; /* Повышаем прозрачность, чтобы сочные летние тона сияли! */
    filter: blur(120px);
}

body.light-theme .section-tag {
    background: rgba(14, 168, 160, 0.1);
    border-color: rgba(14, 168, 160, 0.2);
    color: var(--primary);
}

body.light-theme .header {
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .hero-input {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(14, 168, 160, 0.2);
    color: #042F2E;
    box-shadow: 0 4px 18px rgba(14, 168, 160, 0.05);
    backdrop-filter: blur(10px);
}

body.light-theme .hero-input::placeholder {
    color: rgba(19, 78, 74, 0.5);
}

body.light-theme .hero-input:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(14, 168, 160, 0.15);
}

body.light-theme .glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 168, 160, 0.18);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.04);
}

body.light-theme .btn-primary {
    color: #FFFFFF !important; /* Кнопки всегда с белым текстом */
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.2);
}

body.light-theme .step-num {
    color: var(--primary);
    opacity: 0.15;
    background: transparent;
    z-index: 0;
}

body.light-theme .hero h1 {
    background: linear-gradient(135deg, #0F172A 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .dest-img::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

body.light-theme .dest-title {
    color: #FFFFFF; /* Оставляем белым, так как на картинках темный градиент */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

body.light-theme .dest-desc {
    color: rgba(255,255,255,0.95);
}

body.light-theme .dest-card {
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .gradient-text-header {
    background: linear-gradient(90deg, #0F172A, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .trust-conclusion {
    color: var(--accent);
}

body.light-theme .trust-subtitle b {
    color: var(--accent);
}

body.light-theme .trust-card-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 168, 160, 0.18);
}

body.light-theme .footer {
    background: #E6FFFA; /* Светлый ментоловый для футера */
    border-top: 1px solid rgba(14, 168, 160, 0.1);
}

body.light-theme .footer-col h4 {
    color: #0F172A;
}

body.light-theme .footer-about p,
body.light-theme .footer-links a,
body.light-theme .footer-contact li {
    color: #475569;
}

body.light-theme .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.05);
    color: #64748B;
}

body.light-theme .social-btn {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    color: #0F172A;
}

body.light-theme .social-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}

body.light-theme .hot-section {
    background: transparent; /* Сделали фон прозрачным, чтобы летающие объекты были видны и в блоге! */
}

body.light-theme .time-box {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #0F172A;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

body.light-theme .time-label {
    color: #64748B;
}

body.light-theme .footer-contact i {
    color: var(--accent);
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
    margin-left: 15px;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

body.light-theme .theme-toggle {
    color: var(--accent);
}

.decor-plane {
    top: -20px;
    right: 0;
    animation: float-plane 4s ease-in-out infinite;
}

.decor-palm {
    bottom: -40px;
    left: -40px;
    animation: float-palm 5s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-plane {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(-15px, -15px) rotate(-5deg);
    }
}

/* Glass Cards */
.glass-card {
    background: rgba(30, 41, 59, 0.4); /* Больше прозрачности */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Тоньше рамка */
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(0, 210, 255, 0.1);
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.btn-primary {
    background: linear-gradient(135deg, #2DD4BF 0%, #0EA8A0 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(14, 168, 160, 0.3);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5EEAD4 0%, #14B8A6 100%);
    box-shadow: 0 8px 25px rgba(14, 168, 160, 0.5);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(202, 138, 4, 0.1);
}

/* Hero Form Refinement */
.hero-form-wrap {
    padding: 24px;
    max-width: 650px;
}

.hero h1 {
    font-size: clamp(34px, 5.5vw, 60px); 
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    font-weight: 900;
    font-family: var(--font-heading);
    max-width: 90%; /* Ограничение для принудительного переноса если слишком длинно */
}

.hero-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-input {
    flex: 1;
    min-width: 180px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.4);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.hero-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

.btn-hero {
    padding: 16px 32px;
}

.hero-visual:after {
    display: none;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    100% {
        left: 150%;
    }
}

/* Section Common */
section {
    padding: 120px 0;
    position: relative;
    z-index: 2; /* Поддержка корректного наложения для всех секций */
}

/* Фикс для юридических страниц: убираем гигантские отступы у вложенных секций */
.policy-content section {
    padding: 0;
    margin-bottom: 24px;
}

.policy-content p {
    margin-bottom: 12px;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 6px;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    font-size: 12px;
    display: table;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(14, 168, 160, 0.08);
    border: 1px solid rgba(14, 168, 160, 0.15);
    border-radius: 100px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

/* Trust Banner Highlight */
.trust-card-highlight {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 168, 160, 0.3);
    background: linear-gradient(135deg, rgba(0, 49, 48, 0.6) 0%, rgba(20, 184, 166, 0.1) 100%);
    padding: 60px 40px;
}

.trust-glow {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(14, 168, 160, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

.trust-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gradient-text-header {
    font-size: 42px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-subtitle {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 30px auto;
    width: 60%;
}

.trust-main-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.trust-conclusion {
    font-size: 26px;
    color: var(--primary);
    font-weight: 800;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.destinations-slider {
    padding: 40px 20px !important; 
    margin: -40px -20px;
}

/* Destinations Card Redesign */
.dest-card {
    padding: 0 !important; /* Убираем все внутренние отступы, чтобы картинка была во весь блок */
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.dest-card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: transparent; /* Никакого наследования фона, который создавал рамку */
    border-radius: inherit;
    z-index: 2;
}

.dest-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.dest-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(202, 138, 4, 0.15);
    color: var(--primary);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(202, 138, 4, 0.3);
}

.dest-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Swiper Slider Customization */
.destinations-slider,
.advantages-slider,
.blog-slider,
.how-slider {
    padding: 20px 0 60px;
    overflow: visible;
    /* Чтобы тени карточек не обрезались */
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    transition: var(--transition);
}

.swiper-slide > * {
    flex: 1;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: transparent !important;
    width: 60px;
    height: 60px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 32px !important;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--white) !important;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--primary));
    background: transparent !important;
}

.swiper-button-prev {
    left: -10px;
}

.swiper-button-next {
    right: -10px;
}

.hot-section {
    background: transparent; /* Полная прозрачность для единства с фоном! */
}

.timer-wrap {
    display: flex;
    gap: 16px;
    margin: 20px 0;
}

.time-box {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 12px;
    min-width: 70px;
    text-align: center;
}

.time-box b {
    font-size: 22px;
    color: var(--primary);
    display: block;
}

/* Steps */
.step-card {
    position: relative;
}

.step-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 160px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        min-height: 400px;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 58px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .desktop-only {
        display: none;
    }

    .header-container {
        padding: 0 16px; /* Уменьшаем отступы по бокам */
    }

    .logo img {
        height: 36px !important; /* Уменьшаем высоту логотипа */
        width: auto !important; /* Пропорциональная ширина */
    }

    .header-right {
        gap: 8px; /* Сближаем иконки */
    }

    .burger-menu {
        display: flex;
    }

    .hero-visual, .glow-spot {
        display: none !important;
    }

    .hero h1 {
        font-size: 38px; /* Немного уменьшим для лучшего входа в экран */
        line-height: 1.1;
    }

    .grid-3,
    .grid-2,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-num {
        font-size: 60px;
        right: 15px;
        bottom: 15px;
    }
}

/* Service Details Section */
.service-details {
    padding-bottom: 120px;
}

.service-intro {
    background: rgba(0, 210, 255, 0.03);
    border: 1px dashed var(--glass-border);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 48px;
    color: var(--text-muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-box h3 i {
    color: var(--primary);
}

.price-badge {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 24px;
}

.highlight-list {
    list-style: none;
    margin-top: 15px;
}

.highlight-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-muted);
}

.highlight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Premium Footer */
.footer {
    background-color: #001F1E; /* Глубокий темный изумруд */
    padding: 100px 0 50px;
    border-top: 1px solid rgba(14, 168, 160, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer h4 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 20px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.legal-info {
    font-size: 11px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Offcanvas Country Detail */
.clickable-card {
    cursor: pointer;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-country {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 550px;
    height: 100vh;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--glass-border);
    z-index: 2100;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.offcanvas-country.active {
    right: 0;
}

.offcanvas-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.offcanvas-close:hover {
    transform: rotate(90deg);
    border-color: var(--primary);
    color: var(--primary);
}

.offcanvas-content {
    overflow-y: auto;
    padding: 60px 40px;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.offcanvas-content::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-content::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

/* Country Detail Typography */
.country-header {
    margin-bottom: 40px;
}

.country-header h2 {
    font-size: 36px;
    margin: 10px 0;
    color: var(--white);
}

.branding-line {
    font-size: 16px;
    color: var(--primary);
}

.intro-text {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-block h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.info-block ul {
    list-style: none;
}

.info-block ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 15px;
}

.info-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.info-block p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.info-block.practical {
    background: rgba(0, 210, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 210, 255, 0.1);
}

.offcanvas-cta {
    margin-top: 40px;
}

/* Light theme support */
body.light-theme .offcanvas-country {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .country-header h2 {
    color: #0F172A;
}

body.light-theme .info-block {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .offcanvas-close {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.1);
    color: #0F172A;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .offcanvas-country {
        max-width: 100%;
        border-left: none;
    }
    
    .offcanvas-content {
        padding: 80px 24px 40px;
    }
    
    .country-header h2 {
        font-size: 28px;
    }
}

/* Destinations Page Styling */
.destinations-page {
    padding-top: 120px;
    padding-bottom: 100px;
}

.dest-hero {
    text-align: center;
    margin-bottom: 80px;
}

.dest-hero h1 {
    font-size: 48px;
    margin: 16px 0;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.destinations-page .dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.destinations-page .dest-card {
    height: 380px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background-color: var(--bg-card);
}

.destinations-page .dest-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.destinations-page .dest-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destinations-page .dest-title {
    font-size: 28px;
    color: var(--white);
    margin: 0;
}

.destinations-page .dest-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 168, 160, 0.1);
    color: var(--primary);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.destinations-page .dest-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .destinations-page .dest-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-page .dest-card {
        height: 300px;
    }
    
    .destinations-page .dest-hero h1 {
        font-size: 32px;
    }
}

/* ==========================================
   PREMIUM SECTIONS: NEW DESIGN SYSTEM
   ========================================== */

/* Grid 4 Columns */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    position: relative;
}

.adv-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

body.light-theme .adv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px); /* Уменьшили размытие, чтобы летающие объекты за стеклом были видны! */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 168, 160, 0.18);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.04);
}

.adv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 100%);
    box-shadow: 0 20px 40px rgba(14, 168, 160, 0.12), 
                0 0 25px rgba(14, 168, 160, 0.06);
}

.adv-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(14, 168, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.adv-card:hover .adv-icon-wrap {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}

.adv-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.adv-card h3 {
    font-size: 20px;
    color: #042F2E;
    margin: 0 0 14px 0;
    font-weight: 800;
}

.adv-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Hot Tours Styling */
.hot-tours-section {
    padding: 100px 0;
    position: relative;
}

.tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

body.light-theme .tour-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 168, 160, 0.18);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.04);
}

.tour-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(14, 168, 160, 0.15);
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #EF4444;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.tour-img {
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.tour-card:hover .tour-img {
    transform: scale(1.05);
}

.tour-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-meta svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.tour-card h3 {
    font-size: 22px;
    color: #042F2E;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.tour-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex: 1;
}

/* Timer styles */
.timer-container {
    background: rgba(14, 168, 160, 0.05);
    border: 1px solid rgba(14, 168, 160, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timer-title {
    font-size: 13px;
    font-weight: 700;
    color: #042F2E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 42px;
    border: 1px solid rgba(14, 168, 160, 0.1);
    box-shadow: 0 2px 6px rgba(14, 168, 160, 0.05);
}

.time-box .days,
.time-box .hours,
.time-box .minutes {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.time-box .label {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(14, 168, 160, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.tour-price-wrap {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: rgba(19, 78, 74, 0.4);
    font-weight: 500;
    margin-bottom: 2px;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

/* Reviews Styling */
.reviews-section {
    padding: 100px 0;
    position: relative;
}

.review-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

body.light-theme .review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 168, 160, 0.18);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.04);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(14, 168, 160, 0.1);
}

.review-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
}

.review-stars .star-fill {
    color: #FBBF24 !important;
    fill: #FBBF24 !important;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    flex: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(14, 168, 160, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(14, 168, 160, 0.2);
}

.user-info h4 {
    font-size: 16px;
    color: #042F2E;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.user-info span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Final CTA Section Styling */
.final-cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.cta-card-highlight {
    padding: 60px 40px;
    text-align: center;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 168, 160, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(13, 148, 136, 0.06);
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(14, 168, 160, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 20px 0 16px 0;
    line-height: 1.2;
    font-weight: 800;
    color: #042F2E;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 700px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cta-form {
        flex-direction: column;
    }
}

.btn-cta {
    padding: 16px 32px;
    white-space: nowrap;
}

.cta-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.cta-trust-note svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ==========================================
   INTERACTIVE QUIZ: PREMIUM GLASSMORPHISM
   ========================================== */

.quiz-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.quiz-glass-container {
    padding: 50px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 168, 160, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(13, 148, 136, 0.06);
}

.quiz-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(14, 168, 160, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Progress Bar */
.quiz-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.quiz-step-counter {
    font-size: 14px;
    font-weight: 700;
    color: #042F2E;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-progress-bar-wrap {
    width: 100%;
    height: 8px;
    background: rgba(14, 168, 160, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.quiz-progress-bar-fill {
    height: 100%;
    width: 20%; /* Start at step 1 */
    background: linear-gradient(90deg, var(--primary) 0%, #06b6d4 100%);
    border-radius: 99px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Steps and Transitions */
.quiz-form-wrapper {
    position: relative;
    z-index: 2;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: quizFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.quiz-step h3 {
    font-size: 26px;
    font-weight: 800;
    color: #042F2E;
    margin: 0 0 10px 0;
    text-align: center;
}

.quiz-step-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

/* Grid Options */
.quiz-options-grid {
    margin-bottom: 20px;
}

.quiz-option-card {
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.quiz-option-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(14, 168, 160, 0.08);
}

.quiz-option-card.selected {
    border-color: var(--primary);
    background: rgba(14, 168, 160, 0.08) !important;
    box-shadow: 0 0 0 2px var(--primary), 0 15px 30px rgba(14, 168, 160, 0.1);
}

.quiz-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(14, 168, 160, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
    transition: var(--transition);
}

.quiz-option-card:hover .quiz-option-icon,
.quiz-option-card.selected .quiz-option-icon {
    background: var(--primary);
    color: var(--white);
}

.quiz-option-icon svg {
    width: 28px;
    height: 28px;
}

.quiz-option-label {
    font-size: 16px;
    font-weight: 700;
    color: #042F2E;
}

/* Step 5 Inputs */
.quiz-final-wrapper {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-final-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Success Screen styles */
.quiz-success-step {
    text-align: center;
    padding: 30px 0;
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 40px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.success-icon-wrap svg {
    width: 40px;
    height: 40px;
}

.quiz-success-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 30px auto;
}

.quiz-summary-box {
    background: rgba(14, 168, 160, 0.05);
    border: 1px solid rgba(14, 168, 160, 0.12);
    border-radius: 20px;
    padding: 24px;
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
}

.quiz-summary-box h4 {
    margin: 0 0 14px 0;
    color: #042F2E;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quiz-summary-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-summary-box li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(14, 168, 160, 0.1);
    padding-bottom: 8px;
}

.quiz-summary-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quiz-summary-box li strong {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================
   INTERACTIVE BACKGROUND FLYING OBJECTS
   ========================================== */

/* Контейнер для летающих объектов */
.floating-bg-objects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Поднимаем слой с -1 на 1, устраняя баг с вырезанием иконки под стеклом в Chrome/Safari */
    pointer-events: none;
}

.floating-obj {
    position: absolute;
    color: rgba(14, 168, 160, 0.38);
    will-change: transform, opacity;
}

.floating-obj svg {
    width: var(--size, 40px);
    height: var(--size, 40px);
    stroke-width: 1.5;
}

/* Летающий бумажный самолётик */
.floating-obj.plane {
    --size: 48px;
    bottom: -15%;
    left: -15%;
    color: rgba(14, 165, 233, 0.58); /* Небесно-голубой */
    animation: fly-plane 30s linear infinite;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.2));
}

/* Вращающийся компас */
.floating-obj.compass {
    --size: 65px;
    top: 15%;
    right: 8%;
    color: rgba(217, 119, 6, 0.55); /* Золотисто-бронзовый */
    animation: rotate-compass 45s linear infinite;
}

/* Медленно парящее солнце */
.floating-obj.sun {
    --size: 80px;
    top: 45%;
    left: 5%;
    color: rgba(245, 158, 11, 0.7); /* Сочное золотое солнце */
    animation: drift-sun 25s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

/* Пальма */
.floating-obj.palm {
    --size: 55px;
    bottom: 20%;
    right: 10%;
    color: rgba(16, 185, 129, 0.58); /* Тропический зеленый */
    animation: drift-palm 35s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.15));
}

/* Карта */
.floating-obj.map {
    --size: 40px;
    top: 30%;
    left: 20%;
    color: rgba(202, 138, 4, 0.55); /* Песочный золотой */
    animation: drift-map 28s ease-in-out infinite;
}

/* Летающий пассажирский самолет (быстрый, эффектный!) */
.floating-obj.airplane {
    --size: 55px;
    top: 22%;
    left: -15%;
    color: rgba(6, 182, 212, 0.55); /* Насыщенный бирюзовый */
    animation: fly-airplane 20s linear infinite;
    animation-delay: 5s; /* Разделение запуска с бумажным самолетиком */
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.2));
}

/* Медленно дрейфующее облако 1 */
.floating-obj.cloud1 {
    --size: 75px;
    top: 8%;
    left: -10%;
    color: rgba(255, 255, 255, 0.75); /* Мягкое белое облако */
    animation: drift-cloud-right 45s linear infinite;
    filter: drop-shadow(0 0 12px rgba(186, 230, 253, 0.35));
}

/* Медленно дрейфующее облако 2 */
.floating-obj.cloud2 {
    --size: 95px;
    top: 35%;
    right: -15%;
    color: rgba(255, 255, 255, 0.65); /* Легкое перистое облако */
    animation: drift-cloud-left 55s linear infinite;
    filter: drop-shadow(0 0 12px rgba(186, 230, 253, 0.25));
}

/* Анимации для летающих объектов (на GPU через 3D-матрицу) */
@keyframes fly-airplane {
    0% {
        transform: translate3d(0, 0, 0) rotate(5deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        transform: translate3d(120vw, -10vh, 0) rotate(5deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes drift-cloud-right {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(120vw, 0, 0);
    }
}

@keyframes drift-cloud-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-120vw, 0, 0);
    }
}

@keyframes fly-plane {
    0% {
        transform: translate3d(0, 0, 0) rotate(15deg) scale(0.7);
        opacity: 0;
    }
    8% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate3d(120vw, -120vh, 0) rotate(15deg) scale(1.3);
        opacity: 0;
    }
}

@keyframes rotate-compass {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes drift-sun {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(60px, -40px, 0) scale(1.1);
    }
}

@keyframes drift-palm {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(-30px, 30px, 0) rotate(12deg);
    }
}

@keyframes drift-map {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(40px, 40px, 0) scale(0.9) rotate(-10deg);
    }
}

/* Custom Success Modal (Premium Modal) */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.custom-modal-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 90%;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-modal-overlay.active .custom-modal-content {
    transform: scale(1) translateY(0);
}
.custom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}
.custom-modal-close:hover {
    color: var(--primary);
    background: rgba(0, 210, 255, 0.1);
    transform: rotate(90deg);
}
body.light-theme .custom-modal-content {
    background: #ffffff;
    border-color: rgba(14, 168, 160, 0.1);
}

/* Styled Custom Checkbox (Premium Style) */
.checkbox-wrap {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.4);
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.custom-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox:checked::after {
    content: "✓";
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    position: absolute;
}

.custom-checkbox:hover {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.checkbox-label {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

body.light-theme .custom-checkbox {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(14, 168, 160, 0.3);
}
body.light-theme .custom-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}
body.light-theme .checkbox-label {
    color: #475569;
}

/* ==========================================================================
   ФИКС ДЛЯ ОДИНАКОВОЙ ВЫСОТЫ КАРТОЧЕК (ПРЕИМУЩЕСТВА, БЛОГ И АЛГОРИТМ РАБОТЫ)
   ========================================================================== */
.advantages-slider .swiper-wrapper,
.blog-slider .swiper-wrapper,
.how-slider .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.advantages-slider .swiper-slide,
.blog-slider .swiper-slide,
.how-slider .swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.advantages-slider .swiper-slide > *,
.blog-slider .swiper-slide > *,
.how-slider .swiper-slide > * {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* ==========================================================================
   ИНТЕРАКТИВНАЯ КАРТА (ЯНДЕКС.КАРТЫ)
   ========================================================================== */
.map-section {
    padding: 100px 0;
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    height: 600px;
    width: 100%;
}

body.light-theme .map-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 168, 160, 0.18);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.04);
}

.yandex-map-container {
    width: 100%;
    height: 100%;
}

/* Стеклянная карточка информации поверх карты */
.country-map-info-card {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 350px;
    padding: 30px;
    border-radius: 20px;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.country-map-info-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.light-theme .country-map-info-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(14, 168, 160, 0.25);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.1);
}

.map-info-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 12px;
}

body.light-theme .map-info-title {
    color: #042F2E;
}

.map-info-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

body.light-theme .map-info-desc {
    color: #475569;
}

/* Адаптивность для мобильных телефонов */
@media (max-width: 768px) {
    .map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .yandex-map-container {
        height: 350px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        overflow: hidden;
    }
    
    body.light-theme .yandex-map-container {
        border-color: rgba(14, 168, 160, 0.18);
    }
    
    .country-map-info-card {
        position: static;
        width: 100%;
        margin-top: 20px;
        padding: 24px;
        backdrop-filter: blur(10px);
        display: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .country-map-info-card.active {
        display: block;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 48px);
    max-width: 900px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 16px 24px;
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
    opacity: 0;
    visibility: hidden;
}

body.light-theme .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
    text-align: left;
}

body.light-theme .cookie-banner-content p {
    color: #4b5563;
}

.cookie-banner-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-content a:hover {
    text-decoration: none;
}

.btn-cookie {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 16px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-banner-content p {
        text-align: center;
    }
    
    .btn-cookie {
        width: 100%;
    }
}