/* ========================================
   Finland Travel — Premium Travel Agency
   Design System & Full Styles
   ======================================== */

:root {
    --color-bg: #060b14;
    --color-bg-alt: #0a1020;
    --color-bg-card: #0f1628;
    --color-bg-elevated: #141c32;
    --color-text: #e6eaf2;
    --color-text-muted: #8892a8;
    --color-text-dim: #505870;
    --color-primary: #5ba4e6;
    --color-primary-light: #7ebcf5;
    --color-primary-dark: #3a7cc4;
    --color-secondary: #8b5cf6;
    --color-accent: #10b981;
    --color-warm: #f59e0b;
    --color-border: rgba(255,255,255,0.06);
    --color-border-hover: rgba(255,255,255,0.12);
    --color-glass: rgba(255,255,255,0.04);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(91,164,230,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

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

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    margin-bottom: 20px;
}

.preloader-circle {
    animation: circleLoad 1.5s ease-out forwards;
    transform-origin: center;
}

@keyframes circleLoad {
    to { stroke-dashoffset: 0; }
}

.preloader-text {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 11, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-flag {
    font-size: 1.4rem;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-primary);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91,164,230,0.3);
}

.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 30% at 30% 20%, rgba(91,164,230,0.1), transparent),
        radial-gradient(ellipse 50% 25% at 70% 30%, rgba(139,92,246,0.08), transparent),
        radial-gradient(ellipse 40% 20% at 50% 60%, rgba(16,185,129,0.06), transparent);
    animation: auroraPulse 10s ease-in-out infinite alternate;
}

@keyframes auroraPulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(0.98); }
}

.hero-snow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    animation: snowfall linear infinite;
    user-select: none;
}

@keyframes snowfall {
    0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(105vh) translateX(50px) rotate(360deg); opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6,11,20,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Hero Search */
.hero-search {
    margin-bottom: 32px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 8px;
    backdrop-filter: blur(20px);
    max-width: 720px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 8px 20px;
    text-align: left;
}

.search-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-dim);
    margin-bottom: 4px;
}

.search-field select {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.search-field select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

.search-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

.search-btn {
    padding: 16px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--color-primary-light);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(91,164,230,0.3);
}

.hero-trust {
    margin-top: 12px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    font-weight: 500;
}

.trust-divider {
    color: var(--color-border);
    font-size: 0.7rem;
}

/* Animate */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s ease-out forwards;
}

.animate-up:nth-child(2) { animation-delay: 0.12s; }
.animate-up:nth-child(3) { animation-delay: 0.24s; }
.animate-up:nth-child(4) { animation-delay: 0.36s; }
.animate-up:nth-child(5) { animation-delay: 0.48s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91,164,230,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-hover);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-sm { padding: 10px 20px; font-size: 0.825rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ========== SECTIONS ========== */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(91,164,230,0.1);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== DESTINATIONS ========== */
.destinations {
    background: var(--color-bg-alt);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 320px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.dest-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.dest-card.dest-large {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-img {
    position: absolute;
    inset: 0;
    transition: var(--transition-slow);
}

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

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(6,11,20,0.95) 0%, rgba(6,11,20,0.7) 60%, transparent 100%);
    z-index: 2;
}

.dest-rating {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.dest-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.dest-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-bottom: 16px;
}

/* Destination Scenes */
.dest-scene {
    position: absolute;
    inset: 0;
}

.snow-cap {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 40%;
    background:
        linear-gradient(155deg, transparent 40%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.08) 55%, transparent 55%),
        linear-gradient(205deg, transparent 35%, rgba(255,255,255,0.06) 35%, rgba(255,255,255,0.06) 50%, transparent 50%);
}

.aurora-wave {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    height: 40%;
    background: radial-gradient(ellipse at 40% 50%, rgba(16,185,129,0.12), rgba(91,164,230,0.06), transparent);
    filter: blur(20px);
    animation: auroraShift 8s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% { transform: translateX(-8%) skewX(-3deg); }
    100% { transform: translateX(8%) skewX(3deg); }
}

.tree {
    position: absolute;
    bottom: 25%;
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.06);
}

.tree::before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 20px solid rgba(255,255,255,0.05);
}

.tree-1 { left: 20%; height: 35px; }
.tree-2 { left: 40%; height: 25px; }
.tree-3 { left: 65%; height: 30px; }

.building {
    position: absolute;
    bottom: 0;
    background: rgba(255,255,255,0.08);
}

.building-1 { left: 15%; width: 20%; height: 45%; }
.building-2 { left: 40%; width: 15%; height: 60%; }
.building-3 { left: 65%; width: 18%; height: 35%; }

