/* ============================================================
   REEVAH TRAILS - LUXURY DESIGN SYSTEM v2.0
   Cormorant Garamond (display) + Jost (body)
   Palette: Ivory - Beige - Gold - Forest - Charcoal
   ============================================================ */

/* ---- CSS Design Tokens ---- */
:root {
    --ivory: hsl(38, 40%, 97%);
    --beige: hsl(34, 22%, 91%);
    --gold: hsl(40, 42%, 52%);
    --gold-lt: hsl(40, 42%, 70%);
    --gold-dk: hsl(40, 42%, 38%);
    --forest: hsl(150, 38%, 11%);
    --forest-lt: hsl(150, 28%, 20%);
    --charcoal: hsl(210, 12%, 14%);
    --white: #fff;
    --grey-mid: hsl(0, 0%, 48%);
    --grey-lt: hsl(0, 0%, 93%);
    --success: hsl(142, 71%, 45%);

    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Jost', system-ui, sans-serif;

    /* Spacing system */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Border radius */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 9999px;

    /* Transitions & Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition: 0.4s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);

    /* Shadow system */
    --shadow-xs: 0 2px 4px rgba(18, 30, 24, 0.02);
    --shadow-sm: 0 4px 12px rgba(18, 30, 24, 0.04);
    --shadow-md: 0 12px 32px rgba(18, 30, 24, 0.08);
    --shadow-lg: 0 24px 48px rgba(18, 30, 24, 0.12);
    --shadow-xl: 0 32px 64px rgba(18, 30, 24, 0.16);

    /* Gradients & Glass */
    --gold-gradient: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
    --forest-gradient: linear-gradient(135deg, var(--forest-lt) 0%, var(--forest) 100%);
    --glass-bg: rgba(247, 246, 241, 0.85);
    --glass-border: rgba(18, 30, 24, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(18, 30, 24, 0.04);

    /* Focus Ring */
    --focus-ring: 0 0 0 3px rgba(179, 143, 90, 0.4);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-sans);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

ul {
    list-style: none;
}

/* Interactive element accessibility outline */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ---- Typography Scale ---- */
h1 {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.1;
    letter-spacing: .02em;
}

h2 {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: .01em;
}

h3 {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    line-height: 1.2;
}

h4 {
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: 1.35rem;
    line-height: 1.3;
}

h5 {
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .18em;
}

/* Gradient text utility */
h1 em,
h2 em,
h3 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    opacity: 0.9;
}

.eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold);
    margin-bottom: .75rem;
}

/* ---- Helpers ---- */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-gold-light {
    color: var(--gold-lt) !important;
}

.bg-beige {
    background: var(--beige);
}

