/* NAVIGATORS GREECE — ALPINE ELEGANCE LIGHT */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --gold: #2060b0;
    --gold-light: #3b82f6;
    --gold-dark: #16437d;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(32, 96, 176, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.09);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; max-width: 100%; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute; top: -40px; left: 20px;
    background: var(--gold); color: #ffffff;
    padding: 8px 16px; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600; z-index: 9999;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 20px; }

.reveal {
    opacity: 0.85;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-from-left {
    opacity: 0;
    transform: translateX(-65px);
    transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.reveal-from-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-from-right {
    opacity: 0;
    transform: translateX(65px);
    transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.reveal-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .reveal-from-left {
        transform: translateX(-24px);
        transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1), transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-from-right {
        transform: translateX(24px);
        transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1), transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    }
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-narrow > .section-header { padding-left: 0; padding-right: 0; }


h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); color: var(--text-primary); line-height: 1.25; }
.gold-accent { color: var(--gold); font-style: italic; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold-dark); }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; background-color: var(--gold); color: #ffffff;
    font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; border: 1px solid var(--gold); border-radius: 100px;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-primary:hover {
    background-color: var(--gold-light); border-color: var(--gold-light);
    color: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74, 144, 217, 0.25);
}
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border: 1px solid rgba(26, 32, 44, 0.25);
    color: var(--text-primary); font-size: 0.875rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px; background: transparent;
    border-radius: 100px; cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-outline:hover {
    border-color: var(--gold); color: var(--gold); background-color: rgba(74, 144, 217, 0.05);
}
.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; background-color: var(--gold); color: #ffffff;
    font-size: 0.875rem; font-weight: 600; border-radius: 100px; border: none;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-gold:hover { background-color: var(--gold-light); color: #ffffff; transform: translateY(-2px); }
.btn-disabled {
    background-color: #cbd5e1 !important; border-color: #cbd5e1 !important;
    color: #64748b !important; cursor: not-allowed !important; transform: none !important;
}

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 86px; background: var(--glass);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border); transition: all 0.35s ease;
}
.navbar.scrolled { height: 68px; background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow); }
.navbar-container {
    max-width: 1280px; margin: 0 auto; height: 100%; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar .logo {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
    font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
    color: var(--gold); text-decoration: none;
}
.logo-img {
    height: 74px; width: auto; max-width: 240px;
    object-fit: contain; display: block;
    transition: transform 0.25s ease, height 0.25s ease;
}
.navbar.scrolled .logo-img { height: 56px; }
.footer-logo-img {
    height: 72px; width: auto; max-width: 240px;
    object-fit: contain; display: block;
}
.logo-icon { width: 34px; height: 34px; }

/* Nav menu: top-level horizontal list */
.nav-menu-wrapper > ul,
.nav-menu-wrapper #main-menu {
    display: flex; gap: 24px; list-style: none; align-items: center;
}
.nav-menu-wrapper .nav-item { position: relative; }
.nav-menu-wrapper .nav-link-row { display: flex; align-items: center; }
.nav-menu-wrapper .nav-link {
    color: var(--text-primary); text-decoration: none; font-size: 0.875rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 8px 0; transition: color 0.25s ease; white-space: nowrap;
}
.nav-menu-wrapper .nav-link:hover { color: var(--gold); }

/* Hide mobile-only drawer elements on desktop */
.mobile-nav-toggle,
.mobile-drawer,
.mobile-drawer-backdrop,
.mobile-submenu-trigger,
.mobile-submenu-header {
    display: none;
}

/* Dropdown menus */
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%); min-width: 220px;
    background: var(--bg-secondary); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover); border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0; z-index: 1010; list-style: none;
    flex-direction: column; gap: 0;
}
.nav-dropdown:hover > .nav-dropdown-menu { display: flex; }
.nav-dropdown-item a {
    display: block; padding: 10px 20px; font-size: 0.8125rem; font-weight: 500;
    color: var(--text-secondary); text-decoration: none; white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-item a:hover { background: rgba(74, 144, 217, 0.06); color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lang-switch { display: flex; gap: 6px; }
.lang-link { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); padding: 2px 6px; }
.lang-link.active { color: var(--gold); font-weight: 700; }
.nav-cta {
    padding: 8px 22px; border: 1px solid var(--gold); color: var(--gold);
    font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; border-radius: 100px; transition: all 0.25s ease;
}
.nav-cta:hover { background-color: var(--gold); color: #ffffff; }

.hero {
    position: relative; min-height: 640px; height: 80vh; max-height: 800px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; margin-top: 0; padding-top: 80px;
}
.hero-image-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-preset-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.06) 0%,
        rgba(15, 23, 42, 0.0) 35%,
        rgba(15, 23, 42, 0.0) 75%,
        rgba(248, 249, 250, 0.18) 100%
    );
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 820px; padding: 0 24px;
}
.hero-badge {
    display: inline-block; padding: 6px 20px;
    border: 1px solid var(--gold); border-radius: 100px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    background-color: rgba(255, 255, 255, 0.9); margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.85), 0 1px 2px rgba(255, 255, 255, 1);
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 620px;
    margin: 0 auto 36px;
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.85), 0 1px 2px rgba(255, 255, 255, 1);
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.section {
    width: 100%;
    padding: 56px 0;
    position: relative;
    box-sizing: border-box;
    overflow-x: clip;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
}

/* Light / White Background Modifier (spans 100% full-width from edge to edge) */
.section--light-background,
.section--light--background,
.section-has-background {
    background-color: var(--bg-secondary) !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
    gap: 24px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.section-header.text-center { justify-content: center; text-align: center; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.section-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 580px; }
.header-action-group { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.section-action-row {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.text-center { text-align: center; }
.btn-icon { width: 18px; height: 18px; }
.view-all {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.875rem; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; transition: gap 0.25s ease;
}
.view-all:hover { gap: 14px; }

/* DIFFICULTY GAUGE */
.difficulty-gauge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.gauge-bars {
    display: flex;
    align-items: center;
    gap: 3px;
}
.gauge-bar {
    width: 3.5px;
    height: 12px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    transition: all 0.2s ease;
}
.gauge-bar.filled {
    background: var(--gold);
}
.gauge-bar.filled.easy {
    background: #10b981;
}
.gauge-bar.filled.medium {
    background: var(--gold);
}
.gauge-bar.filled.high {
    background: #ef4444;
}
.gauge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: capitalize;
    line-height: 1;
}
.trip-card-gauge-row {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

/* CATEGORIES SECTION */
.section.categories,
.categories-section {
    padding: 88px 0;
    position: relative;
}
.cat-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.25s ease;
}
.cat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.cat-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}
.cat-item:hover .cat-icon {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}
.cat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s ease;
}
.cat-item:hover .cat-label {
    color: var(--gold);
}

@media (max-width: 640px) {
    .section.categories,
    .categories-section {
        padding: 56px 0;
    }
    .cat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        padding: 0 20px;
        max-width: 400px;
    }
    .cat-item {
        width: 100%;
        text-align: center;
    }
    .cat-icon {
        width: 68px;
        height: 68px;
    }
    .cat-icon svg {
        width: 26px;
        height: 26px;
    }
    .cat-label {
        font-size: 0.75rem;
        text-align: center;
    }
}


.trips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1240px; margin: 0 auto; }
.trip-card {
    background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--glass-border); }
.trip-card-img { position: relative; height: 240px; overflow: hidden; container-type: inline-size; }
.trip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.trip-card:hover .trip-card-img img { transform: scale(1.05); }
.trip-card-img .gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(transparent, rgba(0, 0, 0, 0.4)); }
.trip-badge {
    position: absolute; top: 16px; left: 16px; padding: 4px 12px;
    border-radius: 100px; background: var(--gold); color: #ffffff;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    z-index: 2;
}
.trip-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.trip-card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.trip-card-desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.55; flex: 1; }
.trip-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 8px;
    width: 100%;
}
.trip-card-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-wrap: nowrap;
}
.trip-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}
.trip-meta-item svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}
.trip-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    margin-left: auto;
    line-height: 1;
}
.trip-price span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}


/* FEATURED TRIPS SLIDER */
.section-featured-trips.has-slider,
.section-home-trips.has-slider,
.section-related-trips.has-slider { overflow: hidden; }

.slider-arrows {
    display: flex !important;
    align-items: center;
    gap: 8px;
}
.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--bg-card, #ffffff);
    color: var(--text-primary, #0f172a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.slider-arrow:hover {
    background: var(--gold, #2060b0);
    color: #ffffff;
    border-color: var(--gold, #2060b0);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 96, 176, 0.25);
}
.slider-arrow:disabled,
.slider-arrow[aria-disabled="true"],
.slider-arrow.disabled {
    opacity: 0.6;
    cursor: pointer;
    transform: none;
    box-shadow: none;
}
.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.trips-slider-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.trips-grid.slider-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 32px;
    padding-bottom: 24px;
    padding-top: 6px;
    scrollbar-width: none;
    cursor: grab;
}
.trips-grid.slider-track::-webkit-scrollbar {
    display: none;
}
.trips-grid.slider-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.trips-grid.slider-track .trip-card {
    flex: 0 0 calc((100% - 64px) / 3);
    min-width: 300px;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .trips-grid.slider-track .trip-card {
        flex: 0 0 calc((100% - 32px) / 2);
    }
}
@media (max-width: 768px) {
    .slider-arrows {
        display: none !important;
    }
    .trips-slider-wrapper {
        padding: 0 16px;
    }
    .trips-grid.slider-track {
        gap: 16px;
        padding-bottom: 16px;
    }
    .trips-grid.slider-track .trip-card,
    .reviews-grid .review-card {
        flex: 0 0 84% !important;
        min-width: 84% !important;
        max-width: 84% !important;
        scroll-snap-align: start;
    }
}

/* STATS & WHY CHOOSE US */
.section-stats-about {
    position: relative;
    padding: 88px 0;
}
.stats-about-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.stats-about-plain {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
}
.stats-about-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: var(--shadow-sm, 0 4px 24px rgba(0, 0, 0, 0.04));
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
}
.stats-about-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}
.stats-about-content.content-right {
    grid-template-columns: 1fr 1.15fr;
}
.stats-about-content.content-right .stats-about-text {
    order: 2;
}
.stats-about-content.content-right .stats-about-media {
    order: 1;
}
.stats-about-desc {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 1.0625rem;
}
.featured-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}
.stats-about-media,
.stats-about-image {
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    box-shadow: var(--shadow, 0 10px 30px rgba(0, 0, 0, 0.08));
    position: relative;
    background: var(--bg-secondary);
}
.stats-about-media .render-asset-container {
    width: 100%;
    height: 100%;
}
.stats-about-media .asset-media-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
}
.stats-about-media .asset-img,
.about-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 520px;
    object-fit: cover;
    display: block;
}
.stats-about-media .asset-video,
.about-video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md, 16px);
}
.stats-about-media .youtube-player-container {
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
}

@media (max-width: 1024px) {
    .stats-about-card {
        padding: 48px 36px;
    }
    .stats-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-about-content.content-right {
        grid-template-columns: 1fr;
    }
    .stats-about-content.content-right .stats-about-text {
        order: 1;
    }
    .stats-about-content.content-right .stats-about-media {
        order: 2;
    }
    .featured-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 640px) {
    .stats-about-container {
        padding: 0 16px;
    }
    .stats-about-card {
        padding: 32px 20px;
        border-radius: 18px;
    }
    .featured-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-number {
        font-size: 1.85rem;
    }
}