.lake {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(74,154,106,0.15), rgba(74,154,106,0.05));
}

.lake-reflection {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 20%;
    background: rgba(255,255,255,0.03);
    filter: blur(4px);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.wave-1 { bottom: 30%; }
.wave-2 { bottom: 45%; opacity: 0.5; }

.cabin {
    position: absolute;
    bottom: 20%;
    left: 30%;
    width: 40%;
    height: 25%;
    background: rgba(255,255,255,0.06);
    clip-path: polygon(10% 100%, 10% 40%, 50% 0%, 90% 40%, 90% 100%);
}

.chimney-smoke {
    position: absolute;
    bottom: 50%;
    left: 55%;
    width: 8px;
    height: 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.08), transparent);
    filter: blur(4px);
    animation: smokeRise 3s ease-in-out infinite;
}

@keyframes smokeRise {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.4; }
    50% { transform: translateY(-10px) scaleX(1.5); opacity: 0.1; }
}

/* ========== EXPERIENCES ========== */
.experiences {
    background: var(--color-bg);
}

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

.exp-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.exp-card:hover::before {
    opacity: 1;
}

.exp-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.exp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.exp-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.exp-price {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.exp-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.exp-link:hover {
    color: var(--color-primary);
}

/* ========== PACKAGES ========== */
.packages {
    background: var(--color-bg-alt);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.package-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-header {
    padding: 32px;
    text-align: center;
    position: relative;
}

.package-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.package-badge-gold {
    background: rgba(245,158,11,0.2);
    color: var(--color-warm);
}

.package-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.package-duration {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.package-body {
    padding: 32px;
}

.package-features {
    margin-bottom: 28px;
}

.package-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-pricing {
    text-align: center;
    margin-bottom: 20px;
}

.package-from {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    display: block;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

.package-per {
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

/* ========== SEASONS ========== */
.seasons {
    background: var(--color-bg);
}

.seasons-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.season-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.season-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-text);
}

.season-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.season-icon {
    font-size: 1.1rem;
}

.season-panels {
    position: relative;
}

.season-panel {
    display: none;
    animation: panelFade 0.4s ease-out;
}

.season-panel.active {
    display: block;
}

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

.season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.season-visual {
    height: 400px;
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
}

.season-temp {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 700;
}

.season-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.season-months {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.season-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.season-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.highlight-tag {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== STATS ========== */
.stats-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ========== REVIEWS ========== */
.reviews {
    background: var(--color-bg);
}

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

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--color-warm);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    padding-left: 56px;
}

/* ========== FAQ ========== */
.faq-section {
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-item.open {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-elevated);
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: var(--transition);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== BOOKING ========== */
.booking-section {
    background: var(--color-bg);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.booking-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bf-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.booking-feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.booking-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(91,164,230,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-dim);
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.form-success.visible {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.success-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.form-success strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.form-success p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-col li:not(:has(a)) {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
}

.footer-legal p {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    max-width: 600px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(91,164,230,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-light);
    transform: translateY(-4px);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.cookie-text p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ========== AOS ========== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="50"] { transition-delay: 0.05s; }
[data-aos-delay="80"] { transition-delay: 0.08s; }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos-delay="160"] { transition-delay: 0.16s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="240"] { transition-delay: 0.24s; }
[data-aos-delay="250"] { transition-delay: 0.25s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="320"] { transition-delay: 0.32s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
    .dest-card.dest-large { grid-column: span 2; grid-row: span 1; }
    .experiences-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-8px); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .season-grid { gap: 24px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: var(--transition);
        border-left: 1px solid var(--color-border);
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1rem;
    }
    .nav-cta { margin-top: 12px; text-align: center; }
    .nav-toggle { display: flex; }

    .search-box {
        flex-direction: column;
        gap: 0;
    }
    .search-field { padding: 12px 20px; }
    .search-divider { width: 100%; height: 1px; }
    .search-btn { margin: 8px; }

    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .dest-card.dest-large { grid-column: span 1; }

    .experiences-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .seasons-tabs {
        flex-wrap: wrap;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }
    .season-visual { height: 250px; }

    .booking-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .cookie-inner { flex-direction: column; text-align: center; }

    .section { padding: 80px 0; }

    .trust-divider { display: none; }
    .trust-logos { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 24px 16px; }
    .stat-number { font-size: 2rem; }
    .booking-form-wrapper { padding: 24px; }
    .season-tab { padding: 8px 14px; font-size: 0.8rem; }
}