.bg-forest {
    background: var(--forest);
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-wrapper {
    padding: 10px 0;
}

.section-heading {
    color: var(--forest);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.section-para {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: var(--grey-mid);
}

.gold-divider {
    width: 56px;
    height: 1.5px;
    background: var(--gold);
    margin: 2rem auto 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .16em;
    border-radius: var(--r-full);
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: var(--transition);
    z-index: 1;
}

.btn:hover::after {
    height: 300%;
    opacity: 1;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.btn-primary:hover {
    background: var(--forest-lt);
    border-color: var(--forest-lt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary-hero {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost-hero {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .6);
}

.btn-ghost-hero:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-gold-outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-forest {
    background: var(--forest);
    color: var(--white);
}

.btn-forest:hover {
    background: var(--forest-lt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-forest {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn-outline-forest:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-wa {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-wa:hover {
    filter: brightness(1.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(66, 183, 42, .35);
}

.btn-sm {
    padding: 10px 24px;
    font-size: .75rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---- Page Loader ---- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--forest);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.done {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--ff-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: .3em;
    color: var(--white);
    margin-bottom: 24px;
}

.loader-bar {
    width: 200px;
    height: 1.5px;
    background: rgba(255, 255, 255, .2);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: loaderFill 1.4s var(--ease-in-out) forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

/* ---- Sticky Header ---- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    z-index: 1000;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.main-header.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1.5px solid rgba(179, 143, 90, 0.15);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 1;
    min-width: 0;
    text-decoration: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-title {
    font-family: var(--ff-serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .12em;
    color: var(--forest);
    line-height: 1.1;
    white-space: nowrap;
}

.brand-tagline {
    font-size: .52rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold-dk);
    white-space: nowrap;
    overflow: visible;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 14px;
    }

    /* Shift logo left on mobile */
    .brand-tagline {
        display: block;
        font-size: .44rem;
        letter-spacing: .12em;
    }

    .brand-title {
        font-size: 1.2rem;
    }
}

.navigation-menu ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: .78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--charcoal);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold);
}

.nav-phone-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--forest-lt);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-phone-link:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .nav-phone-link {
        display: none;
    }
}

.mobile-only-cta {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-only-cta {
        display: block;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ---- Main offset ---- */
.app-main {
    margin-top: 80px;
}

/* ---- Tab Pages ---- */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeUp .55s var(--ease-out) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Scroll Reveal ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   HOME - Hero Carousel
   ========================================== */
.hero-carousel {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 580px;
    overflow: hidden;
}

/* Video hero shares same sizing as hero-carousel */
.video-hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 580px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.vh-slides {
    position: relative;
    height: 100%;
    z-index: 2;
}

.vh-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.vh-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

/* The single video wrapper behind all slides */
.vh-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.vh-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Minimum size to cover screen */
    opacity: 0;
    transition: opacity 2s ease;
}

.vh-video-wrap iframe.video-ready {
    opacity: 1;
}

/* Fallback: show iframe after a delay even if video-ready class wasn't set */
.vh-video-wrap iframe.video-loaded {
    opacity: 1;
}

.vh-slide-inner {
    text-align: left;
    color: var(--white);
    padding: 0 24px;
    max-width: 860px;
    transform: translateY(0);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-eyebrow {
    font-size: .82rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold-lt);
    display: block;
    margin-bottom: 16px;
}

.hero-headline {
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: 0;
    margin-right: auto;
}

.hero-actions,
.vh-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .25);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 36px;
    right: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .6);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden;
}

.scroll-line span {
    display: block;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* ---- Stats Strip ---- */
.stats-strip {
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 12px 48px;
}

.stat-item p {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

.stat-number {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
}

.stat-plus {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

/* ---- Services 4-card Grid (Home) ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.svc-img {
    height: 200px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.svc-card:hover .svc-img img {
    transform: scale(1.06);
}

.svc-body {
    padding: 28px 24px 24px;
}

.svc-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.svc-body h3 {
    font-size: 1.45rem;
    color: var(--forest);
    margin-bottom: 10px;
}

.svc-body p {
    font-size: .82rem;
    color: var(--grey-mid);
    margin-bottom: 18px;
    line-height: 1.6;
}

.svc-cta {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold);
    font-weight: 500;
}

/* ---- Featured Packages (Home) ---- */
.feat-pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.feat-pkg-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feat-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feat-pkg-card.dark {
    background: var(--forest);
    color: var(--white);
}

.feat-pkg-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.feat-pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.feat-pkg-card:hover .feat-pkg-img img {
    transform: scale(1.05);
}

.pkg-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--white);
    color: var(--charcoal);
    padding: 4px 14px;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 20px;
}

.gold-label {
    background: var(--gold);
    color: var(--white);
}

.feat-pkg-body {
    padding: 30px;
}

.pkg-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    gap: 12px;
}

.pkg-title-row h3 {
    color: var(--forest);
}

.feat-pkg-card.dark .pkg-title-row h3 {
    color: var(--white);
}

.pkg-price {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
}

.pkg-price.gold {
    color: var(--gold);
}

.feat-pkg-body>p {
    font-size: .88rem;
    color: var(--grey-mid);
    margin-bottom: 20px;
}

.feat-pkg-card.dark .feat-pkg-body>p {
    color: rgba(255, 255, 255, .65);
}

.incl-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey-lt);
}

.feat-pkg-card.dark .incl-list {
    border-bottom-color: rgba(255, 255, 255, .1);
}

.incl-list li {
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.incl-list li i {
    color: var(--forest);
}

.incl-list li i.gold {
    color: var(--gold);
}

.pkg-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
}

.wa-link {
    font-size: .78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
}

.wa-link.gold {
    color: var(--gold);
}

/* ---- Testimonials (Home) ---- */
.testimonial-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-slider-inner {
    position: relative;
    min-height: 180px;
}

.testi-card {
    display: none;
}

.testi-card.active {
    display: block;
    animation: fadeUp .5s var(--ease-out);
}

.stars {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

blockquote {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.8vw, 1.7rem);
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 24px;
}

cite {
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-lt);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.testi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ---- CTA Strip (Home) ---- */
.cta-strip {
    background: var(--beige);
    padding: 70px 0;
}

.cta-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-strip h2 {
    color: var(--forest);
    margin-bottom: 8px;
}

.cta-strip p {
    color: var(--grey-mid);
}

.cta-strip-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   INNER PAGE HERO
   ========================================== */
.inner-page-hero {
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px 28px;
}

.inner-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    color: var(--white);
}

.inner-hero-content h1 {
    margin-top: 8px;
}

/* ==========================================
   ABOUT
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text h2 {
    color: var(--forest);
}

.about-text h3 {
    font-size: 1.6rem;
    color: var(--forest);
    margin: 30px 0 12px;
}

.about-text p {
    color: var(--grey-mid);
    margin-bottom: 18px;
}

.about-image-col {
    position: relative;
    padding-top: 20px;
}

.about-img-wrap {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
}

.about-gold-frame {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold);
    border-radius: var(--r-md);
    z-index: -1;
    pointer-events: none;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    left: auto;
    background: var(--forest);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-num {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.badge-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.value-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.value-card h4 {
    color: var(--forest);
    margin-bottom: 12px;
}

.value-card p {
    font-size: .88rem;
    color: var(--grey-mid);
}

/* Journey steps */
.journey-steps {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    max-width: 180px;
    text-align: center;
}

.step-num {
    font-family: var(--ff-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.step-body h4 {
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 8px;
}

.step-body p {
    font-size: .78rem;
    color: var(--grey-mid);
}

.step-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    padding: 0 12px;
    opacity: .5;
}

/* ==========================================
   SERVICES
   ========================================== */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 30px 0;
}

.svc-row.reverse {
    direction: rtl;
}

.svc-row.reverse .svc-row-content {
    direction: ltr;
}

.svc-divider {
    height: 1px;
    background: var(--grey-lt);
}

.svc-row-img {
    border-radius: var(--r-md);
    overflow: hidden;
    height: auto;
    box-shadow: var(--shadow-md);
}

.svc-row-img img {
    width: 100%;
    height: auto;
    display: block;
}

.svc-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(18, 30, 24, .05);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.svc-row-content h2 {
    color: var(--forest);
    margin-bottom: 14px;
}

.svc-row-content p {
    color: var(--grey-mid);
    margin-bottom: 18px;
}