.section-home-reviews { }
.section-home-reviews.has-slider { overflow: hidden; }
.reviews-slider-wrapper { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1240px; margin: 0 auto; }
.reviews-grid.slider-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 28px;
    padding-bottom: 24px;
    padding-top: 6px;
    scrollbar-width: none;
    cursor: grab;
}
.reviews-grid.slider-track::-webkit-scrollbar { display: none; }
.reviews-grid.slider-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.reviews-grid.slider-track .review-card {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 300px;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .reviews-grid.slider-track .review-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}
@media (max-width: 640px) {
    .reviews-grid.slider-track .review-card {
        flex: 0 0 88%;
        min-width: 260px;
    }
}
.review-card {
    position: relative;
    background: var(--bg-card);
    padding: 32px 30px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(74, 144, 217, 0.25);
}
.review-quote-icon-top {
    position: absolute;
    top: 22px;
    right: 24px;
    color: var(--gold);
    opacity: 0.25;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.review-card:hover .review-quote-icon-top {
    opacity: 0.65;
    transform: scale(1.08) rotate(-4deg);
}
.review-quote-icon-top svg {
    width: 28px;
    height: 22px;
}
.review-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-right: 36px; }
.reviewer-avatar-placeholder {
    width: 44px; height: 44px; border-radius: 50%;
    background-color: rgba(74, 144, 217, 0.12); color: var(--gold);
    font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1.125rem;
}
.reviewer-name { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-stars-badge { margin-left: auto; font-weight: 700; color: var(--gold); font-size: 0.9375rem; }
.review-comment { font-style: italic; color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.6; }
.reviews-stats-card {
    background: var(--bg-card); padding: 36px 40px; border-radius: var(--radius);
    box-shadow: var(--shadow); display: grid; grid-template-columns: 240px 1fr;
    gap: 48px; align-items: center; max-width: 900px; margin: 0 auto 52px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.rating-overview-score { text-align: center; border-right: 1px solid rgba(0, 0, 0, 0.08); padding-right: 32px; }
.score-large { font-family: var(--font-serif); font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stars-gold { color: var(--gold); font-size: 1.35rem; margin: 8px 0; letter-spacing: 3px; }
.score-caption { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.rating-bar-row {
    display: flex; align-items: center; gap: 14px; padding: 6px 12px;
    border-radius: var(--radius-sm); text-decoration: none; color: var(--text-secondary);
    font-size: 0.875rem; font-weight: 500; cursor: pointer;
    transition: all 0.2s ease;
}
.rating-bar-row:hover { background-color: rgba(74, 144, 217, 0.08); color: var(--gold); }
.rating-bar-row.active {
    background-color: rgba(74, 144, 217, 0.14);
    font-weight: 700; color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}
.bar-star-label { width: 44px; font-weight: 600; flex-shrink: 0; }
.bar-track { flex: 1; height: 10px; background-color: #e2e8f0; border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), #d4a04c); border-radius: 100px; transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.bar-count-label { width: 44px; text-align: right; font-size: 0.8125rem; color: var(--text-muted); font-weight: 600; flex-shrink: 0; }
.filter-reset-row { margin-top: 12px; text-align: right; padding-right: 12px; }
.filter-reset-row a { font-size: 0.8125rem; font-weight: 600; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.filter-reset-row a:hover { color: var(--gold-dark); }

.reviews-container { position: relative; min-height: 240px; transition: opacity 0.25s ease; }
.reviews-container.is-loading { opacity: 0.45; pointer-events: none; }

.see-more-container { margin-top: 56px; margin-bottom: 24px; text-align: center; }
.btn-see-more {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-width: 220px; padding: 15px 36px; font-weight: 600; font-size: 0.9375rem;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    background: var(--gold); color: #ffffff; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(74, 144, 217, 0.2);
}
.btn-see-more:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 217, 0.35);
}
.btn-see-more:active { transform: translateY(0); }
.btn-see-more:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.spinner-icon { animation: spin 0.85s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.empty-reviews-notice {
    grid-column: 1 / -1; text-align: center; padding: 60px 24px;
    background: var(--bg-card); border-radius: var(--radius);
    border: 1px dashed rgba(0, 0, 0, 0.12);
}
.empty-reviews-notice p { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 24px; }

.section-faq { }
.faq-accordion-list { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 100%; margin: 0; }
.faq-item { background: var(--bg-card); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); }

.faq-question {
    width: 100%; padding: 20px 24px; display: flex; align-items: center;
    justify-content: space-between; background: none; border: none;
    font-family: var(--font-sans); font-size: 1.0625rem; font-weight: 600;
    color: var(--text-primary); text-align: left; cursor: pointer; transition: color 0.25s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.7; }

.breadcrumb { padding: 100px 32px 16px; max-width: 1240px; margin: 0 auto; font-size: 0.8125rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }
.breadcrumb .active { color: var(--text-primary); font-weight: 600; }

/* Page Hero (Generic) */
.page-hero {
    position: relative;
    width: 100%;
    min-height: clamp(430px, 48vh, 530px);
    overflow: hidden;
    margin: 0;
    padding: 96px 0 36px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #0f172a;
}
.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.82) 100%);
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 840px;
    padding: 0;
    margin: 0;
}
.page-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #ffffff;
    margin-bottom: 12px;
}
.page-hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Full-Width Trip Detail Hero (Edge-to-Edge) */
.detail-hero-section {
    position: relative;
    width: 100%;
    min-height: clamp(450px, 52vh, 570px);
    padding: 96px 0 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    background: #0f172a;
    margin-bottom: 0;
}
.detail-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3.5vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 100%;
    flex: 1;
}
.detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.detail-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.25) 45%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}
.detail-breadcrumb {
    padding: 0 0 16px 0 !important;
    margin: 0 !important;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}
.detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}
.detail-breadcrumb a:hover {
    color: var(--gold-light);
}
.detail-breadcrumb span {
    margin: 0 6px;
}
.detail-breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}
.detail-hero-content {
    color: #ffffff;
}
.detail-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.18;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.detail-meta-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.detail-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.detail-meta-tag svg {
    width: 16px;
    height: 16px;
    color: var(--gold-light);
}
.detail-meta-tag.tag-fully-booked svg,
.detail-meta-tag.tag-running-low svg {
    color: #ffffff !important;
}

/* Hide Detail Meta Bar on Mobile & Tablet */
@media (max-width: 1024px) {
    .detail-meta-bar {
        display: none !important;
    }
}

/* Mobile Back Link in Trip Detail Hero */
.desktop-breadcrumb {
    display: block;
}
.mobile-breadcrumb {
    display: none;
}
.hero-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}
.hero-back-link:hover {
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff !important;
    transform: translateX(-3px);
}
.hero-back-link svg {
    color: #ffffff;
    transition: transform 0.2s ease;
}
.hero-back-link:hover svg {
    transform: translateX(-2px);
}

@media (max-width: 768px) {
    .desktop-breadcrumb {
        display: none !important;
    }
    .mobile-breadcrumb {
        display: block !important;
    }
    .detail-hero-title {
        font-size: clamp(1.65rem, 6.5vw, 2.35rem) !important;
        line-height: 1.22 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 14px !important;
    }
}

.section-trip-detail {
    padding-top: 50px;
    padding-bottom: 80px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
}
.detail-main {
    min-width: 0;
    width: 100%;
}
.detail-sidebar {
    width: 360px;
    min-width: 340px;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .detail-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .detail-main {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .detail-sidebar {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: none !important;
    }
    .booking-card {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
@media (max-width: 768px) {
    .section-trip-detail {
        padding-top: 28px !important;
        padding-bottom: 60px !important;
    }
    .detail-grid {
        gap: 28px !important;
    }
    .detail-tabs {
        width: 100% !important;
        margin-bottom: 24px !important;
    }
    .detail-tab {
        flex: 1 1 0 !important;
        text-align: center !important;
        padding: 12px 8px !important;
        font-size: 0.8125rem !important;
    }
}
.detail-tabs { display: flex; gap: 0; border-bottom: 2px solid rgba(0, 0, 0, 0.08); margin-bottom: 36px; }
.detail-tab {
    padding: 14px 28px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
    background: none; border: none; border-bottom: 2px solid transparent;
    cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.25s ease;
    margin-bottom: -2px;
}
.detail-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.detail-tab-content { display: none; }
.detail-tab-content.active { display: block; }
.detail-section h3 { font-size: 1.75rem; margin-bottom: 18px; }
.detail-highlights { list-style: none; margin: 24px 0; }
.detail-highlights li {
    display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); color: var(--text-secondary); font-size: 0.9375rem;
}
.detail-highlights li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Light Gray Sticky Booking Card */
.booking-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    color: #0f172a;
}
.booking-price {
    font-family: var(--font-serif);
    font-size: 2.85rem;
    font-weight: 700;
    color: #0f172a !important;
    line-height: 1;
}
.booking-price span {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: #64748b !important;
    font-weight: 400;
}
.booking-sub {
    font-size: 0.875rem;
    color: #64748b !important;
    margin: 8px 0 24px;
    line-height: 1.4;
}
.booking-info {
    list-style: none;
    margin-bottom: 24px;
}
.booking-info li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9375rem;
}
.booking-info .label {
    color: #64748b !important;
}
.booking-info .value {
    font-weight: 600;
    color: #0f172a !important;
}
.btn-book {
    display: block;
    width: 100%;
    padding: 16px;
    background: #0f172a !important;
    color: #ffffff !important;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.btn-book:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
}
.btn-waitlist {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}
.btn-waitlist:hover {
    background: #cbd5e1 !important;
    color: #000000 !important;
}
.btn-disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
}
.booking-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.8125rem;
    color: #64748b;
    justify-content: center;
}
.booking-guarantee svg {
    width: 16px;
    height: 16px;
    color: #ff7a00;
}

/* Trip Photo Gallery Section & Slider */
.trip-gallery-section {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.trip-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.trip-gallery-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin: 0;
}
.trip-gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    width: 100%;
    min-width: 0;
}
.trip-gallery-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    width: 100%;
    min-width: 0;
}
.trip-gallery-track::-webkit-scrollbar {
    display: none;
}
.trip-gallery-track .gallery-item {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 180px;
    height: 220px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trip-gallery-track .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.trip-gallery-track .gallery-item-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.trip-gallery-track .gallery-item-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.trip-gallery-track .gallery-item-link:hover img {
    transform: scale(1.06);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
}
.trip-gallery-track .gallery-item-link:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    pointer-events: none;
}
@media (max-width: 900px) {
    .trip-gallery-track .gallery-item {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}
@media (max-width: 576px) {
    .trip-gallery-track .gallery-item {
        flex: 0 0 82%;
    }
}

.filter-bar {
    max-width: 1240px; margin: 0 auto 40px; padding: 20px 24px;
    background: var(--bg-card); border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid rgba(0, 0, 0, 0.05);
}
.filter-controls { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.filter-search {
    flex: 2; min-width: 220px; padding: 12px 18px; border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.875rem;
    background: #ffffff; color: var(--text-primary);
}
.filter-select {
    flex: 1; min-width: 160px; padding: 12px 18px; border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.875rem;
    background: #ffffff; color: var(--text-primary); cursor: pointer;
}
.filter-btn {
    padding: 12px 28px; background: var(--gold); color: #ffffff;
    font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; border: none; border-radius: var(--radius-sm);
    cursor: pointer; transition: background 0.25s ease;
}
.filter-btn:hover { background: var(--gold-light); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; }
.page-btn {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--bg-card); color: var(--text-secondary); font-size: 0.875rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.25s ease;
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); color: #ffffff; border-color: var(--gold); }
.page-ellipsis { color: var(--text-muted); padding: 0 4px; }

/* Contact Page & Forms */
.section-contact {
    padding: 60px 0 100px;
    background: var(--bg-primary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    align-items: start;
}
.form-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}
.alpine-contact-form {
    width: 100%;
}
.form-group {
    margin-bottom: 22px;
    width: 100%;
    box-sizing: border-box;
}
.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: #f8fafc;
    color: var(--text-primary);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-sizing: border-box;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error {
    color: #ef4444;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 6px;
}
.form-submit-row {
    width: 100%;
    margin-top: 10px;
}
.form-submit-row .btn-primary {
    width: 100%;
    padding: 16px 28px;
    font-size: 0.9375rem;
    justify-content: center;
}
.contact-success-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: 16px;
    color: var(--text-primary);
}
.contact-success-box svg {
    color: #10b981;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px;
}
.contact-success-box h3 {
    font-size: 1.2rem;
    color: #065f46;
    margin-bottom: 6px;
}
.contact-success-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* MODERN LUXURY CUSTOM CHECKBOXES */
input[type="checkbox"],
.form-check-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.22) !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    display: inline-grid !important;
    place-content: center !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    vertical-align: middle !important;
    position: relative !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

input[type="checkbox"]:hover,
.form-check-input:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.12) !important;
}

input[type="checkbox"]:focus-visible,
.form-check-input:focus-visible {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.25) !important;
}

input[type="checkbox"]::before,
.form-check-input::before {
    content: "" !important;
    width: 10px !important;
    height: 6px !important;
    border-left: 2.2px solid #ffffff !important;
    border-bottom: 2.2px solid #ffffff !important;
    transform: rotate(-45deg) scale(0) !important;
    transform-origin: center !important;
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: -2px !important;
    display: block !important;
}

input[type="checkbox"]:checked,
.form-check-input:checked {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 2px 6px rgba(74, 144, 217, 0.25) !important;
}

input[type="checkbox"]:checked::before,
.form-check-input:checked::before {
    transform: rotate(-45deg) scale(1) !important;
}