.svc-bullets {
    margin: 18px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-bullets li {
    font-size: .88rem;
    padding-left: 22px;
    position: relative;
    color: var(--charcoal);
}

.svc-bullets li::before {
    content: '';
    color: var(--gold);
    position: absolute;
    left: 2px;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    background: none;
    border: 1.5px solid var(--grey-lt);
    padding: 8px 22px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    color: var(--charcoal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gal-item {
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.gal-item.tall {
    grid-row: span 2;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.gal-item:hover img {
    transform: scale(1.06);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 30, 24, .8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay span {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    color: var(--white);
}

.gal-overlay i {
    color: var(--gold);
    font-size: 1rem;
}

/* ==========================================
   PACKAGES
   ========================================== */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 36px;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pkg-card.dark {
    background: var(--forest);
    color: var(--white);
}

.pkg-card-img {
    height: 260px;
    overflow: hidden;
}

.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.pkg-card:hover .pkg-card-img img {
    transform: scale(1.05);
}

.pkg-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 20px;
    border-bottom: 1px solid var(--grey-lt);
    padding-bottom: 20px;
}

.pkg-card.dark .pkg-card-head {
    border-bottom-color: rgba(255, 255, 255, .1);
}

.pkg-tag {
    display: inline-block;
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 3px 10px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    margin-bottom: 8px;
}

.gold-tag {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.pkg-card-head h3 {
    color: var(--forest);
}

.pkg-card.dark .pkg-card-head h3 {
    color: var(--white);
}

.pkg-price-box span {
    display: block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grey-mid);
}

.pkg-price-box strong {
    font-family: var(--ff-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
}

.pkg-card-body>p {
    font-size: .88rem;
    color: var(--grey-mid);
    margin-bottom: 22px;
}

.pkg-card.dark .pkg-card-body>p {
    color: rgba(255, 255, 255, .65);
}

.pkg-incl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.pkg-incl li {
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-incl li i {
    color: var(--forest);
}

.pkg-card.dark .pkg-incl li i {
    color: var(--gold);
}

.pkg-footer {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--grey-lt);
}

.pkg-card.dark .pkg-footer {
    border-top-color: rgba(255, 255, 255, .1);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border: 1.5px solid var(--success);
    color: var(--success);
    border-radius: var(--r-sm);
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: var(--transition);
}

.wa-btn:hover {
    background: var(--success);
    color: var(--white);
}

.wa-btn.gold-wa {
    border-color: var(--gold);
    color: var(--gold);
}

.wa-btn.gold-wa:hover {
    background: var(--gold);
    color: var(--white);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
}

.contact-form-col h2,
.contact-details-col h2 {
    color: var(--forest);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.luxury-form label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--grey-lt);
    border-radius: var(--r-sm);
    font-size: .9rem;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color .2s ease;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(179, 143, 90, .1);
}

.luxury-form input.error,
.luxury-form textarea.error {
    border-color: #e05252;
}

.form-success {
    display: none;
    padding: 16px 20px;
    background: #f0fdf4;
    border: 1px solid var(--success);
    border-radius: var(--r-sm);
    color: #166534;
    font-size: .88rem;
    align-items: center;
    gap: 10px;
}

.form-success.show {
    display: flex;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold-lt);
    transform: translateX(4px);
}

.cc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 30, 24, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.cc-icon.green {
    color: var(--success);
}

.cc-icon.insta {
    color: #e1306c;
}

.cc-text span {
    display: block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--grey-mid);
    margin-bottom: 3px;
}

.cc-text strong {
    font-size: .95rem;
    font-weight: 500;
}

.map-placeholder {
    height: 200px;
    background: var(--beige);
    border-radius: var(--r-md);
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle, var(--gold-lt) 0.5px, transparent 0.5px);
    background-size: 18px 18px;
    background-color: var(--beige);
}

.map-pin-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 500;
    white-space: nowrap;
}

.map-pin-card i {
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    margin-top: 80px;
    border-top: 2px solid var(--gold);
}

.site-footer h5 {
    color: var(--gold) !important;
    margin-bottom: 20px;
}

.footer-top {
    background: var(--forest-gradient);
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
    gap: 52px;
}

.footer-brand p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--white);
    background: var(--gold-gradient);
    box-shadow: 0 0 15px rgba(179, 143, 90, 0.4);
    transform: translateY(-3px);
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.footer-nav a,
.footer-services a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    transition: all 0.3s;
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--gold-lt);
    padding-left: 6px;
}

.footer-contact-info p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-info i {
    color: var(--gold);
    width: 16px;
}

/* Dedicated Luxury Footer WhatsApp Button */
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-wa-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.footer-wa-btn i {
    color: var(--white) !important;
    font-size: 1.05rem;
}

/* Footer Newsletter Section */
.footer-newsletter {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.footer-newsletter h5 {
    margin-bottom: 8px;
}

.newsletter-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 8px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    padding: 11px 16px;
    border-radius: var(--r-xs) 0 0 var(--r-xs);
    color: var(--white);
    font-size: 0.85rem;
    flex: 1;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-lt);
}

.newsletter-btn {
    background: var(--gold-gradient);
    border: none;
    padding: 11px 20px;
    border-radius: 0 var(--r-xs) var(--r-xs) 0;
    color: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
    box-shadow: 0 0 15px rgba(179, 143, 90, 0.3);
}

/* Footer Bottom Legal Links */
.footer-legal-links {
    display: flex;
    gap: 16px;
    font-size: 0.76rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.45) !important;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--gold-lt) !important;
}

.footer-bottom {
    background: hsl(150, 38%, 6%);
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
}

/* ==========================================
   FLOATING WHATSAPP
   ========================================== */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--success);
    color: var(--white);
    padding: 13px 22px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(66, 183, 42, .35);
    font-size: .82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: var(--transition);
    animation: pulseWA 3s ease infinite;
}