input[type="checkbox"].is-invalid,
.form-check-input.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-checkbox,
.newsletter-terms-label,
.form-check {
    display: inline-flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    font-size: 0.875rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5 !important;
    user-select: none !important;
    margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"],
.newsletter-terms-label input[type="checkbox"],
.form-check input[type="checkbox"] {
    margin-top: 2px !important;
}

.form-checkbox span,
.newsletter-terms-label span,
.form-check-label {
    transition: color 0.2s ease !important;
    cursor: pointer !important;
}

.form-checkbox:hover span,
.newsletter-terms-label:hover span,
.form-check:hover .form-check-label {
    color: var(--text-primary) !important;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 36px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}
.contact-info-card h3 { font-size: 1.35rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-icon {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(74, 144, 217, 0.1);
    color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item-value { font-weight: 600; color: var(--text-primary); word-break: break-word; }

.interactive-star-group { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 6px; font-size: 2rem; margin-bottom: 20px; }
.interactive-star-group input { display: none; }
.interactive-star-group label { color: #cbd5e1; cursor: pointer; transition: color 0.2s ease; }
.interactive-star-group label:hover, .interactive-star-group label:hover ~ label, .interactive-star-group input:checked ~ label { color: var(--gold); }

.footer { background-color: var(--bg-dark); color: #f1f5f9; padding: 80px 32px 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.1fr) 2.9fr; gap: 48px; max-width: 1240px; margin: 0 auto 56px; }
.footer-logo {
    display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-serif);
    font-size: 1.35rem; font-weight: 700; color: var(--gold); text-decoration: none; margin-bottom: 16px;
}
.footer-tagline { color: #94a3b8; font-size: 0.875rem; line-height: 1.7; max-width: 400px; margin-bottom: 24px; }
.footer-social-links { margin-top: 20px; }
.footer-social-links .icon-social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #cbd5e1;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon-btn:hover {
    background: var(--gold, #d4af37);
    color: #0f172a;
    border-color: var(--gold, #d4af37);
    transform: translateY(-2px);
}
.social-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.footer-nav-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-nav-columns h4, .footer-column-item h4 { color: #ffffff; font-family: var(--font-sans); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-nav-columns ul, .footer-column-links { list-style: none; }
.footer-nav-columns li, .footer-column-links li { margin-bottom: 10px; }
.footer-nav-columns a, .footer-column-links a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.footer-nav-columns a:hover, .footer-column-links a:hover { color: var(--gold); }
.footer-column-links a svg {
    margin-right: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.footer-column-links a:hover svg {
    transform: scale(1.15);
}
.footer-bottom {
    max-width: 1240px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; color: #64748b; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links a { color: #94a3b8; margin-left: 20px; font-size: 0.8125rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* Mount10 Development Credit */
.mount10-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0.88;
}
.mount10-credit:hover {
    opacity: 1;
    transform: translateY(-1px);
    text-decoration: none;
}
.mount10-logo-mark {
    width: 32px;
    height: 18px;
    flex-shrink: 0;
}
.mount10-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}
.mount10-label {
    font-size: 0.6875rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mount10-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
}
.mount10-ten {
    color: #379cf4;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .trips-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-about-content, .detail-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-nav-columns { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .booking-card { position: static; }
}
@media (max-width: 768px) {
    .navbar { height: 70px; }
    .navbar-container { padding: 0 20px; }
    .nav-menu-wrapper { display: none !important; }
    .nav-actions { display: flex !important; align-items: center; gap: 10px; margin-left: auto; }
    .nav-actions .lang-switch { display: none !important; }
    .nav-actions .nav-cta { display: inline-flex !important; padding: 6px 14px !important; font-size: 0.76rem !important; }
    .footer-nav-columns { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section-contact { padding: 40px 0 60px; }
    .form-card, .contact-info-card { padding: 26px 18px; border-radius: 16px; }
    .form-input, .form-textarea { font-size: 16px !important; padding: 12px 16px; }

    /* SECTION HEADER STACKING ON MOBILE */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 32px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-action-group {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 4px;
    }
    .header-action-group .view-all {
        margin-bottom: 0;
    }


    /* EXPEDITIONS / FEATURED TRIPS SLIDER ON MOBILE */
    .section-featured-trips .trips-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 8px 20px 24px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .section-featured-trips .trips-grid::-webkit-scrollbar {
        display: none;
    }
    .section-featured-trips .trips-grid .trip-card {
        flex: 0 0 84%;
        min-width: 84%;
        max-width: 340px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }
    .trip-card-body {
        padding: 18px 16px;
    }
    .trip-card-title {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }
    .trip-card-desc {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }
    .trip-card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding-top: 12px;
        flex-wrap: nowrap;
    }
    .trip-card-meta-left {
        gap: 8px;
        flex-wrap: nowrap;
        min-width: 0;
    }
    .trip-meta-item {
        font-size: 0.75rem;
        gap: 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .trip-meta-item svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }
    .trip-price {
        font-size: 1.15rem;
        white-space: nowrap;
        flex-shrink: 0;
    }


    /* RATINGS & REVIEWS SLIDER ON MOBILE */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 8px 20px 24px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    .review-card {
        flex: 0 0 84%;
        min-width: 84%;
        max-width: 340px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }
    .reviews-stats-card {
        grid-template-columns: 1fr;
        padding: 24px;
        margin-left: 20px;
        margin-right: 20px;
        max-width: calc(100% - 40px);
        box-sizing: border-box;
    }
    .rating-overview-score {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 0;
        padding-bottom: 20px;
    }

    /* INSTAGRAM FEED 4-BOX GRID SLIDER ON MOBILE */
    .instagram-desktop-only {
        display: none !important;
    }
    .instagram-mobile-only {
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }
    .instagram-slider-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px !important;
        padding: 4px 0 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .instagram-slider-track::-webkit-scrollbar {
        display: none !important;
    }
    .instagram-slide-grid {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }
    .instagram-slide-grid .instagram-item {
        width: 100% !important;
        aspect-ratio: 1/1 !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
        display: block !important;
    }





    /* MIXED GALLERY SLIDER ON MOBILE */
    .mixed-gallery-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px !important;
        padding: 4px 20px 24px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .mixed-gallery-grid::-webkit-scrollbar {
        display: none !important;
    }
    .gallery-cell {
        flex: 0 0 84% !important;
        min-width: 84% !important;
        max-width: 340px !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        box-sizing: border-box !important;
    }

    /* FAQ ALIGNMENT ON MOBILE */
    .section-faq .container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .faq-accordion-list {
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .faq-item {
        width: 100%;
        box-sizing: border-box;
    }
}

/* TABLET & MOBILE HAMBURGER MENU (< 1180px) */
@media (max-width: 1180px) {
    .nav-menu-wrapper {
        display: none !important;
    }
    .nav-actions {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    .nav-actions .lang-switch {
        display: none !important;
    }
    .nav-actions .nav-cta {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 7px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* MOBILE BURGER TOGGLE BUTTON */
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    .hamburger-bar {
        width: 24px;
        height: 2px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-nav-toggle.is-active .hamburger-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-nav-toggle.is-active .hamburger-bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .mobile-nav-toggle.is-active .hamburger-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* FULL-PAGE DRAWER NAVIGATION */
    body.mobile-drawer-open {
        overflow: hidden !important;
        touch-action: none;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        z-index: 2000;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    .mobile-drawer.is-open {
        transform: translateX(0);
    }

    .mobile-drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        backdrop-filter: blur(4px);
        z-index: 1999;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .mobile-drawer-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
        background: #ffffff;
    }
    .drawer-logo-img {
        height: 44px;
        width: auto;
        object-fit: contain;
    }
    .mobile-drawer-close {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.04);
        border: none;
        border-radius: 50%;
        color: var(--text-primary);
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .mobile-drawer-close:hover {
        background: rgba(74, 144, 217, 0.1);
        color: var(--gold);
    }

    .mobile-drawer-body {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        padding: 12px 0;
    }

    .mobile-drawer-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-drawer-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-drawer-nav .nav-link-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 4px 20px;
        box-sizing: border-box;
    }

    .mobile-drawer-nav .nav-link {
        flex: 1;
        padding: 14px 0;
        font-size: 1.0625rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        letter-spacing: 0.3px;
    }

    /* Fallback for direct nav-link inside nav-item if without nav-link-row */
    .mobile-drawer-nav .nav-item > a.nav-link {
        padding: 14px 20px;
        display: block;
    }

    /* Clean right arrow button (no circular border or background) */
    .mobile-submenu-trigger {
        display: inline-flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        border-radius: 0;
        color: var(--gold);
        cursor: pointer;
        margin-left: 12px;
        padding: 0;
        transition: transform 0.2s ease, color 0.2s ease;
    }
    .mobile-submenu-trigger svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.2;
    }
    .mobile-submenu-trigger:active {
        background: transparent;
        color: var(--gold-dark);
        transform: translateX(3px);
    }

    /* SUBMENU PANEL (SLIDES IN FROM RIGHT OVER THE DRAWER) */
    .mobile-drawer-nav .nav-dropdown-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        z-index: 10;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .mobile-drawer-nav .nav-dropdown-menu.submenu-open {
        transform: translateX(0);
    }

    .mobile-submenu-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        background: rgba(248, 249, 250, 0.95);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 5;
    }

    .mobile-submenu-back {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background: var(--bg-card);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 100px;
        color: var(--gold);
        font-size: 0.8125rem;
        font-weight: 600;
        cursor: pointer;
    }
    .mobile-submenu-title {
        font-size: 0.9375rem;
        font-weight: 700;
        color: var(--text-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-drawer-nav .nav-dropdown-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .mobile-drawer-nav .nav-dropdown-item a {
        display: block;
        padding: 16px 20px;
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--text-secondary);
        text-decoration: none;
    }
    .mobile-drawer-nav .nav-dropdown-item a:hover {
        color: var(--gold);
        background: rgba(74, 144, 217, 0.04);
    }

    /* DRAWER FOOTER: LANGUAGE SWITCHER & CTA BUTTON */
    .mobile-drawer-footer {
        padding: 16px 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: #ffffff;
        display: flex;
        flex-direction: column;
        gap: 14px;
        flex-shrink: 0;
    }
    .drawer-lang-switch {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--bg-primary);
        padding: 6px;
        border-radius: 100px;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }
    .drawer-lang-link {
        flex: 1;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--text-muted);
        text-decoration: none;
        border-radius: 100px;
        transition: all 0.2s ease;
    }
    .drawer-lang-link.active {
        background: var(--gold);
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(74, 144, 217, 0.3);
    }
    .drawer-cta-btn {
        display: block;
        width: 100%;
        padding: 14px;
        background: var(--gold);
        color: #ffffff;
        text-align: center;
        border-radius: 100px;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(74, 144, 217, 0.25);
    }
}

@media (max-width: 480px) {
    .section-featured-trips .trips-grid .trip-card,
    .trips-grid.slider-track .trip-card {
        flex: 0 0 82% !important;
        min-width: 82% !important;
        max-width: 82% !important;
    }
    .reviews-grid .review-card,
    .reviews-grid.slider-track .review-card {
        flex: 0 0 82% !important;
        min-width: 82% !important;
        max-width: 82% !important;
    }
    .instagram-item {
        flex: 0 0 74%;
        min-width: 74%;
    }
}



/* SLIDER ARROWS (GLOBAL CIRCULAR CONTROLS) */
.slider-arrows {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 0;
    flex-shrink: 0;
}
.slider-arrow:hover:not(:disabled) {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    transform: scale(1.05);
}
.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.slider-mobile-only {
    display: none;
}
@media (max-width: 768px) {
    .slider-mobile-only {
        display: inline-flex !important;
    }
}

/* INSTAGRAM FEED SECTION (GRID ON DESKTOP) */
.section-instagram-feed { }
.instagram-mobile-only {
    display: none;
}
.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 24px;
    width: 100%;
    max-width: 1240px;
    box-sizing: border-box;
}
.instagram-item {
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
.instagram-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.instagram-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.instagram-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.instagram-item:hover .instagram-img-wrapper img {
    transform: scale(1.06);
}
.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.instagram-item:hover .instagram-item-overlay {
    opacity: 1;
}
.instagram-type-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.instagram-type-icon svg {
    width: 18px;
    height: 18px;
}
.instagram-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}
.instagram-action-row {
    margin-top: 16px;
}

/* MIXED GALLERY SECTION (SLIDER OF 3) */
.section-mixed-gallery { }
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}
.gallery-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.gallery-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
}
.mixed-gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 8px 0 28px;
    margin: 0 auto;
    width: 100%;
    max-width: 1240px;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.mixed-gallery-grid::-webkit-scrollbar {
    display: none;
}
.gallery-cell {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.gallery-photo-card, .gallery-video-card {
    position: relative;
    width: 100%;
}
.gallery-photo-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.gallery-app-video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #000;
}
.gallery-card-caption {
    padding: 16px 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* YOUTUBE DYNAMIC PLAYER */
.youtube-player-container {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.youtube-preview-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.youtube-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease;
}
.youtube-preview-wrapper:hover .youtube-overlay {
    background: rgba(0, 0, 0, 0.1);
}
.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.youtube-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}
.youtube-preview-wrapper:hover .youtube-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--gold-light);
}
.youtube-duration-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.youtube-iframe-target {
    width: 100%;
    height: 100%;
}
.youtube-iframe-target iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ASSET CARDS */
.asset-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.asset-media-wrapper {
    position: relative;
    width: 100%;
}
.asset-img, .asset-video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.asset-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 0.6875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    z-index: 3;
}
.asset-type-badge svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}
.asset-type-badge.badge-video {
    background: rgba(74, 144, 217, 0.9);
    color: #ffffff;
}
.asset-type-badge.badge-video svg {
    color: #ffffff;
}
.asset-caption {
    padding: 16px 20px;
}
.asset-caption h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.asset-caption p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .instagram-item {
        flex: 0 0 calc((100% - 20px) / 2) !important;
        min-width: calc((100% - 20px) / 2) !important;
        max-width: calc((100% - 20px) / 2) !important;
    }
    .gallery-cell {
        flex: 0 0 calc((100% - 24px) / 2) !important;
        min-width: calc((100% - 24px) / 2) !important;
        max-width: calc((100% - 24px) / 2) !important;
    }
}

/* BOOKING CONTACT CTA SECTION */
.section-booking-contact { }
.booking-contact-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(74, 144, 217, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 56px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}
.booking-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.booking-contact-content .section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0;
}
.booking-contact-content .section-subtitle {
    margin-bottom: 12px;
}

/* STATIC NEWSLETTER SECTION */
.section-newsletter-static {
    padding: 72px 32px;
    background: var(--bg-primary);
}
.newsletter-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(74, 144, 217, 0.07) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 64px 40px;
    box-shadow: var(--shadow-hover);
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-content {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(74, 144, 217, 0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.newsletter-badge svg {
    color: var(--gold);
}
.newsletter-content .section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 12px;
}
.newsletter-content .section-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}
.newsletter-form {
    width: 100%;
}
.newsletter-input-group {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 14px;
}
.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    background: #ffffff;
    color: var(--text-primary);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}
.newsletter-btn {
    padding: 14px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
}
.newsletter-terms-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    cursor: pointer;
    text-align: left;
}
.newsletter-terms-label input {
    accent-color: var(--gold);
}
.newsletter-success-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    color: #15803d;
    font-size: 0.9375rem;
    font-weight: 600;
}
.newsletter-success-box svg {
    color: #16a34a;
    flex-shrink: 0;
}
.newsletter-error-box {
    margin-top: 10px;
    font-size: 0.8125rem;
    color: #dc2626;
}

/* CUSTOM FORM VALIDATION ERRORS */
.field-error,
.field-validation-error,
.errorlist,
.inputField__errorMsg {
    color: #ef4444 !important;
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
    display: block !important;
    text-align: left !important;
    list-style: none !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}
.errorlist li {
    color: #ef4444 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.form-input.is-invalid,
.form-textarea.is-invalid,
.newsletter-input.is-invalid,
.input-text.is-invalid,
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.newsletter-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter-group .field-error {
    width: 100%;
    padding-left: 20px;
    margin-top: 4px;
    margin-bottom: 12px;
}
.newsletter-checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter-checkbox-group .field-error {
    margin-top: 6px;
}
.contact-success-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    color: #15803d;
    text-align: left;
}
.contact-success-box svg {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-success-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 4px;
}
.contact-success-box p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
    color: #166534;
}

@media (max-width: 640px) {
    .newsletter-card { padding: 40px 20px; }
    .newsletter-input-group { flex-direction: column; gap: 10px; }
    .newsletter-btn { width: 100%; justify-content: center; }
}


/* ==========================================================================
   ALL TRIPS EXPEDITION PAGE & DYNAMIC FILTERS (LISTPARAMETERS)
   ========================================================================== */

/* Page Hero (All Trips & Categories) - Identical to TripDetail Hero */
.alltrips-hero,
.trip-category-hero,
.page-hero {
    position: relative;
    width: 100%;
    min-height: clamp(450px, 52vh, 570px);
    padding-top: 96px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #0f172a;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
}