.float-wa i {
    font-size: 1.3rem;
}

.float-wa:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(66, 183, 42, .45);
}

@keyframes pulseWA {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(66, 183, 42, .35);
    }

    50% {
        box-shadow: 0 8px 40px rgba(66, 183, 42, .55);
    }
}

/* ==========================================
   ENQUIRY MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 30, 24, .94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-panel {
    background: var(--ivory);
    border-radius: var(--r-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 460px;
    position: relative;
    transform: scale(.92);
    transition: transform .4s var(--ease-out);
    box-shadow: var(--shadow-lg);
    max-height: 92vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-panel {
    transform: scale(1);
}

.modal-x {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--grey-mid);
    line-height: 1;
    transition: color .2s;
}

.modal-x:hover {
    color: var(--charcoal);
}

.modal-logo {
    font-family: var(--ff-sans);
    font-size: .7rem;
    letter-spacing: .3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-title {
    color: var(--forest);
    margin-bottom: 6px;
}

.modal-sub {
    font-size: .85rem;
    color: var(--grey-mid);
    margin-bottom: 28px;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 12, .96);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
    animation: fadeUp .3s var(--ease-out);
}

.lightbox-x {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2.4rem;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: color .2s;
}

.lightbox-x:hover {
    color: var(--gold);
}

.lightbox-inner {
    text-align: center;
    max-width: 90vw;
}

.lightbox-inner img {
    max-height: 75vh;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .75);
    margin-top: 16px;
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--charcoal);
    border-top: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 28px;
    transform: translateY(100%);
    transition: transform .6s var(--ease-out);
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-bar p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
}

.cookie-bar a {
    color: var(--gold-lt);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-decline {
    background: none;
    border: none;
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cookie-decline:hover {
    color: rgba(255, 255, 255, .7);
}

/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .svc-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .svc-row.reverse {
        direction: ltr;
    }

    .svc-row-img {
        height: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feat-pkg-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 12px 24px;
    }

    .main-header {
        height: 72px;
    }

    .app-main {
        margin-top: 72px;
    }

    .hero-carousel {
        height: calc(100vh - 72px);
    }

    .navigation-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s var(--ease-in-out), padding .3s;
        box-shadow: var(--shadow-md);
        border-bottom: 1.5px solid rgba(179, 143, 90, 0.15);
    }

    .navigation-menu.open {
        max-height: 460px;
        padding: 24px 0 36px;
    }

    .navigation-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    /* Stagger fade-in for mobile menu items */
    .navigation-menu.open li {
        animation: mobileNavFadeIn 0.4s ease forwards;
        opacity: 0;
    }

    .navigation-menu.open li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navigation-menu.open li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navigation-menu.open li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .navigation-menu.open li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .navigation-menu.open li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .navigation-menu.open li:nth-child(6) {
        animation-delay: 0.3s;
    }

    .navigation-menu.open li:nth-child(7) {
        animation-delay: 0.35s;
    }

    @keyframes mobileNavFadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (768px)
   ========================================== */
@media (max-width: 768px) {
    .stats-strip {
        flex-direction: column;
        gap: 0;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .stat-item {
        padding: 18px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gal-item.tall {
        grid-row: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .float-wa-label {
        display: none;
    }

    .float-wa {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .inner-page-hero {
        height: 280px;
        padding: 36px 20px;
        background-position: left center;
    }

    .about-badge-float {
        right: 10px;
        left: auto;
        bottom: -16px;
        padding: 14px 18px;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-btns {
        justify-content: center;
    }

    .section-wrapper {
        padding: 5px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Horizontal Scrollable Grids on Mobile */
    .dest-grid,
    .hiw-grid,
    .home-pkg-grid,
    .testi-grid,
    .insta-grid,
    .pkg-cards-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        gap: 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .dest-grid::-webkit-scrollbar,
    .hiw-grid::-webkit-scrollbar,
    .home-pkg-grid::-webkit-scrollbar,
    .testi-grid::-webkit-scrollbar,
    .insta-grid::-webkit-scrollbar,
    .pkg-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .dest-card,
    .hiw-step,
    .home-pkg-card,
    .testi-static-card,
    .insta-item,
    .pkg-ecard {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 260px;
    }

    .dest-grid {
        align-items: stretch;
    }

    .dest-card.tall-dest {
        height: auto;
        min-height: 320px;
    }

    .insta-item {
        flex: 0 0 45%;
        min-width: 140px;
    }
}

/* ==========================================
   HOME - Brand Intro Section
   ========================================== */
.home-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-intro-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 500;
}

.intro-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.intro-img-stack {
    position: relative;
    padding-bottom: 32px;
}

.intro-img-main {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.intro-img-side {
    position: absolute;
    bottom: 0;
    right: -28px;
    width: 48%;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
    object-fit: cover;
    border: 5px solid var(--white);
}

.intro-badge {
    position: absolute;
    top: 24px;
    left: -22px;
    background: var(--forest);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-badge i {
    font-size: 1.5rem;
    color: var(--gold);
}

.intro-badge strong {
    display: block;
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 400;
}

.intro-badge span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .6);
}

/* ==========================================
   HOME - Why Choose Us
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-img-col {
    position: relative;
}

.why-img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.why-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--forest);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(18, 30, 24, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.why-text h4 {
    color: var(--forest);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.why-text p {
    font-size: .88rem;
    color: var(--grey-mid);
    line-height: 1.65;
}

/* ==========================================
   HOME - Popular Destinations
   ========================================== */
.dest-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.dest-card {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.dest-card.tall-dest {
    grid-row: span 2;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 24, 18, .92) 0%, rgba(12, 24, 18, .08) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    color: var(--white);
}

.dest-overlay h3 {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 5px;
}

.dest-overlay p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.dest-tag {
    display: inline-block;
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 4px 12px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    color: var(--white);
    backdrop-filter: blur(4px);
}

/* ==========================================
   HOME - How It Works
   ========================================== */
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 56px;
}

.hiw-step {
    background: rgba(255, 255, 255, .06);
    border-radius: var(--r-md);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: var(--transition);
}

.hiw-step:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.hiw-num {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.hiw-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.hiw-step h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hiw-step p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

.hiw-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 1.1rem;
    color: var(--gold-lt);
    padding-top: 60px;
    opacity: .5;
}

/* ==========================================
   HOME - 4 Packages Grid
   ========================================== */
.home-pkg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-pkg-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(18, 30, 24, 0.05);
}

.home-pkg-card:hover,
.home-pkg-card.dark {
    background: var(--forest) !important;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.1);
}

.hpkg-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.hpkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.home-pkg-card:hover .hpkg-img img {
    transform: scale(1.06);
}

.hpkg-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    color: var(--charcoal);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
}

.hpkg-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hpkg-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    gap: 8px;
}