.detail-hero-section {
    position: relative;
    width: 100%;
    min-height: clamp(450px, 52vh, 570px);
    padding-top: 96px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #0f172a;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
}
.page-hero-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.default-hero-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.82) 100%);
}
.page-hero-container,
.detail-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3.5vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 100%;
    flex: 1 0 auto;
}
.page-hero-content,
.detail-hero-content {
    max-width: 840px;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    padding: 24px 0 16px;
    text-align: left;
    color: #ffffff;
    z-index: 3;
}
.page-hero-content .section-label {
    color: var(--gold);
    border-color: rgba(74, 144, 217, 0.4);
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.page-hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumb and Badge Row Separation */
.page-hero-container .breadcrumb-row,
.detail-hero-container .breadcrumb-row,
.breadcrumb-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: auto;
    padding-top: 0;
    z-index: 10;
    clear: both;
}
.badge-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    clear: both;
}

/* All Breadcrumbs inside sleek dark container pill */
.hero-breadcrumb,
.page-hero .breadcrumb,
.detail-hero-section .breadcrumb,
.detail-breadcrumb,
.breadcrumb {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: 10 !important;
    padding: 6px 16px !important;
    margin: 0 !important;
    text-align: left !important;
    font-size: 0.84rem !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    background: rgba(15, 23, 42, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 9999px !important;
    width: fit-content !important;
}
.hero-breadcrumb a,
.page-hero .breadcrumb a,
.detail-hero-section .breadcrumb a,
.detail-breadcrumb a,
.breadcrumb a {
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease;
}
.hero-breadcrumb a:hover,
.page-hero .breadcrumb a:hover,
.detail-hero-section .breadcrumb a:hover,
.detail-breadcrumb a:hover,
.breadcrumb a:hover {
    color: var(--gold, #3882db) !important;
    text-decoration: underline !important;
}
.hero-breadcrumb span,
.page-hero .breadcrumb span,
.detail-hero-section .breadcrumb span,
.detail-breadcrumb span,
.breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
/* Active/Selected Breadcrumb item MUST BE BOLD WHITE */
.hero-breadcrumb .active,
.hero-breadcrumb span.active,
.page-hero .breadcrumb .active,
.page-hero .breadcrumb span.active,
.detail-hero-section .breadcrumb .active,
.detail-hero-section .breadcrumb span.active,
.detail-breadcrumb .active,
.detail-breadcrumb span.active,
.breadcrumb .active,
.breadcrumb span.active {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

@media (max-width: 768px) {
    .alltrips-hero,
    .page-hero,
    .detail-hero-section {
        min-height: 320px;
        padding-top: 84px;
        padding-bottom: 30px;
    }
    .hero-breadcrumb,
    .page-hero .breadcrumb,
    .detail-hero-section .breadcrumb {
        font-size: 0.8125rem;
        margin-bottom: 14px;
    }
}

/* AllTrips Layout (2 Columns) */
.section-all-trips {
    padding: 40px 0 90px;
    background: var(--bg-primary, #ffffff);
}
.section-all-trips .container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1920px) {
    .section-all-trips .container {
        max-width: 1820px;
        padding: 0 32px;
    }
}
.alltrips-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 36px;
    align-items: start;
}
.alltrips-main {
    min-width: 0;
    width: 100%;
}
.filter-drawer-backdrop {
    display: none;
}

/* Sidebar Filters Box */
.alltrips-sidebar {
    background: var(--bg-card, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 96px;
}
.filter-drawer-header {
    display: none; /* Only visible in mobile drawer */
}

/* Filter Groups */
.filter-group {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
    padding-bottom: 0;
}
.filter-label,
.filter-group-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.filter-group-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.filter-group-header-flex .filter-group-title {
    margin-bottom: 0;
}
.range-display-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(74, 144, 217, 0.1);
    padding: 3px 10px;
    border-radius: 100px;
}

/* Search Input */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-wrapper .search-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}
.filter-input-search {
    width: 100%;
    padding: 12px 36px 12px 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-size: 0.9375rem;
    background: var(--bg-card, #ffffff);
    color: var(--text-primary);
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.filter-input-search:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}
.btn-clear-search,
.btn-clear-date {
    position: absolute;
    right: 10px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
}
.btn-clear-search:hover,
.btn-clear-date:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
}
.btn-clear-search svg,
.btn-clear-date svg {
    width: 14px;
    height: 14px;
}

/* Categories Checkboxes */
.category-checkboxes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.category-checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    user-select: none;
    transition: color 0.2s ease;
    position: relative;
}
.category-checkbox-item:hover {
    color: var(--text-primary);
}
.category-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.category-checkbox-input:checked ~ .custom-checkbox {
    background: var(--gold);
    border-color: var(--gold);
}
.category-checkbox-input:checked ~ .custom-checkbox::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.category-name {
    flex: 1;
    line-height: 1.3;
}
.category-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 100px;
}
.category-checkbox-input:checked ~ .category-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Dual Range Sliders */
.dual-range-slider-wrapper {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}
.slider-track-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    overflow: hidden;
}
.slider-track-highlight {
    position: absolute;
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
}
.range-thumb {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    margin: 0;
    outline: none;
}
.range-thumb-min {
    z-index: 3;
}
.range-thumb-max {
    z-index: 4;
}
.range-thumb:hover,
.range-thumb:active,
.range-thumb:focus {
    z-index: 10 !important;
}
.range-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.range-thumb::-webkit-slider-thumb:hover,
.range-thumb::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(74, 144, 217, 0.4);
}
.range-thumb::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
}
.range-bounds-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Date Range Picker */
.date-range-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 6px;
}
.date-range-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.date-range-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.btn-clear-date-range {
    background: transparent;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.btn-clear-date-range:hover {
    background: rgba(74, 144, 217, 0.1);
    color: var(--gold-dark);
}
.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.date-input-wrapper .date-icon {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}
.filter-input-date {
    width: 100%;
    padding: 8px 10px 8px 36px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--bg-card, #ffffff);
    color: var(--text-primary);
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.filter-input-date:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

/* Filter Actions */
.filter-actions-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.btn-reset-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-reset-filters:hover {
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.03);
}
.btn-reset-filters svg {
    width: 15px;
    height: 15px;
}
.btn-apply-mobile-drawer {
    display: none; /* Only on mobile drawer */
}

/* Desktop Sort Header Bar */
.desktop-sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}
.desktop-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sort-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sort-select-desktop,
.sort-select-mobile {
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-card, #ffffff);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
}
.sort-select-desktop:focus,
.sort-select-mobile:focus {
    border-color: var(--gold);
}

/* Results Header & Active Filter Pills */
.trips-results-header {
    margin-bottom: 24px;
}
.trips-count-info {
    margin-bottom: 12px;
}
.trips-total-badge {
    font-size: 1rem;
    color: var(--text-secondary);
}
.trips-total-badge strong {
    color: var(--text-primary);
    font-weight: 700;
}
.active-filter-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(74, 144, 217, 0.1);
    border: 1px solid rgba(74, 144, 217, 0.25);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-pill:hover {
    background: rgba(74, 144, 217, 0.2);
    border-color: var(--gold);
}
.filter-pill svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
}
.filter-pill-clear-all {
    background: transparent;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
}
.filter-pill-clear-all:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border-style: solid;
}

/* Trips Results Container & Grid */
.trips-results-container {
    position: relative;
    min-height: 400px;
    transition: opacity 0.25s ease;
}
.trips-results-container.is-loading {
    opacity: 0.45;
    pointer-events: none;
}
.trips-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
@media (min-width: 1240px) {
    .trips-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Empty State */
.trips-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    background: var(--bg-card, #ffffff);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: 20px;
}
.trips-empty-state .empty-icon svg {
    width: 56px;
    height: 56px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.trips-empty-state h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.trips-empty-state p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.btn-reset-filters-inline {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Filter Bar & Drawer */
.mobile-filter-trigger-bar {
    display: none; /* Desktop hidden */
}

/* Mobile Drawer (Responsive < 1024px) */
@media (max-width: 1024px) {
    .alltrips-layout {
        grid-template-columns: 1fr;
    }
    .desktop-sort-bar {
        display: none;
    }

    /* Mobile Filter Top Bar */
    .mobile-filter-trigger-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .mobile-sort-wrapper {
        flex: 1;
        min-width: 0;
        max-width: 100%;
    }
    .sort-select-mobile {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .btn-open-filter-drawer {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: var(--bg-card, #ffffff);
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-primary);
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: all 0.2s ease;
    }
    .btn-open-filter-drawer:hover {
        border-color: var(--gold);
        color: var(--gold);
    }
    .btn-open-filter-drawer .icon-filter {
        width: 18px;
        height: 18px;
        color: var(--gold);
    }
    .active-filter-count-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background: var(--gold);
        color: #ffffff;
        border-radius: 50%;
        font-size: 0.75rem;
        font-weight: 700;
    }

    /* Off-Canvas Filter Drawer */
    .alltrips-sidebar.filter-drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 360px;
        max-width: 90vw;
        height: 100vh;
        z-index: 1050;
        background: var(--bg-card, #ffffff);
        box-shadow: none;
        border: none;
        border-radius: 0 20px 20px 0;
        padding: 24px 20px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-105%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    }
    .alltrips-sidebar.filter-drawer.is-open {
        transform: translateX(0);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    }

    /* Drawer Header */
    .filter-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .filter-drawer-title-group {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .filter-drawer-title-group .icon-filter-sm {
        width: 18px;
        height: 18px;
        color: var(--gold);
    }
    .filter-drawer-title-group h3 {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
    }
    .btn-close-drawer {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        background: transparent;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .btn-close-drawer:hover {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.25);
    }
    .btn-close-drawer svg {
        width: 18px;
        height: 18px;
    }

    .btn-apply-mobile-drawer {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-radius: 12px;
    }

    /* Drawer Backdrop */
    .filter-drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(2px);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .filter-drawer-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    body.drawer-open-lock {
        overflow: hidden !important;
    }
}

@media (max-width: 640px) {
    .trips-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .section-all-trips {
        padding: 40px 0 80px;
    }
}


/* ==========================================================================
   MAGAZINE SECTION (EDITORIAL FEATURED TRIPS)
   ========================================================================== */
.magazine-section {
    padding: 88px 0;
    position: relative;
    width: 100%;
}
.magazine-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.mag-featured {
    grid-row: 1 / 3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 460px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mag-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
.mag-featured:hover img {
    transform: scale(1.05);
}
.mag-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.45) 45%, rgba(15, 23, 42, 0.92) 100%);
    z-index: 1;
}
.mag-featured-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    color: #ffffff;
}
.mag-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mag-featured-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
}
.mag-featured-content p {
    font-size: 0.9375rem;
    color: #e2e8f0;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 580px;
}
.mag-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mag-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #cbd5e1;
}
.mag-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold-light);
}
.mag-price {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-left: auto;
}

/* Magazine Small Cards */
.mag-small {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 140px 1fr;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mag-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.mag-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 130px;
    transition: transform 0.5s ease;
}
.mag-small:hover img {
    transform: scale(1.06);
}
.mag-small-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mag-small-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    margin-bottom: 6px;
}
.mag-small-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.35;
}
.mag-small-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.mag-small-price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: auto;
}

/* Second Row of 3 Cards */
.magazine-row-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1240px;
    margin: 24px auto 0;
    padding: 0 24px;
}
.mag-small-vertical {
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto;
}
.mag-small-vertical img {
    min-height: 180px;
    height: 180px;
}

@media (max-width: 1024px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .mag-featured {
        grid-row: auto;
        min-height: 380px;
    }
    .magazine-row-three {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .magazine-row-three {
        grid-template-columns: 1fr;
    }
    .mag-small {
        grid-template-columns: 1fr;
        grid-template-rows: 160px auto;
    }
    .mag-small img {
        min-height: 160px;
        height: 160px;
    }
}


/* ==========================================================================
   GUIDES SECTION (MEET YOUR GUIDES)
   ========================================================================== */
.guides-section {
    padding: 88px 0;
    background: var(--bg-primary);
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.guide-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.guide-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #1e293b;
}
.guide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.guide-card:hover .guide-photo img {
    transform: scale(1.05);
}
.guide-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.guide-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.guide-role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 12px;
}
.guide-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}
.guide-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.guide-spec {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-dark);
    background: rgba(74, 144, 217, 0.1);
    padding: 3px 10px;
    border-radius: 100px;
}