.hpkg-row h3 {
    font-size: 1.25rem;
    color: var(--forest);
    transition: color 0.3s ease;
}

.home-pkg-card:hover .hpkg-row h3,
.home-pkg-card.dark .hpkg-row h3 {
    color: var(--white) !important;
}

.hpkg-price {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
}

.hpkg-body>p {
    font-size: .8rem;
    color: var(--grey-mid);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.home-pkg-card:hover .hpkg-body>p,
.home-pkg-card.dark .hpkg-body>p {
    color: rgba(255, 255, 255, .7) !important;
}

.hpkg-incl {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.hpkg-incl li {
    font-size: .78rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.home-pkg-card:hover .hpkg-incl li,
.home-pkg-card.dark .hpkg-incl li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hpkg-incl li i {
    color: var(--forest);
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.home-pkg-card:hover .hpkg-incl li i,
.home-pkg-card.dark .hpkg-incl li i {
    color: var(--gold) !important;
}

.hpkg-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.home-pkg-card:hover .hpkg-footer .btn-forest,
.home-pkg-card.dark .hpkg-footer .btn-forest {
    background: var(--gold-gradient) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

.home-pkg-card:hover .hpkg-footer .btn-forest:hover,
.home-pkg-card.dark .hpkg-footer .btn-forest:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%) !important;
    box-shadow: 0 4px 12px rgba(179, 143, 90, 0.3) !important;
}

.home-pkg-card:hover .hpkg-footer .wa-link,
.home-pkg-card.dark .hpkg-footer .wa-link {
    color: var(--gold) !important;
}

/* ==========================================
   HOME - Testimonials Grid
   ========================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-static-card {
    background: rgba(255, 255, 255, .07);
    border-radius: var(--r-md);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: var(--transition);
}

.testi-static-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
}

.testi-static-card .stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testi-static-card p {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 1.1rem;
}

.testi-author strong {
    display: block;
    font-size: .88rem;
    color: var(--white);
}

.testi-author span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
}

/* ==========================================
   HOME - Instagram Grid
   ========================================== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--r-sm);
    position: relative;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-hover {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 18, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    font-size: 1.5rem;
    color: var(--white);
}

.insta-item:hover .insta-hover {
    opacity: 1;
}

/* ==========================================
   ADDITIONAL BREAKPOINTS
   ========================================== */
@media (max-width: 1200px) {
    .home-pkg-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dest-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }

    .dest-card.tall-dest {
        grid-row: span 1;
    }

    .hiw-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hiw-arrow {
        display: none;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-img-side {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ==========================================
   PACKAGES PAGE - Detail Card Layout
   ========================================== */
.pkg-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pkg-detail-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .06);
}

.pkg-detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pkg-detail-card.dark {
    background: var(--forest);
    color: var(--white);
}

.pkg-detail-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.pkg-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.pkg-detail-card:hover .pkg-detail-img img {
    transform: scale(1.05);
}

.pkg-detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
}

.pkg-detail-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--grey-lt);
    flex-wrap: wrap;
}

.pkg-detail-card.dark .pkg-detail-header {
    border-bottom-color: rgba(255, 255, 255, .12);
}