@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 640px) {
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ==========================================================================
   PLAN CTA (NEWSLETTER) SECTION - CLEAN WHITE WITHOUT BOX
   ========================================================================== */
.plan-cta {
    padding: 96px 0 108px;
    background: #ffffff;
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.plan-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}
.plan-inner .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: inline-block;
}
.plan-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}
.adventure-highlight {
    color: var(--gold);
    font-family: var(--font-serif);
    font-style: italic;
}
.plan-inner p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.newsletter-error {
    width: 100%;
    text-align: center;
    color: #ef4444;
    margin-top: 8px;
    font-size: 0.875rem;
}
.plan-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
}
.plan-form-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.plan-form-inputs input[type="email"] {
    flex: 1;
    min-width: 260px;
    padding: 16px 24px;
    border: 1.5px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.9375rem;
    background: #f8fafc;
    color: var(--text-primary);
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.plan-form-inputs input[type="email"]:focus {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}
.plan-form-inputs button {
    padding: 16px 36px;
    background-color: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.plan-form-inputs button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
}

.newsletter-terms-wrapper {
    width: 100%;
    text-align: center;
}
.newsletter-terms-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}
.newsletter-terms-label:hover {
    color: var(--text-primary);
}
.newsletter-terms-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-checkbox-mini {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: #ffffff;
}
.newsletter-terms-checkbox:checked ~ .custom-checkbox-mini {
    background: var(--gold);
    border-color: var(--gold);
}
.newsletter-terms-checkbox:checked ~ .custom-checkbox-mini::after {
    content: "";
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.newsletter-terms-text {
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 640px) {
    .plan-cta {
        padding: 64px 0 80px;
    }
    .plan-inner {
        padding: 0 20px;
    }
    .plan-form-inputs {
        flex-direction: column;
        gap: 12px;
    }
    .plan-form-inputs input[type="email"],
    .plan-form-inputs button {
        width: 100%;
    }
    .newsletter-terms-label {
        align-items: flex-start;
    }
}

/* ==========================================================================
   UTILITIES, DIFFICULTY GAUGE & SPINNERS
   ========================================================================== */
.is-hidden {
    display: none !important;
}

.btn-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}
.btn-see-more.is-loading .btn-spinner {
    display: inline-flex;
}
.btn-see-more.is-loading .btn-text {
    opacity: 0.5;
}
.spinner-icon {
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Difficulty Gauge Component */
.difficulty-gauge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gauge-bars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.gauge-bar {
    width: 4px;
    height: 12px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    transition: background-color 0.25s ease;
}
.gauge-bar.filled {
    background: var(--gold);
}
.gauge-bar.filled.easy {
    background: #10b981;
}
.gauge-bar.filled.medium,
.gauge-bar.filled.moderate {
    background: #f59e0b;
}
.gauge-bar.filled.high,
.gauge-bar.filled.hard {
    background: #ef4444;
}
.gauge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

.trip-card-gauge-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Form block typography */
.form-field-label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-label-bar {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.form-help-text {
    margin-top: 5px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Timeline Accordion with Connected Bullets */
.timeline-overview-section {
    margin-top: 2.5rem;
}
.timeline-accordion {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
}
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    width: 24px;
    padding-top: 6px;
}
.timeline-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold, #d97706);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px var(--gold, #d97706);
    z-index: 2;
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.timeline-item.open .timeline-bullet {
    background: #0f172a;
    transform: scale(1.15);
}
.timeline-line {
    position: absolute;
    top: 20px;
    bottom: -1.25rem;
    width: 2px;
    background: rgba(217, 119, 6, 0.35);
    z-index: 1;
}
.timeline-body {
    flex: 1;
    background: var(--bg-surface, #f8fafc);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.timeline-item.open .timeline-body {
    border-color: var(--gold, #d97706);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.12);
}
.timeline-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-primary, #0f172a);
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}
.timeline-header:hover {
    color: var(--gold, #d97706);
}
.timeline-title {
    color: var(--text-primary, #0f172a);
    font-weight: 700;
}
.timeline-item.open .timeline-title {
    color: var(--gold, #d97706);
}
.timeline-chevron {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--text-muted, #64748b);
}
.timeline-item.open .timeline-chevron {
    transform: rotate(180deg);
    color: var(--gold, #d97706);
}
.timeline-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: var(--text-secondary, #334155);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Sticky Bottom Booking Bar (Light Gray Palette) */
.sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: rgba(248, 250, 252, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #e2e8f0;
    padding: 8px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.sticky-booking-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-booking-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-booking-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sticky-trip-title {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 480px;
    letter-spacing: 0.2px;
}
.sticky-trip-price {
    color: #0f172a !important;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}
.sticky-trip-price span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: #64748b;
}
.sticky-booking-bar .btn-book {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: fit-content;
    padding: 11px 26px !important;
    font-size: 0.95rem !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
    border: none !important;
    transition: all 0.25s ease;
}
.sticky-booking-bar .btn-book:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.sticky-booking-bar .btn-waitlist {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}

@media (max-width: 640px) {
    .sticky-booking-bar {
        padding: 10px 16px;
    }
    .sticky-trip-title {
        display: none;
    }
    .sticky-trip-price {
        font-size: 1.25rem !important;
    }
    .sticky-booking-bar .btn-book {
        padding: 9px 18px !important;
        font-size: 0.85rem !important;
    }
}



/* ============================================================
   FLOATING HERO LOGO BADGE (INSTAGRAMIC CIRCULAR STAMP)
   ============================================================ */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes spinBadgeText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-floating-badge {
    position: absolute;
    top: 110px;
    right: 48px;
    bottom: auto;
    z-index: 25;
    width: 170px;
    height: 170px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), 0 0 0 1.5px rgba(32, 96, 176, 0.25), inset 0 0 14px rgba(255, 255, 255, 0.85);
    cursor: pointer;
    user-select: none;
    animation: heroBadgeSplash 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s backwards, heroFloat 5s ease-in-out 1.5s infinite;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

/* Rotating circular text SVG */
.hero-badge-rotating-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spinBadgeText 22s linear infinite;
    pointer-events: none;
}

.hero-badge-text-path {
    font-family: var(--font-sans, system-ui, sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    fill: #2060b0;
    text-transform: uppercase;
}

/* Center Logo Wrapper */
.hero-floating-badge-center {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(32, 96, 176, 0.16), inset 0 0 0 1px rgba(32, 96, 176, 0.15);
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-floating-badge-img {
    width: 78px;
    height: 78px;
    max-width: 82px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Splash ripple shockwaves radiating outward */
.hero-floating-badge::before,
.hero-floating-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    box-sizing: border-box;
}
.hero-floating-badge::before {
    border: 3px solid rgba(32, 96, 176, 0.65);
    box-shadow: 0 0 24px rgba(32, 96, 176, 0.45);
    animation: heroSplashRipple1 1.6s cubic-bezier(0.1, 0.8, 0.25, 1) 0.65s 1 forwards;
}
.hero-floating-badge::after {
    border: 2px solid rgba(56, 130, 219, 0.45);
    box-shadow: 0 0 30px rgba(56, 130, 219, 0.3);
    animation: heroSplashRipple2 2s cubic-bezier(0.1, 0.8, 0.25, 1) 0.85s 1 forwards;
}

.hero-floating-badge:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 24px 50px rgba(32, 96, 176, 0.3), 0 0 0 2px rgba(32, 96, 176, 0.45);
}
.hero-floating-badge:hover .hero-badge-rotating-text {
    animation-duration: 11s;
}
.hero-floating-badge:hover .hero-floating-badge-img {
    transform: rotate(8deg) scale(1.08);
}
.hero-floating-badge:active {
    transform: scale(0.96);
}

@keyframes heroBadgeSplash {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-35deg);
        filter: blur(10px);
    }
    40% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
        filter: blur(0);
        box-shadow: 0 0 50px rgba(32, 96, 176, 0.5), 0 20px 40px rgba(0, 0, 0, 0.25);
    }
    60% {
        transform: scale(0.92) rotate(-5deg);
    }
    75% {
        transform: scale(1.08) rotate(3deg);
    }
    88% {
        transform: scale(0.98) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes heroSplashRipple1 {
    0% {
        transform: scale(0.7);
        opacity: 0.9;
    }
    50% {
        opacity: 0.55;
    }
    100% {
        transform: scale(2.05);
        opacity: 0;
    }
}

@keyframes heroSplashRipple2 {
    0% {
        transform: scale(0.75);
        opacity: 0.75;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-floating-badge {
        display: none !important;
    }
}


/* ============================================================
   MOUNTAIN RIDGE SVG DIVIDER
   ============================================================ */
.hero-mountain-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}
.hero-mountain-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

@media (max-width: 768px) {
    .hero-mountain-divider svg {
        height: 50px;
    }
}


/* ============================================================
   ABOUT / HISTORY SECTION
   ============================================================ */
.about-history-section {
    padding: 88px 0;
}
.about-history-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-history-layout.content-left .about-history-text { order: 1; }
.about-history-layout.content-left .about-history-media { order: 2; }
.about-history-layout.content-right .about-history-text { order: 2; }
.about-history-layout.content-right .about-history-media { order: 1; }

.about-history-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-history-img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.about-history-text .section-label {
    margin-bottom: 12px;
}
.about-history-text .section-title {
    margin-bottom: 24px;
}
.about-history-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.about-history-desc p {
    margin-bottom: 16px;
}
.about-history-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 868px) {
    .about-history-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-history-layout.content-left .about-history-text,
    .about-history-layout.content-left .about-history-media,
    .about-history-layout.content-right .about-history-text,
    .about-history-layout.content-right .about-history-media {
        order: unset;
    }
    .about-history-section {
        padding: 56px 0;
    }
}


/* ============================================================
   TEAM BIO SECTION
   ============================================================ */
.team-bio-section {
    padding: 88px 0;
}
.team-bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 36px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.team-bio-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-bio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-bio-photo {
    width: 100%;
    aspect-ratio: 5 / 6;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #eee, #ddd);
}
.team-bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-bio-card:hover .team-bio-photo img {
    transform: scale(1.05);
}
.team-bio-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.team-bio-info {
    padding: 24px;
}
.team-bio-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.team-bio-role {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 12px;
}
.team-bio-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.team-bio-social {
    display: flex;
    gap: 10px;
}
.team-bio-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 217, 0.08);
    color: var(--gold);
    transition: all 0.25s ease;
}
.team-bio-social-link:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .team-bio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .team-bio-section {
        padding: 56px 0;
    }
}


/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.top-contact-bar {
    width: 100%;
    background: var(--bg-dark);
    color: #cbd5e1;
    font-size: 0.75rem;
    z-index: 1100;
    position: relative;
}
.top-contact-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar-social-link {
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}
.top-bar-social-link:hover {
    color: var(--gold-light);
    transform: scale(1.15);
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.top-bar-contact-item:hover {
    color: #e2e8f0;
}
.top-bar-contact-item svg {
    flex-shrink: 0;
}

/* When top bar is present, push navbar down */
body:has(.top-contact-bar) .navbar {
    top: 32px;
}
body:has(.top-contact-bar) .hero {
    padding-top: 112px;
}
body:has(.top-contact-bar) .navbar.scrolled {
    top: 0;
}

@media (max-width: 768px) {
    .top-contact-bar.hide-on-mobile {
        display: none;
    }
    .top-contact-bar-inner {
        padding: 5px 16px;
    }
    body:has(.top-contact-bar:not(.hide-on-mobile)) .navbar {
        top: 30px;
    }
    body:has(.top-contact-bar:not(.hide-on-mobile)) .hero {
        padding-top: 110px;
    }
    body:has(.top-contact-bar.hide-on-mobile) .navbar {
        top: 0;
    }
    body:has(.top-contact-bar.hide-on-mobile) .hero {
        padding-top: 80px;
    }
}


/* ============================================================
   HISTORY TEASER SECTION
   ============================================================ */
.history-teaser-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.history-teaser-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.25;
}
.history-teaser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(248, 249, 250, 0.7) 0%,
        rgba(248, 249, 250, 0.85) 50%,
        rgba(248, 249, 250, 0.7) 100%
    );
    z-index: 2;
}
.history-teaser-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}
.history-teaser-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.25;
}
.history-teaser-title em {
    color: var(--gold);
    font-style: italic;
}
.history-teaser-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.history-teaser-desc p {
    margin-bottom: 12px;
}
.history-teaser-desc p:last-child {
    margin-bottom: 0;
}
.history-teaser-cta {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .history-teaser-section {
        padding: 64px 0;
        min-height: 300px;
    }
}


/* ============================================================
   CATEGORY PAGE STICKY FILTERS (SCREENSHOT 1)
   ============================================================ */
.category-sticky-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 20;
}

.category-filters-box {
    background: #f4f5f7;
    border-radius: 24px;
    padding: 32px 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Category & AllTrips Filter Box Header (Desktop) */
.category-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.category-filters-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.2px;
}
.category-filters-header-title .icon-filter-sm {
    width: 18px;
    height: 18px;
    color: #ff7a00;
}
/* Desktop Category & AllTrips Filter Reset Action Bar */
.category-filters-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.category-filters-actions .btn-reset-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 24px;
    background: #ffffff;
    color: #374151;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.category-filters-actions .btn-reset-filters:hover {
    color: #ff7a00;
    border-color: #ff7a00;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.15);
    transform: translateY(-1px);
}
.category-filters-actions .btn-reset-filters svg {
    width: 14px;
    height: 14px;
    color: inherit;
}

/* Visibility toggles for desktop vs mobile filter actions */
.desktop-only-actions {
    display: block !important;
}
.mobile-only-actions {
    display: none !important;
}

.category-filter-group {
    margin-bottom: 26px;
}
.category-filter-group:last-child {
    margin-bottom: 0;
}

.category-filter-heading {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    letter-spacing: -0.2px;
}
.category-filter-heading .gold-dot {
    color: #ff7a00;
    font-size: 1.45rem;
    line-height: 1;
    margin-left: 2px;
}

.category-filter-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f2937;
    user-select: none;
    transition: color 0.2s ease;
}
.category-filter-label:last-child {
    margin-bottom: 0;
}
.category-filter-label:hover {
    color: #000000;
}

.category-filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid #cbd5e1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.category-filter-checkbox:hover {
    border-color: #ff7a00;
}
.category-filter-checkbox:checked {
    background-color: #ff7a00 !important;
    border-color: #ff7a00 !important;
}
.category-filter-checkbox::after,
.category-filter-checkbox:checked::after {
    display: none !important;
    content: none !important;
}

.category-filter-label .label-text {
    font-size: 1.05rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .category-sticky-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        z-index: 1200;
        background: #ffffff;
        padding: 24px;
        overflow-y: auto;
        transition: left 0.3s ease;
    }
    .category-sticky-sidebar.is-open {
        left: 0;
    }
    .category-filters-box {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    .desktop-only-filter-header {
        display: none !important;
    }
    .desktop-only-actions {
        display: none !important;
    }
    .filter-drawer-header {
        display: flex !important;
    }
    .filter-actions-bar.mobile-only-actions {
        display: grid !important;
        grid-template-columns: 1fr 1.35fr !important;
        gap: 12px !important;
        margin-top: 28px !important;
        padding-top: 18px !important;
        padding-bottom: 12px !important;
        border-top: 1px solid #e5e7eb !important;
        position: sticky !important;
        bottom: 0 !important;
        background: #ffffff !important;
        z-index: 10 !important;
    }
    .btn-reset-filters-mobile {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        border: 1.5px solid #d1d5db !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        color: #374151 !important;
        font-size: 0.9375rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }
    .btn-reset-filters-mobile:hover,
    .btn-reset-filters-mobile:active {
        border-color: #ff7a00 !important;
        color: #111827 !important;
        background: #fff8f0 !important;
    }
    .btn-apply-mobile-drawer {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        border-radius: 12px !important;
        font-size: 0.9375rem !important;
        font-weight: 700 !important;
        width: 100% !important;
        background: var(--gold, #ff7a00) !important;
        color: #ffffff !important;
    }
}


/* ============================================================
   CATEGORY PAGE 1-PER-ROW TRIP CARDS (MATCHING SCREENSHOT 1 & 3)
   ============================================================ */
.trips-cards-grid-single-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
    width: 100% !important;
}