.pkg-detail-header h3 {
    color: var(--forest);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.pkg-detail-card.dark .pkg-detail-header h3 {
    color: var(--white);
}

.pkg-duration {
    font-size: .8rem;
    color: var(--grey-mid);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pkg-detail-card.dark .pkg-duration {
    color: rgba(255, 255, 255, .55);
}

.pkg-duration i {
    color: var(--gold);
}

/* Itinerary days */
.pkg-itinerary {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.itin-day {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--grey-lt);
    align-items: start;
}

.pkg-detail-card.dark .itin-day {
    border-bottom-color: rgba(255, 255, 255, .08);
}

.itin-day:last-child {
    border-bottom: none;
}

.itin-label {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
    background: var(--gold);
    padding: 3px 6px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    margin-top: 2px;
    white-space: nowrap;
}

.itin-day strong {
    font-family: var(--ff-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--forest);
    display: block;
    margin-bottom: 2px;
}

.pkg-detail-card.dark .itin-day strong {
    color: var(--gold-lt);
}

.itin-day p {
    font-size: .8rem;
    color: var(--grey-mid);
    line-height: 1.55;
}

.pkg-detail-card.dark .itin-day p {
    color: rgba(255, 255, 255, .55);
}

/* Highlights */
.pkg-highlights {
    margin-bottom: 18px;
}

.pkg-highlights h5 {
    color: var(--forest);
    margin-bottom: 10px;
}

.pkg-detail-card.dark .pkg-highlights h5 {
    color: var(--gold-lt);
}

/* Includes row */
.pkg-incl-row {
    background: var(--beige);
    border-radius: var(--r-sm);
    padding: 16px 18px;
    margin-bottom: 20px;
}

.pkg-detail-card.dark .pkg-incl-row {
    background: rgba(255, 255, 255, .05);
}

.pkg-incl-col h5 {
    color: var(--forest);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pkg-detail-card.dark .pkg-incl-col h5 {
    color: var(--gold);
}

.pkg-incl-col h5 i {
    color: var(--gold);
}

.pkg-incl-col ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pkg-incl-col li {
    font-size: .82rem;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pkg-detail-card.dark .pkg-incl-col li {
    color: rgba(255, 255, 255, .7);
}

.pkg-incl-col li::before {
    content: 'v';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* Exclusions box */
.exclusions-box {
    margin-top: 56px;
    background: var(--beige);
    border-radius: var(--r-md);
    padding: 36px 40px;
    border-left: 4px solid var(--gold);
}

.exclusions-box h4 {
    color: var(--forest);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.exclusions-box h4 i {
    color: var(--gold-dk);
}

.excl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}

.excl-grid span {
    font-size: .83rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.excl-grid span i {
    color: #c9534f;
    font-size: .75rem;
    flex-shrink: 0;
}

/* Package filter JS */
.pkg-detail-card.pkg-hidden {
    display: none;
}

@media (max-width: 1024px) {
    .pkg-detail-grid {
        grid-template-columns: 1fr;
    }

    .excl-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .pkg-detail-header {
        flex-direction: column;
    }

    .excl-grid {
        grid-template-columns: 1fr;
    }

    .pkg-detail-body {
        padding: 20px;
    }
}

/* ==========================================
   PACKAGES PAGE v3 - Elegant Card Grid
   ========================================== */

/* Filter bar */
.pkg-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--grey-lt);
    position: sticky;
    top: 80px;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.pkg-filter-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .pkg-filter-bar {
        position: relative;
        top: 0;
        /* Remove sticky on mobile */
    }

    .pkg-filter-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 12px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .pkg-filter-inner::-webkit-scrollbar {
        display: none;
    }

    .pkg-filter-btn {
        flex-shrink: 0;
    }
}

.pkg-filter-btn {
    background: none;
    border: 1.5px solid var(--grey-lt);
    padding: 9px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--charcoal);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}

.pkg-filter-btn span {
    background: var(--grey-lt);
    color: var(--grey-mid);
    font-size: .65rem;
    padding: 1px 7px;
    border-radius: 20px;
    transition: var(--transition);
}

.pkg-filter-btn:hover,
.pkg-filter-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.pkg-filter-btn:hover span,
.pkg-filter-btn.active span {
    background: rgba(255, 255, 255, .2);
    color: var(--white);
}

/* Cards grid */
.pkg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Elegant Package Card */
.pkg-ecard {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .05);
}

.pkg-ecard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pkg-ecard-featured {
    border: 2px solid var(--gold);
}

.pkg-ecard-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.pkg-ecard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease-out);
}

.pkg-ecard:hover .pkg-ecard-img img {
    transform: scale(1.07);
}

.pkg-ecard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 15, .85) 0%, rgba(10, 20, 15, .15) 55%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: opacity .35s ease;
}

.pkg-ecard:hover .pkg-ecard-overlay {
    opacity: 1;
}

.pkg-ecard-cat {
    align-self: flex-start;
    background: var(--gold);
    color: var(--white);
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 4px 12px;
    border-radius: 20px;
}