.trip-card-row {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trip-card-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(32, 96, 176, 0.12);
    border-color: rgba(32, 96, 176, 0.25);
}

.trip-card-row-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    text-decoration: none;
    color: inherit;
    min-height: 240px;
}

.trip-card-row-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 230px;
    overflow: hidden;
    background: #f1f5f9;
}
.trip-card-row-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.trip-card-row:hover .trip-card-row-img {
    transform: scale(1.05);
}
.trip-card-row-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.trip-card-row-booked-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
    z-index: 2;
}

.trip-card-row-content {
    padding: 28px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.trip-card-row-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2060b0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.trip-card-row-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 10px;
    line-height: 1.25;
    transition: color 0.2s ease;
}
.trip-card-row:hover .trip-card-row-title {
    color: #2060b0;
}

.trip-card-row-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 14px;
}

.trip-card-row-meta-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.trip-meta-duration {
    font-weight: 500;
    color: #64748b;
}
.trip-meta-sep {
    color: #cbd5e1;
    font-weight: 700;
}
.trip-meta-gauge-wrap {
    display: inline-flex;
    align-items: center;
}

.trip-card-row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.trip-card-row-price {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: #2060b0;
    letter-spacing: -0.5px;
}

.trip-card-row-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2060b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s ease;
}
.trip-card-row-link-text svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}
.trip-card-row:hover .trip-card-row-link-text svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .trip-card-row-inner {
        grid-template-columns: 280px 1fr;
    }
}
@media (max-width: 768px) {
    .trip-card-row-inner {
        grid-template-columns: 1fr;
    }
    .trip-card-row-media {
        aspect-ratio: 16/10;
        min-height: 200px;
    }
    .trip-card-row-content {
        padding: 20px;
    }
    .trip-card-row-title {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   ADVENTURE IDEAS (SCREENSHOT 4) CATEGORIES COMPONENT
   ========================================================================== */
.section-adventure-ideas {
    padding: 72px 0 88px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}
.section-header.section-header-centered,
.section-header-centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 52px;
    width: 100%;
}
.section-header.section-header-centered > div,
.section-header-centered > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.section-header-centered .section-label {
    color: #e05d44;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}
.section-header-centered .section-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}
.section-header-centered .section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
}

.cat-adventure-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    background-image: radial-gradient(circle at 50% 50%, rgba(224, 93, 68, 0.03) 0%, transparent 70%);
}

.cat-adventure-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px 32px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.cat-adventure-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    will-change: transform, opacity;
    flex: 0 0 calc(20% - 26px);
    max-width: 240px;
}

/* Rendering Entrance Animation: Alternating Left / Right */
.cat-adventure-item.slide-from-left {
    opacity: 0;
    transform: translateX(-55px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-adventure-item.slide-from-right {
    opacity: 0;
    transform: translateX(55px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-adventure-item:nth-child(1) { transition-delay: 0.05s; }
.cat-adventure-item:nth-child(2) { transition-delay: 0.12s; }
.cat-adventure-item:nth-child(3) { transition-delay: 0.19s; }
.cat-adventure-item:nth-child(4) { transition-delay: 0.26s; }
.cat-adventure-item:nth-child(5) { transition-delay: 0.33s; }
.cat-adventure-item:nth-child(6) { transition-delay: 0.40s; }
.cat-adventure-item:nth-child(7) { transition-delay: 0.47s; }
.cat-adventure-item:nth-child(8) { transition-delay: 0.54s; }

.cat-adventure-item.is-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Circular Photo Frame with Hover Animation (Click reveals description) */
.cat-circle-frame {
    display: block;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 3px solid #ffffff;
    outline: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    cursor: pointer;
}
.cat-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.cat-circle-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #2060b0;
}
.cat-circle-fallback svg {
    width: 54px;
    height: 54px;
}
.cat-circle-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 60%, rgba(15, 23, 42, 0.15) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Hover Animation on Circle */
.cat-adventure-item:hover .cat-circle-frame {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 16px 36px rgba(32, 96, 176, 0.22);
    border-color: #ffffff;
    outline: 2px solid #2060b0;
}
.cat-adventure-item:hover .cat-circle-img {
    transform: scale(1.08);
}

/* Title Toggle */
.cat-title-toggle,
.cat-title-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 8px;
    cursor: pointer;
    outline: none;
    user-select: none;
}
.cat-adventure-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.cat-adventure-item:hover .cat-adventure-title {
    color: #2060b0;
}

/* Collapsible Content - Revealed ONLY on click */
.cat-item-content-collapse {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-bottom 0.3s ease;
    width: 100%;
}
.cat-adventure-item.content-revealed .cat-item-content-collapse {
    max-height: 280px;
    opacity: 1;
    margin-bottom: 16px;
}
.cat-adventure-desc {
    font-size: 0.865rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    padding: 6px 4px 0;
}

/* Sleek Button: ΠΕΡΙΣΣΟΤΕΡΑ */
.btn-cat-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: transparent;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 6px;
}
.btn-cat-more:hover {
    border-color: #2060b0;
    color: #2060b0;
    background: rgba(32, 96, 176, 0.05);
}
.cat-adventure-item.content-revealed .btn-cat-more {
    border-color: #2060b0;
    background: #2060b0;
    color: #ffffff;
}

/* Responsive Categories */
@media (max-width: 1100px) {
    .cat-adventure-item {
        flex: 0 0 calc(33.333% - 24px);
    }
}
@media (max-width: 768px) {
    .cat-adventure-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
        max-width: 560px;
        margin: 0 auto;
    }
    .cat-adventure-item {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .cat-circle-frame {
        width: 120px;
        height: 120px;
        margin-bottom: 14px;
    }
    .cat-adventure-title {
        font-size: 1.05rem;
    }
    .cat-adventure-desc {
        font-size: 0.8rem;
    }
}
@media (max-width: 480px) {
    .cat-adventure-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
        max-width: 100%;
        padding: 0 4px;
    }
    .cat-adventure-item {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .cat-circle-frame {
        width: 105px;
        height: 105px;
        margin-bottom: 12px;
    }
    .cat-circle-fallback svg {
        width: 38px;
        height: 38px;
    }
    .cat-adventure-title {
        font-size: 0.95rem;
        line-height: 1.25;
    }
    .cat-adventure-desc {
        font-size: 0.76rem;
        line-height: 1.45;
    }
    .btn-cat-more {
        padding: 5px 12px;
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   ABOUT HISTORY & TEAM BIO PAGES (wade.gr & trekkers.gr design)
   ========================================================================== */

/* About / History Section */
.about-history-section {
    padding: 80px 0;
    position: relative;
    background: transparent;
    overflow-x: clip;
}
.about-history-section.section--light-background,
.about-history-section.section--light--background {
    background: #f1f5f9;
}
.about-history-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-history-layout.content-left .about-history-text {
    order: 1;
}
.about-history-layout.content-left .about-history-media {
    order: 2;
}
.about-history-layout.content-right .about-history-media {
    order: 1;
}
.about-history-layout.content-right .about-history-text {
    order: 2;
}

.about-history-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    position: relative;
    background: #0f172a;
    border: 4px solid #ffffff;
}
.about-history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: transform 0.6s ease;
}
.about-history-media:hover .about-history-img {
    transform: scale(1.03);
}

.about-history-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-history-text .section-label {
    color: #2060b0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-history-text .section-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-history-desc {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}
.about-history-desc p {
    margin-bottom: 16px;
}
.about-history-desc p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   TEAM EDITORIAL PROFILES (trekkers.gr inspired)
   ========================================================================== */
.team-bio-section {
    padding: 88px 0;
    position: relative;
    background: transparent;
    overflow-x: clip;
}
.team-bio-section.section--light-background,
.team-bio-section.section--light--background {
    background: #f1f5f9;
}
.team-editorial-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
    max-width: 1160px;
    margin: 48px auto 0;
}
.team-editorial-item {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 64px;
    border-bottom: 1px solid #e2e8f0;
}
.team-editorial-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.team-editorial-item.layout-photo-right {
    grid-template-columns: 1fr 360px;
}
.team-editorial-item.layout-photo-right .team-editorial-media {
    order: 2;
}
.team-editorial-item.layout-photo-right .team-editorial-content {
    order: 1;
}

.team-editorial-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 96px;
}
.team-editorial-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    border: 4px solid #ffffff;
    background: #0f172a;
}
.team-editorial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.team-editorial-item:hover .team-editorial-photo img {
    transform: scale(1.04);
}
.team-editorial-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #94a3b8;
}
.team-editorial-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
    text-decoration: none;
}
.team-social-link:hover {
    background: #2060b0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 96, 176, 0.3);
    border-color: #2060b0;
}

.team-editorial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.team-editorial-name {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
}
.team-editorial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 24px;
}
.team-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(32, 96, 176, 0.08);
    color: #2060b0;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(32, 96, 176, 0.18);
    transition: all 0.25s ease;
}
.team-badge-pill:hover {
    background: #2060b0;
    color: #ffffff;
}
.team-editorial-bio {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.85;
}
.team-editorial-bio p {
    margin-bottom: 18px;
}
.team-editorial-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .team-editorial-item,
    .team-editorial-item.layout-photo-right {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 48px;
    }
    .team-editorial-item.layout-photo-right .team-editorial-media {
        order: 1;
    }
    .team-editorial-item.layout-photo-right .team-editorial-content {
        order: 2;
    }
    .team-editorial-media {
        position: static;
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }
    .team-editorial-name {
        font-size: 1.8rem;
    }
    .team-editorial-bio {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Universal Slider Dragging & Smooth Handling */
.slider-track {
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}
.slider-track.is-dragging {
    cursor: grabbing !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}
.slider-track.is-dragging * {
    user-select: none !important;
    -webkit-user-select: none !important;
    pointer-events: none !important;
}

/* History Teaser Banner (Homepage) */
.history-teaser-section {
    position: relative;
    padding: 84px 24px 96px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.history-mountain-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 240px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.history-mountain-backdrop svg,
.history-mountain-backdrop .history-svg {
    width: 100%;
    height: 100%;
    display: none;
}
.history-mountain-backdrop .history-svg-desktop {
    display: block;
}
.history-teaser-content {
    position: relative;
    z-index: 5;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px;
}
.history-teaser-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(2rem, 3.8vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.28;
    margin-bottom: 18px;
}
.history-teaser-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 28px;
}
.history-teaser-desc p {
    margin-bottom: 12px;
}
.history-teaser-cta {
    display: inline-flex;
}

/* History Teaser Alpine Sun & Clouds Transitions */
.history-sun {
    transform-origin: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.history-sun-glow {
    transition: transform 1.2s ease-out, opacity 1.2s ease-out;
    transform-origin: center;
}
.history-cloud {
    transition: transform 2.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

/* Hover effects for sun and clouds */
.history-teaser-section:hover .history-sun-glow {
    transform: scale(1.18);
    opacity: 0.95;
}
.history-teaser-section:hover .history-cloud-left {
    transform: translate(16px, -2px);
}
.history-teaser-section:hover .history-cloud-right {
    transform: translate(-15px, -2px);
}
.history-teaser-section:hover .history-cloud-wisp {
    transform: translate(10px, 1px);
}

/* History Teaser Birds Styling & Soaring Animation on Section Hover */
.history-bird {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Natural flight cycle keyframes with wing flap, tilt banking, and thermal lift */
@keyframes birdSoarLeftA {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1, 1);
    }
    20% {
        transform: translate(6px, -6px) rotate(-4deg) scale(0.95, 0.65);
    }
    45% {
        transform: translate(14px, -12px) rotate(-2deg) scale(1, 1.05);
    }
    70% {
        transform: translate(22px, -9px) rotate(3deg) scale(0.95, 0.65);
    }
    100% {
        transform: translate(30px, -18px) rotate(0deg) scale(1, 1);
    }
}

@keyframes birdSoarLeftB {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1, 1);
    }
    25% {
        transform: translate(5px, -8px) rotate(-2deg) scale(0.94, 0.6);
    }
    55% {
        transform: translate(16px, -16px) rotate(1deg) scale(1.02, 1.08);
    }
    80% {
        transform: translate(25px, -12px) rotate(-3deg) scale(0.95, 0.62);
    }
    100% {
        transform: translate(35px, -22px) rotate(-1deg) scale(1, 1);
    }
}

@keyframes birdSoarRightA {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1, 1);
    }
    20% {
        transform: translate(-6px, -6px) rotate(4deg) scale(0.95, 0.65);
    }
    45% {
        transform: translate(-14px, -12px) rotate(2deg) scale(1, 1.05);
    }
    70% {
        transform: translate(-22px, -9px) rotate(-3deg) scale(0.95, 0.65);
    }
    100% {
        transform: translate(-30px, -18px) rotate(0deg) scale(1, 1);
    }
}

@keyframes birdSoarRightB {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1, 1);
    }
    25% {
        transform: translate(-5px, -8px) rotate(2deg) scale(0.94, 0.6);
    }
    55% {
        transform: translate(-16px, -16px) rotate(-1deg) scale(1.02, 1.08);
    }
    80% {
        transform: translate(-25px, -12px) rotate(3deg) scale(0.95, 0.62);
    }
    100% {
        transform: translate(-35px, -22px) rotate(1deg) scale(1, 1);
    }
}

/* Staggered bird flight animations on section hover */
.history-teaser-section:hover .bird-l1 {
    animation: birdSoarLeftA 3.4s ease-in-out infinite alternate;
}
.history-teaser-section:hover .bird-l2 {
    animation: birdSoarLeftB 3.8s ease-in-out infinite alternate 0.25s;
}
.history-teaser-section:hover .bird-l3 {
    animation: birdSoarLeftA 3.1s ease-in-out infinite alternate 0.5s;
}
.history-teaser-section:hover .bird-l4 {
    animation: birdSoarLeftB 4.0s ease-in-out infinite alternate 0.15s;
}
.history-teaser-section:hover .bird-l5 {
    animation: birdSoarLeftA 3.5s ease-in-out infinite alternate 0.6s;
}
.history-teaser-section:hover .bird-l6 {
    animation: birdSoarLeftB 2.9s ease-in-out infinite alternate 0.4s;
}
.history-teaser-section:hover .bird-l7 {
    animation: birdSoarLeftA 3.6s ease-in-out infinite alternate 0.75s;
}

.history-teaser-section:hover .bird-r1 {
    animation: birdSoarRightA 3.5s ease-in-out infinite alternate;
}
.history-teaser-section:hover .bird-r2 {
    animation: birdSoarRightB 3.2s ease-in-out infinite alternate 0.3s;
}
.history-teaser-section:hover .bird-r3 {
    animation: birdSoarRightA 4.1s ease-in-out infinite alternate 0.1s;
}
.history-teaser-section:hover .bird-r4 {
    animation: birdSoarRightB 3.6s ease-in-out infinite alternate 0.55s;
}
.history-teaser-section:hover .bird-r5 {
    animation: birdSoarRightA 3.0s ease-in-out infinite alternate 0.4s;
}
.history-teaser-section:hover .bird-r6 {
    animation: birdSoarRightB 3.8s ease-in-out infinite alternate 0.2s;
}
.history-teaser-section:hover .bird-r7 {
    animation: birdSoarRightA 3.4s ease-in-out infinite alternate 0.7s;
}

@media (max-width: 900px) {
    .about-history-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-history-layout.content-left .about-history-text,
    .about-history-layout.content-right .about-history-text {
        order: 2;
    }
    .about-history-layout.content-left .about-history-media,
    .about-history-layout.content-right .about-history-media {
        order: 1;
    }
    .team-bio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .team-bio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .history-teaser-section {
        padding: 60px 20px 100px !important;
        min-height: auto !important;
    }
    .history-mountain-backdrop {
        height: 100% !important;
        min-height: 220px !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    .history-mountain-backdrop .history-svg-desktop {
        display: none !important;
    }
    .history-mountain-backdrop .history-svg-tablet {
        display: block !important;
    }
    .history-mountain-backdrop .history-svg-mobile {
        display: none !important;
    }
    .history-teaser-content {
        padding: 0 !important;
        max-width: 100% !important;
    }
    .history-teaser-title {
        font-size: clamp(1.5rem, 5.5vw, 1.85rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
    }
    .history-teaser-desc {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        margin-bottom: 20px !important;
    }
}
@media (max-width: 580px) {
    .history-mountain-backdrop .history-svg-desktop {
        display: none !important;
    }
    .history-mountain-backdrop .history-svg-tablet {
        display: none !important;
    }
    .history-mountain-backdrop .history-svg-mobile {
        display: block !important;
    }
}
@media (max-width: 768px) {

    /* Trip Detail Mobile Layout Safeguards */
    body.template-trip-detail {
        padding-bottom: 64px !important;
    }
    .detail-hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    .detail-hero-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .detail-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .breadcrumb-row {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .hero-breadcrumb,
    .detail-hero-section .breadcrumb,
    .breadcrumb {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
    }
}

/* ==========================================================================
   BREADCRUMB & BADGE ISOLATED ROWS (Prevents Overlap in All Templates)
   ========================================================================== */
.breadcrumb-row {
    width: 100%;
    display: block;
    margin-bottom: 14px;
    clear: both;
}
.page-hero .breadcrumb-row,
.detail-hero-section .breadcrumb-row {
    margin-left: -12px;
}
@media (max-width: 768px) {
    .page-hero .breadcrumb-row,
    .detail-hero-section .breadcrumb-row {
        margin-left: 0;
    }
}
.badge-row {
    width: 100%;
    display: block;
    margin-bottom: 12px;
    clear: both;
}
.badge-row .section-label,
.page-hero-content .section-label {
    display: inline-block;
    margin-bottom: 0;
}

/* Adventure Ideas Section Label in Premium Blue */
.section-adventure-ideas .section-label,
.categories .section-label {
    color: #2060b0 !important;
}

/* ==========================================================================
   STATUS BADGES: FULLY BOOKED (RED) & RUNNING LOW (ORANGE)
   ========================================================================== */
.trip-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    cursor: default;
    box-sizing: border-box;
}

.tag-fully-booked {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    border-color: #dc2626 !important;
}
.tag-running-low {
    background-color: #ea580c !important;
    color: #ffffff !important;
    border-color: #ea580c !important;
}

/* Grid & Slider Card Badges Container & Alignment */
.trip-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
    flex-wrap: wrap;
}
.trip-card-badges > * {
    pointer-events: auto;
}
.trip-card-badges .trip-badge {
    position: static;
    top: auto;
    left: auto;
    display: inline-flex;
    align-items: center;
    height: 24px;
    line-height: 1;
    margin: 0;
    box-sizing: border-box;
    order: 1;
}
.trip-card-badges .trip-status-tag {
    position: static;
    top: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    height: 24px;
    line-height: 1.2;
    margin: 0;
    box-sizing: border-box;
    order: 2;
}

/* When resolution is smaller: Status tag on top, category follows */
@container (max-width: 330px) {
    .trip-card-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .trip-card-badges .trip-status-tag {
        order: -1;
    }
    .trip-card-badges .trip-badge {
        order: 1;
    }
}
@media (max-width: 576px) {
    .trip-card-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .trip-card-badges .trip-status-tag {
        order: -1;
    }
    .trip-card-badges .trip-badge {
        order: 1;
    }
}

/* Row Card Status Badges (Top-Left) */
.trip-card-row-booked-tag,
.trip-card-row-runninglow-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    z-index: 10;
    line-height: 1.3;
}

/* Info Icon inside Tag (Always crisp white, never blue) */
.tag-info-icon,
svg.tag-info-icon,
.detail-meta-tag.tag-fully-booked svg,
.detail-meta-tag.tag-running-low svg,
.detail-meta-tag .tag-info-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    opacity: 0.95;
    cursor: help;
    color: #ffffff !important;
    stroke: currentColor !important;
}

/* Tooltip Bubble inside Tag (White background with crisp dark text) */
.tag-tooltip-bubble {
    position: absolute;
    top: calc(100% + 8px);
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.45;
    white-space: normal;
    width: 230px;
    max-width: 230px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: normal;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    pointer-events: none;
}
.tag-tooltip-bubble::before {
    content: "";
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

/* Detail Hero: Tag is on the left, open tooltip to the right directly underneath */
.detail-hero-section .tag-tooltip-bubble {
    left: 0 !important;
    right: auto !important;
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
}
.detail-hero-section .tag-tooltip-bubble::before {
    left: 18px !important;
    right: auto !important;
    background: #ffffff !important;
    border-top: 1px solid #cbd5e1 !important;
    border-left: 1px solid #cbd5e1 !important;
}

/* Grid: arrow near right */
.trip-card-badges .trip-status-tag .tag-tooltip-bubble {
    right: 0;
    left: auto;
}
.trip-card-badges .trip-status-tag .tag-tooltip-bubble::before {
    right: 14px;
    left: auto;
}

/* Row cards on All Trips & Categories: Tag is on top-left, so tooltip must open to the right! */
.trip-card-row-booked-tag .tag-tooltip-bubble {
    left: 0 !important;
    right: auto !important;
    width: 230px !important;
    max-width: 230px !important;
}
.trip-card-row-booked-tag .tag-tooltip-bubble::before {
    left: 14px;
    right: auto;
}

.trip-status-tag:hover .tag-tooltip-bubble,
.detail-meta-tag:hover .tag-tooltip-bubble,
.trip-card-row-booked-tag:hover .tag-tooltip-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .trip-card-badges .trip-status-tag .tag-tooltip-bubble {
        left: 0;
        right: auto;
    }
    .trip-card-badges .trip-status-tag .tag-tooltip-bubble::before {
        left: 14px;
        right: auto;
    }
}

/* Fallback pseudo-element tooltip if bubble element is omitted */
.trip-status-tag:not(:has(.tag-tooltip-bubble))[data-tooltip],
.detail-meta-tag.tag-fully-booked:not(:has(.tag-tooltip-bubble))[data-tooltip],
.trip-card-row-booked-tag:not(:has(.tag-tooltip-bubble))[data-tooltip] {
    position: relative;
    cursor: help;
}
.trip-status-tag:not(:has(.tag-tooltip-bubble))[data-tooltip]::after,
.detail-meta-tag.tag-fully-booked:not(:has(.tag-tooltip-bubble))[data-tooltip]::after,
.trip-card-row-booked-tag:not(:has(.tag-tooltip-bubble))[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 8px);
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.45;
    white-space: normal;
    width: 230px;
    max-width: 230px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: normal;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
}
.trip-card-row-booked-tag:not(:has(.tag-tooltip-bubble))[data-tooltip]::after {
    left: 0 !important;
    right: auto !important;
}
.trip-card-badges .trip-status-tag:not(:has(.tag-tooltip-bubble))[data-tooltip]::after,
.detail-meta-tag.tag-fully-booked:not(:has(.tag-tooltip-bubble))[data-tooltip]::after {
    right: 0 !important;
    left: auto !important;
}
.trip-status-tag:not(:has(.tag-tooltip-bubble))[data-tooltip]:hover::after,
.detail-meta-tag.tag-fully-booked:not(:has(.tag-tooltip-bubble))[data-tooltip]:hover::after,
.trip-card-row-booked-tag:not(:has(.tag-tooltip-bubble))[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Reviews Page & Rate Us standalone layout */
body.template-reviews,
body.template-rate-us {
    padding-top: 104px;
}
body.template-reviews .breadcrumb-container,
body.template-rate-us .breadcrumb-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto 16px;
    padding: 0 24px;
}
body.template-reviews .breadcrumb-row,
body.template-rate-us .breadcrumb-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-breadcrumb.light-page-breadcrumb {
    background: #ffffff !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}
.hero-breadcrumb.light-page-breadcrumb a {
    color: #1e293b !important;
}
.hero-breadcrumb.light-page-breadcrumb a:hover {
    color: var(--gold) !important;
}
.hero-breadcrumb.light-page-breadcrumb .active {
    color: #0f172a !important;
    font-weight: 600 !important;
}
.hero-breadcrumb.light-page-breadcrumb span:not(.active),
.hero-breadcrumb.light-page-breadcrumb span[aria-hidden="true"],
.hero-breadcrumb.light-page-breadcrumb .breadcrumb-sep {
    color: #000000 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}
body.template-reviews .section.section-reviews,
body.template-rate-us .section.section-rate-us {
    padding-top: 16px;
}

/* Detail Hero Badge Row */
.detail-hero-badges-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.detail-meta-tag.tag-fully-booked,
.detail-meta-tag.tag-running-low {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    border: none;
    position: relative !important;
}

/* Active Waitlist Booking CTA & Hint When Fully Booked */
.btn-book.btn-waitlist,
a.btn-book.btn-waitlist {
    background: #ea580c !important;
    border-color: #ea580c !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35) !important;
    transition: all 0.25s ease !important;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-book.btn-waitlist:hover,
a.btn-book.btn-waitlist:hover {
    background: #c2410c !important;
    border-color: #c2410c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45) !important;
}

.booking-waitlist-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 9px 13px;
    border-radius: 8px;
    background: rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.28);
    color: #c2410c;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}
.booking-waitlist-hint svg {
    flex-shrink: 0;
    color: #ea580c;
}

/* Waitlist Form Styles */
.waitlist-badge {
    color: #ea580c !important;
}
.btn-submit.btn-waitlist {
    background: #ea580c !important;
    border-color: #ea580c !important;
}
.btn-submit.btn-waitlist:hover {
    background: #c2410c !important;
    border-color: #c2410c !important;
}

/* Disabled Booking CTA When Past Event */
.btn-fully-booked,
.btn-book.btn-fully-booked,
button.btn-book.btn-fully-booked {
    background: #64748b !important;
    border-color: #64748b !important;
    color: #f1f5f9 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.92 !important;
}

.booking-disabled-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}
.booking-disabled-hint svg {
    flex-shrink: 0;
    color: #dc2626;
}

/* ==========================================================================
   UNIVERSAL SLIDER SYSTEM (Guarantees Horizontal Scrolling & Prevents Breakage)
   ========================================================================== */
.slider-track,
.trips-grid.slider-track,
.reviews-grid.slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 28px !important;
    scrollbar-width: none !important;
}
.slider-track::-webkit-scrollbar,
.trips-grid.slider-track::-webkit-scrollbar,
.reviews-grid.slider-track::-webkit-scrollbar {
    display: none !important;
}
.slider-track .slider-slide,
.reviews-grid.slider-track .review-card,
.trips-grid.slider-track .trip-card {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.slider-track {
    cursor: grab;
}
.slider-track.is-dragging,
.trips-grid.slider-track.is-dragging,
.reviews-grid.slider-track.is-dragging {
    cursor: grabbing !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    user-select: none !important;
}
.slider-track img,
.slider-track a,
.trips-grid.slider-track img,
.trips-grid.slider-track a,
.reviews-grid.slider-track img,
.reviews-grid.slider-track a {
    -webkit-user-drag: none;
    user-select: none;
}

/* ==========================================================================
   CONTENT PAGE (Privacy Policy, Terms, etc. matching Reviews structure)
   ========================================================================== */
.section-content-page {
    padding-top: 16px;
    padding-bottom: 72px;
    background: var(--bg-primary, #ffffff);
}
.content-page-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}
.content-page-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 48px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.85;
    color: #334155;
    font-size: 1.05rem;
}
.content-page-card h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 16px;
}
.content-page-card h2:first-child {
    margin-top: 0;
}
.content-page-card h3 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 28px;
    margin-bottom: 12px;
}
.content-page-card p {
    margin-bottom: 20px;
}
.content-page-card ul,
.content-page-card ol {
    margin: 16px 0 24px 24px;
    padding: 0;
}
.content-page-card li {
    margin-bottom: 10px;
}
.content-page-card a {
    color: #2060b0;
    text-decoration: underline;
}
.content-page-card a:hover {
    color: #143d70;
}