.pkg-view-btn {
    align-self: center;
    background: var(--white);
    color: var(--forest);
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-view-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.pkg-ecard-body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-ecard-meta {
    font-size: .72rem;
    color: var(--gold-dk);
    font-weight: 500;
    letter-spacing: .06em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.pkg-ecard-meta i {
    font-size: .7rem;
}

.pkg-ecard-title {
    font-family: var(--ff-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 8px;
    line-height: 1.25;
}

.pkg-ecard-desc {
    font-size: .82rem;
    color: var(--grey-mid);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.pkg-ecard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--grey-lt);
    gap: 10px;
}

.pkg-ecard-incl {
    font-size: .7rem;
    color: var(--grey-mid);
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.pkg-ecard-incl i {
    color: var(--gold);
    font-size: .65rem;
}

.pkg-ecard-cta {
    background: var(--forest);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    padding: 9px 18px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pkg-ecard-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Hidden filter state */
.pkg-ecard.pkg-hidden {
    display: none;
}

/* Bottom CTA */
.pkg-bottom-cta {
    margin-top: 60px;
    background: var(--forest);
    border-radius: var(--r-md);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pkg-bottom-cta h3 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1.6rem;
}

.pkg-bottom-cta p {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.pkg-bottom-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ==========================================
   PACKAGE DETAIL PANEL (Slide-over)
   ========================================== */
.pkg-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 2500;
    background: rgba(10, 20, 15, .7);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.pkg-panel-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.pkg-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(680px, 92vw);
    background: var(--ivory);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .25);
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.pkg-panel-overlay.open .pkg-panel {
    transform: translateX(0);
}

.pkg-panel-close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 10;
    background: var(--white);
    border: 1px solid var(--grey-lt);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pkg-panel-close:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.pkg-panel-scroll {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-lt) transparent;
}

/* Panel inner content */
.panel-hero {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.panel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 15, .92) 0%, rgba(10, 20, 15, .2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 32px;
}

.panel-hero-cat {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold-lt);
    margin-bottom: 8px;
}

.panel-hero-title {
    font-family: var(--ff-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
}

.panel-hero-meta {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 8px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.panel-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-hero-meta i {
    color: var(--gold);
}

.panel-body {
    padding: 32px;
}

.panel-incl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    background: var(--beige);
    border-radius: var(--r-sm);
    padding: 20px 22px;
    margin-bottom: 28px;
}

.panel-incl-item {
    font-size: .83rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
}

.panel-incl-item i {
    color: var(--gold);
    font-size: .75rem;
}

.panel-section-title {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey-lt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-section-title i {
    color: var(--gold);
    font-size: 1rem;
}

/* Day-by-day itinerary (panel) */
.panel-itinerary {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.panel-day {
    display: flex;
    gap: 0;
    position: relative;
}

.panel-day:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: var(--grey-lt);
    z-index: 0;
}

.panel-day-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: .9rem;
    font-weight: 400;
    flex-shrink: 0;
    z-index: 1;
    margin-right: 16px;
    margin-top: 2px;
}

.panel-day-content {
    padding-bottom: 22px;
    flex: 1;
}

.panel-day-content strong {
    display: block;
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    color: var(--forest);
    margin-bottom: 4px;
    font-weight: 400;
}

.panel-day-content p {
    font-size: .83rem;
    color: var(--grey-mid);
    line-height: 1.65;
}

/* Highlights list (panel) */
.panel-highlights {
    margin-bottom: 28px;
}

.panel-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .85rem;
    color: var(--charcoal);
}

.panel-highlight-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Panel footer actions */
.panel-actions {
    display: flex;
    gap: 14px;
    padding: 24px 32px;
    border-top: 1px solid var(--grey-lt);
    background: var(--white);
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Exclusions note */
.panel-exclusions {
    background: hsl(0, 0%, 98%);
    border-radius: var(--r-sm);
    padding: 18px 22px;
    margin-bottom: 28px;
    border-left: 3px solid #e05252;
}

.panel-exclusions h5 {
    color: var(--charcoal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-exclusions h5 i {
    color: #e05252;
}

.panel-excl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.panel-excl-grid span {
    font-size: .78rem;
    color: var(--grey-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-excl-grid span i {
    color: #e05252;
    font-size: .7rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .pkg-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .pkg-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .panel-incl {
        grid-template-columns: 1fr;
    }

    .panel-excl-grid {
        grid-template-columns: 1fr;
    }

    .pkg-bottom-cta {
        flex-direction: column;
        text-align: center;
    }

    .pkg-bottom-btns {
        justify-content: center;
    }
}

/* ==========================================
   PACKAGE PANEL - Inline Enquiry Form
   ========================================== */
.panel-enquiry-form {
    background: var(--forest);
    border-radius: var(--r-md);
    padding: 28px 32px;
    margin: 0 32px 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: slideDownForm .35s var(--ease-out);
}

@keyframes slideDownForm {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-enquiry-form.show {
    display: flex;
}

.panel-enquiry-form h4 {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 4px;
}

.panel-enquiry-form p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 4px;
}

.panel-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.panel-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.panel-form-group label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.panel-form-group input,
.panel-form-group select,
.panel-form-group textarea {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-size: .88rem;
    color: var(--white);
    font-family: var(--ff-sans);
    transition: border-color .2s;
}

.panel-form-group input::placeholder,
.panel-form-group textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.panel-form-group input:focus,
.panel-form-group select:focus,
.panel-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(179, 143, 90, .2);
}

.panel-form-group select option {
    background: var(--forest);
    color: var(--white);
}

.panel-form-group input.p-error,
.panel-form-group textarea.p-error {
    border-color: #e05252;
}

.panel-form-submit-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
}

.panel-form-success {
    display: none;
    background: rgba(66, 183, 42, .12);
    border: 1px solid rgba(66, 183, 42, .4);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    color: var(--white);
    font-size: .85rem;
    align-items: center;
    gap: 10px;
}

.panel-form-success.show {
    display: flex;
}

.panel-form-success i {
    color: var(--success);
}

@media (max-width: 520px) {
    .panel-form-row {
        grid-template-columns: 1fr;
    }

    .panel-enquiry-form {
        margin: 0 20px 20px;
        padding: 22px 18px;
    }
}

/* ==========================================
   VIDEO HERO - YouTube Background Player
   ========================================== */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--forest);
}

/* YouTube iframe fills entire background */
.vh-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#ytPlayer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    /* 16:9 aspect ratio */
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.35);
}

#ytPlayer iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* Dark overlay so text is always readable */
.vh-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(10, 20, 15, 0.35) 0%,
            rgba(10, 20, 15, 0.55) 50%,
            rgba(10, 20, 15, 0.80) 100%);
}

/* Text slides */
.vh-slides {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.vh-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
}

.vh-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.vh-slide-inner {
    max-width: 680px;
}

.vh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold-lt);
    margin-bottom: 20px;
    font-weight: 500;
}

.vh-eyebrow i {
    font-size: .8rem;
}