@media (max-width: 768px) {
    .content-page-card {
        padding: 28px 20px;
        border-radius: 16px;
        font-size: 0.975rem;
    }
    .content-page-card h2 {
        font-size: 1.45rem;
    }
}

/* ============================================================
   GALLERY MODAL LIGHTBOX SLIDER (fullscreen interactive slider)
   ============================================================ */
body.gallery-modal-open {
    overflow: hidden !important;
}
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
}
.gallery-lightbox-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 28, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: zoom-out;
}
.gallery-lightbox-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 94vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.gallery-lightbox-figure-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 86vh;
}
.gallery-lightbox-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 76vh;
}
.gallery-lightbox-img {
    max-width: 100%;
    max-height: 76vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
    transition: opacity 0.25s ease;
    user-select: none;
}
.gallery-lightbox-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
}
.gallery-lightbox-counter {
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
}
.gallery-lightbox-caption {
    font-weight: 500;
    color: #f1f5f9;
}
.gallery-lightbox-btn {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gallery-lightbox-btn:hover {
    background: #2060b0;
    color: #ffffff;
    border-color: #2060b0;
    transform: scale(1.08);
}
.gallery-lightbox-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
}
.gallery-lightbox-prev {
    left: 28px;
    width: 52px;
    height: 52px;
}
.gallery-lightbox-next {
    right: 28px;
    width: 52px;
    height: 52px;
}
.gallery-lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.gallery-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: gallerySpin 0.8s linear infinite;
}
@keyframes gallerySpin {
    to { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    .gallery-lightbox-container {
        padding: 12px;
    }
    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }
    .gallery-lightbox-prev {
        left: 8px;
        width: 42px;
        height: 42px;
    }
    .gallery-lightbox-next {
        right: 8px;
        width: 42px;
        height: 42px;
    }
    .gallery-lightbox-img {
        max-height: 68vh;
    }
    .gallery-lightbox-meta {
        font-size: 0.825rem;
        flex-direction: column;
        gap: 6px;
    }
}

/* Mixed Gallery Teasers & Video Lightbox Modal */
.gallery-clickable-teaser {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}
.gallery-video-thumb-container,
.gallery-photo-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.gallery-video-thumb {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-photo-card img {
    transition: transform 0.4s ease;
}
.gallery-clickable-teaser:hover img {
    transform: scale(1.05);
}
.gallery-teaser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all 0.3s ease;
}
.gallery-clickable-teaser:hover .gallery-teaser-overlay {
    background: rgba(15, 23, 42, 0.55);
    opacity: 1;
}
.gallery-play-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}
.gallery-clickable-teaser:hover .gallery-play-icon {
    transform: scale(1.12);
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
    color: var(--gold, #2060b0);
}
.gallery-teaser-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}
.gallery-clickable-teaser:hover .gallery-teaser-icon {
    transform: scale(1.1);
    background: #ffffff;
    color: var(--gold, #2060b0);
}

/* Video Lightbox Modal */
.gallery-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gallery-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 29, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gallery-video-container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-video-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.gallery-video-frame-wrap iframe,
.gallery-video-frame-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.gallery-video-caption {
    margin-top: 14px;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}
body.gallery-modal-open {
    overflow: hidden !important;
}

/* ==========================================================================
   TRIP BOOKING & REGISTRATION FORM STYLES
   ========================================================================== */
.section-trip-booking-form {
    padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 100px);
    background: #f8f9fa;
    position: relative;
}

.booking-form-header {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(32, 96, 176, 0.08);
    color: var(--gold, #2060b0);
    border: 1px solid rgba(32, 96, 176, 0.18);
    margin-bottom: 14px;
}

.form-header-badge.waitlist {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.form-header-title {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-family: var(--font-serif);
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.form-header-subtitle {
    font-size: 1.025rem;
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Card Container */
.trip-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.trip-booking-form {
    width: 100%;
}

.form-fields-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Field Group */
.form-block-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-field-label {
    font-size: 0.925rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: -0.01em;
}

.field-required-marker {
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

/* Inputs & Textareas */
.trip-booking-form input.input-text,
.trip-booking-form input.form-control,
.trip-booking-form textarea.input-text,
.trip-booking-form textarea.form-control {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    padding: 13px 16px !important;
    font-size: 0.95rem !important;
    font-family: var(--font-sans) !important;
    color: #0f172a !important;
    background-color: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.trip-booking-form input.input-text:hover,
.trip-booking-form textarea.input-text:hover {
    border-color: #94a3b8 !important;
    background-color: #ffffff !important;
}

.trip-booking-form input.input-text:focus,
.trip-booking-form textarea.input-text:focus {
    background-color: #ffffff !important;
    border-color: var(--gold, #2060b0) !important;
    box-shadow: 0 0 0 4px rgba(32, 96, 176, 0.12) !important;
}

.trip-booking-form input.input-text::placeholder,
.trip-booking-form textarea.input-text::placeholder {
    color: #94a3b8 !important;
    font-size: 0.925rem !important;
}

.trip-booking-form textarea.input-text {
    resize: vertical !important;
    min-height: 110px !important;
    line-height: 1.6 !important;
}

.form-help-text {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.45;
}

/* Checkbox Card */
.form-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-checkbox-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.form-checkbox-card input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    margin-top: 2px !important;
    border-radius: 6px !important;
    accent-color: var(--gold, #2060b0) !important;
    cursor: pointer !important;
}

.form-checkbox-card .form-checkbox-label {
    font-size: 0.925rem;
    color: #334155;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    flex: 1;
}

/* Radio Group Choices */
.radio-choices-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.radio-choice-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-choice-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.radio-choice-card:has(input[type="radio"]:checked) {
    background: #eff6ff;
    border-color: var(--gold, #2060b0);
    box-shadow: 0 0 0 1px var(--gold, #2060b0);
}

.radio-choice-card input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    accent-color: var(--gold, #2060b0) !important;
    cursor: pointer !important;
}

.radio-choice-card .radio-choice-label {
    font-size: 0.925rem;
    color: #1e293b;
    cursor: pointer;
    font-weight: 500;
    flex: 1;
}

/* Submit Row & Button */
.form-submit-row {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.trip-booking-form .btn-submit {
    width: 100% !important;
    padding: 15px 30px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    border-radius: 100px !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: var(--gold, #2060b0) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(32, 96, 176, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-transform: none !important;
}

.trip-booking-form .btn-submit:hover {
    background: var(--gold-dark, #16437d) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(32, 96, 176, 0.4) !important;
}

.trip-booking-form .btn-submit.btn-waitlist {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35) !important;
}

.trip-booking-form .btn-submit.btn-waitlist:hover {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%) !important;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.45) !important;
}

/* Error and Alert Messages */
.form-messages {
    margin-bottom: 22px;
}

.trip-booking-form .alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trip-booking-form .alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.trip-booking-form .alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Validation Error Highlighting */
.trip-booking-form input.is-invalid,
.trip-booking-form textarea.is-invalid {
    border-color: #ef4444 !important;
    background-color: #fffaf0 !important;
}

.trip-booking-form input.is-invalid:focus,
.trip-booking-form textarea.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

.trip-booking-form .form-checkbox-card:has(input.is-invalid),
.trip-booking-form .radio-choice-card:has(input.is-invalid) {
    border-color: #ef4444 !important;
    background-color: #fffaf0 !important;
}

.trip-booking-form .field-error {
    color: #ef4444 !important;
    font-size: 0.825rem !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* ==========================================================================
   FANTASY ANIMATED SUCCESS BLOCK (MOUNTAINS, CLOUDS, BIRDS, SUN)
   ========================================================================== */
.form-success-fantasy-wrapper {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    animation: fantasyWrapperFade 0.6s ease-out;
}

@keyframes fantasyWrapperFade {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fantasy-scene-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #dbeafe;
}

.fantasy-scene-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Radiant Sun Animation */
.fantasy-sun-glow {
    animation: fantasySunGlow 4s ease-in-out infinite alternate;
    transform-origin: 480px 56px;
}

.fantasy-sun-core {
    filter: drop-shadow(0 0 10px #fbbf24);
}

@keyframes fantasySunGlow {
    0% { transform: scale(0.92); opacity: 0.7; }
    100% { transform: scale(1.18); opacity: 1; }
}

/* Drifting Clouds Animations */
.cloud-drift-1 {
    animation: cloudFloat1 24s linear infinite;
}

.cloud-drift-2 {
    animation: cloudFloat2 32s linear infinite -10s;
}

.cloud-drift-3 {
    animation: cloudFloat3 20s linear infinite -4s;
}

@keyframes cloudFloat1 {
    0% { transform: translate(-120px, 15px) scale(0.7); }
    100% { transform: translate(660px, 15px) scale(0.7); }
}

@keyframes cloudFloat2 {
    0% { transform: translate(-140px, 32px) scale(0.6); }
    100% { transform: translate(660px, 32px) scale(0.6); }
}

@keyframes cloudFloat3 {
    0% { transform: translate(-100px, 48px) scale(0.5); }
    100% { transform: translate(660px, 48px) scale(0.5); }
}

/* Soaring Birds Flocks Animations */
.fantasy-bird {
    transform-origin: center;
}

.bird-flight-1 {
    animation: birdSoarPath1 5.5s ease-in-out infinite alternate;
}

.bird-flight-2 {
    animation: birdSoarPath2 7s ease-in-out infinite alternate 0.6s;
}

.bird-flight-3 {
    animation: birdSoarPath3 4.8s ease-in-out infinite alternate 1.2s;
}

.bird-flight-4 {
    animation: birdSoarPath4 8s ease-in-out infinite alternate 0.3s;
}

@keyframes birdSoarPath1 {
    0% { transform: translate(70px, 42px) scale(0.85) rotate(-3deg); }
    50% { transform: translate(140px, 24px) scale(0.9) rotate(3deg); }
    100% { transform: translate(220px, 35px) scale(0.85) rotate(-1deg); }
}

@keyframes birdSoarPath2 {
    0% { transform: translate(260px, 30px) scale(0.7) rotate(2deg); }
    50% { transform: translate(325px, 16px) scale(0.75) rotate(-4deg); }
    100% { transform: translate(390px, 25px) scale(0.7) rotate(1deg); }
}

@keyframes birdSoarPath3 {
    0% { transform: translate(150px, 22px) scale(0.55) rotate(-4deg); }
    50% { transform: translate(205px, 12px) scale(0.6) rotate(2deg); }
    100% { transform: translate(265px, 18px) scale(0.55) rotate(-2deg); }
}

@keyframes birdSoarPath4 {
    0% { transform: translate(410px, 46px) scale(0.65) rotate(3deg); }
    50% { transform: translate(465px, 32px) scale(0.7) rotate(-2deg); }
    100% { transform: translate(525px, 40px) scale(0.65) rotate(2deg); }
}

.bird-wing-left,
.bird-wing-right {
    transform-origin: 14px 6px;
    animation: wingFlap 1.4s ease-in-out infinite alternate;
}

.bird-flight-2 .bird-wing-left,
.bird-flight-2 .bird-wing-right {
    animation-duration: 1.1s;
}

.bird-flight-3 .bird-wing-left,
.bird-flight-3 .bird-wing-right {
    animation-duration: 0.9s;
}

@keyframes wingFlap {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.45); }
}

/* Floating Celebration Badge - Positioned cleanly OUTSIDE the image container */
.fantasy-badge-wrapper {
    position: relative;
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 25;
}

.fantasy-badge-float {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fantasyBadgePop 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.fantasy-badge-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ffffff;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px -4px rgba(16, 185, 129, 0.4), 0 4px 10px rgba(0, 0, 0, 0.06);
    border: 3.5px solid #ecfdf5;
    position: relative;
    z-index: 2;
}

.fantasy-badge-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #10b981;
    pointer-events: none;
    z-index: 1;
}

.fantasy-badge-ring.ring-1 {
    animation: fantasyRingPulse 2.4s ease-out infinite 0.2s;
}

.fantasy-badge-ring.ring-2 {
    animation: fantasyRingPulse 2.4s ease-out infinite 1.2s;
}

.checkmark-animated-path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheckmark 0.65s cubic-bezier(0.65, 0, 0.45, 1) 0.35s forwards;
}

@keyframes drawCheckmark {
    0% { stroke-dashoffset: 30; }
    100% { stroke-dashoffset: 0; }
}

@keyframes fantasyBadgePop {
    0% { transform: translateX(-50%) scale(0) rotate(-25deg); opacity: 0; }
    60% { transform: translateX(-50%) scale(1.2) rotate(4deg); opacity: 1; }
    100% { transform: translateX(-50%) scale(1) rotate(0deg); opacity: 1; }
}

@keyframes fantasyRingPulse {
    0% { transform: scale(0.85); opacity: 0.85; }
    50% { transform: scale(1.4); opacity: 0.3; }
    100% { transform: scale(1.65); opacity: 0; }
}

/* Success Content & Typography */
.fantasy-success-content {
    padding: 48px 28px 32px;
    text-align: center;
}

.fantasy-success-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.fantasy-success-subtitle {
    font-size: 1.05rem;
    color: #334155;
    max-width: 520px;
    margin: 0 auto 12px;
    line-height: 1.6;
    font-weight: 500;
}

.fantasy-success-note {
    font-size: 0.925rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 26px;
    line-height: 1.55;
}

.success-waitlist-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    margin-bottom: 16px;
}

.fantasy-success-actions {
    margin-top: 8px;
}

.btn-success-return {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    padding: 14px 36px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}