.vh-title {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.08;
    font-weight: 300;
    margin-bottom: 22px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.vh-title em {
    color: var(--gold-lt);
    font-style: italic;
    display: block;
}

.vh-desc {
    font-size: clamp(.88rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 36px;
}

.vh-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Controls bar at bottom */
.vh-controls {
    position: absolute;
    bottom: 52px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 32px;
}

.vh-arrow {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: .9rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vh-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.vh-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vh-dot {
    background: rgba(255, 255, 255, .25);
    border: none;
    height: 3px;
    border-radius: 3px;
    cursor: pointer;
    transition: all .4s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.vh-dot span {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10, 20, 15, .85);
    color: var(--white);
    font-size: .65rem;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .08em;
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
}

.vh-dot:hover span,
.vh-dot.active span {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vh-dot.active {
    background: var(--gold);
    width: 36px;
}

.vh-dot:not(.active) {
    width: 18px;
}

.vh-dot:hover:not(.active) {
    background: rgba(255, 255, 255, .5);
}

/* Mute button */
.vh-mute-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 4;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: .85rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vh-mute-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Fallback when video not loaded */
.video-hero.no-video {
    background-image: linear-gradient(160deg, rgba(10, 20, 15, 0.72) 0%, rgba(10, 20, 15, 0.45) 100%),
        url('asset/kedarnath.jpg');
    background-size: cover;
    background-position: center;
}

/* Progress bar under active slide */
.vh-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    z-index: 4;
    animation: vhProgress 10s linear;
}

@keyframes vhProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Service Bullets Customization */
.svc-bullets {
    list-style: none;
    padding-left: 0;
}

.svc-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.svc-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    /* Align with middle of text */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
    /* Black dot */
}

@media (max-width: 768px) {
    .vh-slide {
        padding: 0 6%;
    }

    .vh-controls {
        bottom: 32px;
    }

    .vh-dots .vh-dot span {
        display: none;
    }
}

/* ==========================================
   PHASE 3 - NEW STYLES
   ========================================== */

/* Hero trust badges */
.hero-trust-badges {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    background: rgba(18, 30, 24, 0.45);
    padding: 8px 18px;
    border-radius: var(--r-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-badges .badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-badges .badge-sep {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .hero-trust-badges {
        font-size: 0.72rem;
        gap: 8px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-trust-badges .badge-sep {
        display: none;
    }

    .hero-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Post-Hero Trust Bar */
.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.4rem;
}

.trust-item span {
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 18px;
    }
}

/* Stats icons */
.stats-strip {
    background: var(--forest-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 28px;
    gap: 0;
    flex-wrap: wrap;
    border-radius: var(--r-md);
    margin: 40px auto;
    max-width: 1280px;
    width: calc(100% - 56px);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: 12px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Why Choose Us items gap & square icons */
.why-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

/* Service Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-lt);
}

.price-tag {
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dk);
    margin-bottom: 12px;
}

.svc-cta i {
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-cta i {
    transform: translateX(6px);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Destinations Slide reveal on hover */
.dest-card .dest-overlay p,
.dest-card .dest-overlay .dest-tag {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease-out);
}

.dest-card:hover .dest-overlay p,
.dest-card:hover .dest-overlay .dest-tag {
    opacity: 1;
    transform: translateY(0);
}

.dest-card .dest-overlay h3 {
    transition: transform 0.4s var(--ease-out);
}

.dest-card:hover .dest-overlay h3 {
    transform: translateY(-5px);
}

/* Testimonials white glassmorphism */
.testi-static-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--r-md);
    padding: 36px 30px;
    border: 1px solid rgba(179, 143, 90, 0.15);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testi-static-card p {
    color: var(--charcoal);
}

.testi-static-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.testi-author strong {
    color: var(--forest);
}

.testi-author span {
    color: var(--grey-mid);
}

/* FAQ accordion section */
.faq-section {
    background: var(--ivory);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--grey-lt);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--forest);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    color: var(--gold);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 0.9rem;
    color: var(--grey-mid);
    line-height: 1.6;
    border-top: 1.5px dashed var(--grey-lt);
    padding-top: 16px;
}

/* ==========================================
   PHASE 4 - INNER PAGES STYLES
   ========================================== */

/* Values Cards Hover */
.value-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    border: 1.5px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-lt);
}

.value-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    background: var(--ivory);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gold-gradient);
    color: var(--white);
    transform: scale(1.1);
}

/* Services bullet points */
.svc-bullets {
    list-style: none;
    padding-left: 0;
}

.svc-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.svc-bullets li::before {
    content: '✦' !important;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold) !important;
    font-size: 0.8rem;
    font-weight: 700;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}

/* Service eyebrow counter scale */
.svc-row-content .eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* Gallery page modifications */
.gallery-grid {
    grid-auto-rows: 250px;
}

/* Lightbox Prev/Next Controls */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 3100;
}

.lb-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.lb-prev {
    left: 40px;
}

.lb-next {
    right: 40px;
}

.lb-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: var(--ff-sans);
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .lb-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }
}

/* Packages popular badge and glow effect */
.pkg-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--r-xs);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.pkg-ecard-featured {
    border: 2px solid var(--gold);
    position: relative;
}

.pkg-ecard-featured:hover {
    box-shadow: 0 16px 40px rgba(179, 143, 90, 0.25);
}

/* Premium Form Styling */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.luxury-form label {
    font-family: var(--ff-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: 0.02em;
    text-transform: none;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    padding: 16px 20px;
    border: 1px solid rgba(179, 143, 90, 0.3);
    border-radius: var(--r-sm);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.5);
    color: var(--charcoal);
    transition: all 0.3s var(--ease-out);
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(179, 143, 90, 0.08);
}

/* Dedicated Mobile CSS for Why Choose Us Badge Card */
@media (max-width: 768px) {
    .why-img-badge {
        display: none !important;
    }

    .loader-logo {
        font-size: 1.3rem !important;
        letter-spacing: 0.18em !important;
        white-space: nowrap !important;
        margin-bottom: 18px !important;
    }

    .loader-bar {
        width: 140px !important;
    }
}