/* =========================================================
   NOVELLA SAFARIS — inspired by zaratanzaniaadventures.com
   ========================================================= */

:root {
    /* ---- Brand palette — derived from the Novella logo ---- */
    --forest:        #283C28;   /* logo "N" green — exact match, primary */
    --forest-dark:   #1A2A1B;   /* deeper forest for footer */
    --forest-deep:   #0F1D12;   /* near-black forest for overlays */
    --forest-light:  #4A6B4A;   /* softer accent */

    --amber:         #CF8940;   /* logo sun — primary accent */
    --amber-light:   #E3A660;   /* hover/lighter */
    --amber-dark:    #A66B2A;   /* pressed/shadow */
    --gold:          #B8752F;   /* strong warm gold for eyebrows/links */

    --cream:         #FBF7EE;   /* natural page background */
    --sand:          #EDE4D3;   /* subtle warm neutral */
    --text:          #1A1A1A;   /* logo charcoal — body text */
    --muted:         #6b6357;
    --line:          #E1D8C6;
    --line-2:        #EDE5D6;
    --white:         #ffffff;
    --overlay-dark:  rgba(15,29,18,.55);
    --overlay-hero:  rgba(15,29,18,.42);

    /* ---- Legacy aliases (mapped so existing selectors keep working) ---- */
    --navy:          var(--forest);
    --navy-alt:      var(--forest-dark);
    --navy-2:        var(--forest-deep);
    --navy-3:        var(--forest-light);
    --yellow:        var(--amber);
    --yellow-alt:    var(--amber-light);
    --yellow-dark:   var(--amber-dark);
    --bg-light:      var(--cream);

    --radius-lg:     20px;
    --radius-md:     15px;
    --radius-sm:     5px;
    --radius-pill:   29px;

    --shadow-sm:     0 4px 14px rgba(49, 72, 52, 0.10);
    --shadow-md:     0 12px 30px rgba(49, 72, 52, 0.14);
    --shadow-lg:     0 24px 60px rgba(49, 72, 52, 0.20);

    --font:          "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container:     1105px;   /* body content ~85% */
    --container-wide: 1300px;   /* full width for header/nav/footer */
    --transition:    all .3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--navy);
    letter-spacing: -.01em;
}
p { margin: 0 0 1em; color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.header-top .container,
.main-nav .container,
.site-footer .container,
.footer-bottom .container { max-width: var(--container-wide); }

/* ---------- SHARED SECTION TITLE ---------- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: none;
}
.section-title p { color: var(--muted); font-size: 16px; }
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-hero {
    padding: 20px 60px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: none;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--navy-alt);
    border-color: var(--yellow);
    box-shadow: 0 3px 0 var(--yellow-dark);
}
.btn-yellow:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--yellow);
    color: var(--navy-alt);
    border-color: var(--yellow);
}

.btn-plan {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    padding: 12px 22px;
}
.btn-plan i { color: var(--yellow); font-size: 16px; }
.btn-plan:hover i { color: var(--navy-alt); }

/* ==========================================================
   HEADER TOP (white strip with logo + tagline + yellow pill row)
   ========================================================== */
.header-top {
    background: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
}
.header-top-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}
.tagline {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: -.01em;
    line-height: 1.25;
}
.header-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.quick-strip {
    display: flex;
    background: var(--yellow);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 0 var(--yellow-dark);
}
.quick-strip a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    border-right: 1px solid rgba(49,72,52,.18);
    transition: var(--transition);
    line-height: 1.2;
}
.quick-strip a:last-child { border-right: none; }
.quick-strip a i { color: var(--navy); font-size: 15px; }
.quick-strip a:hover { background: var(--yellow-dark); }
.toll-free {
    font-size: 15px;
    color: var(--forest);
    font-weight: 500;
}
.toll-free a { color: var(--forest); font-weight: 800; margin-left: 4px; }
.toll-free a:hover { color: var(--gold); }

/* Brand — image logo */
.brand { display: inline-flex; align-items: center; }
.brand img {
    height: 78px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================
   MAIN NAV (navy bar, sticky)
   ========================================================== */
.main-nav {
    background: var(--forest-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
    border-top: 1px solid rgba(255,255,255,.06);
}
.main-nav.scrolled { box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.main-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 66px;
}
.brand-mobile { display: none; }
.brand-mobile img { height: 42px; filter: brightness(0) invert(1); }

/* Primary nav */
.primary-nav { flex: 1; }
.primary-nav > ul {
    display: flex;
    gap: 0;
    align-items: center;
}
.primary-nav > ul > li > a {
    padding: 22px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.primary-nav > ul > li > a i { font-size: 10px; margin-top: 2px; }
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a.active { color: var(--yellow); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 20;
    border-top: 3px solid var(--yellow);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 9px 20px; font-size: 14px; color: var(--navy); text-transform: none; letter-spacing: 0; }
.dropdown li a:hover { background: var(--bg-light); color: var(--gold); padding-left: 24px; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 14px; }

.btn-plan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--navy-alt);
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 3px 0 var(--yellow-dark);
    line-height: 1;
}
.btn-plan i {
    background: var(--navy-alt);
    color: var(--yellow);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
}
.btn-plan:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-plan:hover i { background: var(--navy); color: var(--yellow); }

.nav-search {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.2);
}
.nav-search:hover { background: var(--yellow); color: var(--navy-alt); border-color: var(--yellow); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ==========================================================
   HERO — boxed, not full-screen
   ========================================================== */
.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}
/* Revolution-slider-style slideshow with Ken Burns zoom */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.6s ease-in-out;
    will-change: transform, opacity;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: kenBurnsZoom 9s ease-out forwards;
}
@keyframes kenBurnsZoom {
    0%   { transform: scale(1)     translate(0, 0); }
    100% { transform: scale(1.18)  translate(-1.5%, -1%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-hero);
    z-index: 2;
}

/* Arrows */
.hero-nav {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.28);
}
.hero-arrow:hover { background: var(--amber); color: var(--forest-deep); border-color: var(--amber); transform: translateY(-50%) scale(1.06); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dots button {
    width: 34px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dots button.active { background: var(--amber); width: 52px; }
.hero-dots button:hover:not(.active) { background: rgba(255,255,255,.6); }

@media (max-width: 640px) {
    .hero-arrow { width: 42px; height: 42px; font-size: 18px; }
    .hero-arrow.prev { left: 10px; }
    .hero-arrow.next { right: 10px; }
    .hero-dots { bottom: 14px; }
    .hero-dots button { width: 24px; }
    .hero-dots button.active { width: 40px; }
}
.hero-inner {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 900px;
    margin-top: -39px;
}
.hero-title {
    font-family: var(--font);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    letter-spacing: -.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.hero-sub {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 34px;
    max-width: 780px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* Dual buttons row */
.dual-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.dual-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    background: rgba(255,255,255,.94);
    border-radius: var(--radius-md);
    color: var(--navy);
    min-width: 300px;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    border: 2px solid transparent;
}
.dual-btn:hover {
    background: var(--yellow);
    color: var(--navy-alt);
    transform: translateY(-3px);
    border-color: var(--yellow-dark);
}
.dual-icon {
    width: 60px;
    height: 40px;
    color: var(--navy);
    flex-shrink: 0;
}
.dual-icon svg { width: 100%; height: 100%; }
.dual-btn:hover .dual-icon { color: var(--navy-alt); }
.dual-btn span {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* ==========================================================
   AWARDS STRIP
   ========================================================== */
.awards-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--line-2);
}
.awards-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}
.award-logo {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--line-2);
}
.award-logo:last-child { border-right: none; }
.award-logo strong {
    display: block;
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.award-logo span { font-size: 12px; color: var(--muted); letter-spacing: .3px; }

/* ==========================================================
   WHY BOOK
   ========================================================== */
.why-book { padding: 90px 0; background: var(--white); }
.why-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}
.why-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--navy);
}
.why-text p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
.why-text .btn { margin-top: 12px; }

.why-portrait { position: relative; }
.why-portrait img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.portrait-badge {
    position: absolute;
    left: -28px;
    bottom: 40px;
    background: var(--yellow);
    color: var(--navy-alt);
    padding: 20px 26px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(207,137,64,.35);
    text-align: center;
}
.portrait-badge strong { display: block; font-size: 42px; font-weight: 900; line-height: 1; }
.portrait-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }

/* ==========================================================
   FEATURES + CHARITY
   ========================================================== */
.features-charity { padding: 90px 0; background: var(--bg-light); }
.features-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-column { display: flex; flex-direction: column; gap: 24px; }
.feature-card {
    background: var(--white);
    padding: 30px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--yellow);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 54px;
    height: 54px;
    background: var(--yellow);
    color: var(--navy-alt);
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

.charity-card {
    background: var(--navy);
    color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
}
.charity-card .eyebrow { color: var(--yellow); }
.charity-card h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}
.charity-card p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 20px; }
.charity-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}
.charity-card .btn { align-self: flex-start; }

/* ==========================================================
   SPECIAL PACKAGES
   ========================================================== */
.special-packages { padding: 90px 0; background: var(--white); }
.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.special-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.special-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform .6s;
}
.special-card:hover .special-img { transform: scale(1.06); }
.special-body { padding: 24px 26px 28px; }
.special-body h4 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--navy); line-height: 1.3; }
.read-more {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.read-more:hover { gap: 12px; color: var(--yellow-dark); }

/* ==========================================================
   TOP SELLING
   ========================================================== */
.top-selling { padding: 90px 0; background: var(--bg-light); }
.top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.top-card {
    display: block;
    position: relative;
    height: 290px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.top-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,29,18,.85), rgba(15,29,18,.2) 60%, rgba(0,0,0,0));
    transition: var(--transition);
}
.top-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.top-card:hover::before { background: linear-gradient(to top, rgba(15,29,18,.9), rgba(15,29,18,.4) 60%, rgba(0,0,0,.1)); }
.top-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 26px;
    color: var(--white);
    z-index: 2;
}
.top-days {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy-alt);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.top-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

/* ==========================================================
   GROUP DEPARTURE
   ========================================================== */
.group-banner {
    padding: 70px 0;
    background:
        linear-gradient(rgba(15,29,18,.88), rgba(15,29,18,.88)),
        url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1600&q=80') center/cover;
    text-align: center;
}
.group-banner h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.group-intro { padding: 70px 0 40px; background: var(--white); }
.group-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.group-intro h3 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.group-intro p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.group-trips { padding: 30px 0 90px; background: var(--white); }
.trip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    align-items: stretch;
}
.trip-row.reverse { direction: rtl; }
.trip-row.reverse > * { direction: ltr; }
.trip-info {
    padding: 40px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trip-days {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy-alt);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    align-self: flex-start;
}
.trip-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
}
.trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    gap: 24px;
    flex-wrap: wrap;
}
.trip-price strong {
    display: block;
    font-family: var(--font);
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.02em;
}
.trip-price span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.trip-availability { display: flex; align-items: center; gap: 14px; }
.avail-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1e8348;
    background: #e6f5ec;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.avail-open i { font-size: 14px; }
.trip-image {
    min-height: 340px;
    background-size: cover;
    background-position: center;
}

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews { padding: 90px 0; background: var(--bg-light); }
.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.reviews-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.reviews-badge .review-stars { color: #00aa6c; font-size: 16px; }
.reviews-badge strong { color: var(--navy); font-size: 15px; font-weight: 800; letter-spacing: .5px; }
.reviews-badge > span { color: var(--muted); font-size: 13px; }
.reviews-badge .tripadvisor-logo { height: 22px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    padding: 26px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card .review-stars { color: #00aa6c; font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card h5 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.review-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-author img { width: 44px; height: 44px; border-radius: 50%; }
.review-author strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.review-author span { font-size: 12px; color: var(--muted); }

/* ==========================================================
   YELLOW GRADIENT DIVIDER
   ========================================================== */
.gradient-divider {
    height: 60px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-alt) 50%, var(--yellow) 100%);
    position: relative;
}
.gradient-divider::before, .gradient-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 4px;
    background: var(--navy);
    border-radius: 2px;
    transform: translateY(-50%);
}
.gradient-divider::before { left: calc(50% - 60px); }
.gradient-divider::after { left: calc(50% + 20px); }

/* ==========================================================
   VIDEOS
   ========================================================== */
.videos { padding: 90px 0; background: var(--white); }
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.video-card {
    position: relative;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    transition: var(--transition);
}
.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,29,18,.35);
    transition: var(--transition);
}
.video-card:hover::before { background: rgba(15,29,18,.15); }
.video-card i {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    background: var(--yellow);
    color: var(--navy-alt);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    padding-left: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    transition: var(--transition);
}
.video-card:hover i { transform: scale(1.1); }

/* ==========================================================
   NEWS
   ========================================================== */
.news { padding: 90px 0; background: var(--bg-light); }
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.news-card {
    display: grid;
    grid-template-columns: 45% 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img { background-size: cover; background-position: center; min-height: 220px; }
.news-body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; }
.news-cat {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy-alt);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    align-self: flex-start;
}
.news-body h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.news-body h4 a { color: var(--navy); }
.news-body h4 a:hover { color: var(--gold); }
.news-body p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ==========================================================
   RESOURCES
   ========================================================== */
.resources { padding: 90px 0; background: var(--white); }
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.resource-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 26px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    min-height: 66px;
}
.resource-btn > i:first-child { color: var(--yellow); font-size: 22px; }
.resource-btn > i:last-child { color: var(--yellow); font-size: 14px; }
.resource-btn:hover { background: var(--yellow); color: var(--navy-alt); }
.resource-btn:hover > i { color: var(--navy-alt); }

/* ==========================================================
   BLOG CATEGORIES
   ========================================================== */
.blog-cats { padding: 90px 0; background: var(--bg-light); }
.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-card {
    display: block;
    position: relative;
    height: 430px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    transition: var(--transition);
    z-index: 1;
}
.cat-card:hover::before { background: rgba(15,29,18,.55); }
.cat-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 30px;
    color: var(--white);
}
.cat-overlay h3 {
    font-size: 33px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cat-overlay > span { font-size: 20px; color: rgba(255,255,255,.9); margin-bottom: 24px; }
.cat-btn {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy-alt);
    padding: 10px 30px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}
.cat-card:hover .cat-btn { background: var(--white); color: var(--navy); }

/* ==========================================================
   PARTNERS
   ========================================================== */
.partners { padding: 80px 0; background: var(--white); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.partners .section-title { margin-bottom: 40px; }
.partners-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 40px;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    max-width: 100%;
    transition: var(--transition);
    filter: grayscale(30%);
    opacity: .8;
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }
.partner-logo img {
    max-height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .partners-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 480px) {
    .partners-inner { grid-template-columns: 1fr; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background: var(--navy-alt);
    color: rgba(255,255,255,.75);
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col p { color: rgba(255,255,255,.7); font-size: 14px; margin: 18px 0; }
.footer-col .brand img { height: 100px; }
.footer-col h5 {
    color: var(--yellow);
    font-family: var(--font);
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 5px 0; }
.contact-list i { color: var(--yellow); margin-top: 4px; }
.newsletter {
    display: flex;
    gap: 8px;
    margin: 16px 0 20px;
}
.newsletter input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--yellow); }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: var(--transition);
}
.socials a:hover { background: var(--yellow); color: var(--navy-alt); transform: translateY(-3px); }

.footer-bottom { padding: 22px 0; font-size: 13px; background: rgba(0,0,0,.25); }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.65); margin-left: 20px; }
.footer-bottom a:hover { color: var(--yellow); }

/* ==========================================================
   FIXED SIDE BUTTONS + WHATSAPP
   ========================================================== */
.fixed-side {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fixed-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--navy-alt);
    padding: 12px 18px 12px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 4px 14px rgba(0,0,0,.15);
    transition: var(--transition);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px 12px;
}
.fixed-btn i { font-size: 16px; margin-bottom: 4px; }
.fixed-btn.pay-online { background: var(--navy); color: var(--yellow); }
.fixed-btn:hover { padding-right: 24px; }

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25D366;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
    z-index: 90;
    line-height: 1.5;
}
.wa-float i { font-size: 22px; }
.wa-float:hover { background: #128C7E; transform: translateY(-2px); }

/* ==========================================================
   INNER PAGES — page banner, breadcrumb, intro, dest cards, CTA
   ========================================================== */
.page-banner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    padding: 60px 0 50px;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,29,18,.85), rgba(15,29,18,.55));
}
.page-banner .container { position: relative; z-index: 2; text-align: center; }
.page-banner h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0 0 14px;
    text-transform: uppercase;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    letter-spacing: .5px;
}
.breadcrumb a { color: var(--amber-light); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; color: var(--amber-light); }

.page-intro {
    padding: 80px 0 40px;
    background: var(--white);
}
.page-intro .container { max-width: 900px; text-align: center; }
.page-intro .eyebrow { display: inline-block; }
.page-intro h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 18px;
}
.page-intro p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
}

.dest-list {
    padding: 40px 0 90px;
    background: var(--white);
}
.dest-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.dest-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.dest-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,29,18,.5), transparent 60%);
}
.dest-days-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--amber);
    color: var(--forest-deep);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.dest-body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dest-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--forest);
}
.dest-body p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 20px;
    line-height: 1.6;
    flex: 1;
}
.dest-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.dest-features span {
    font-size: 12px;
    color: var(--forest);
    background: var(--cream);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.dest-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
}
.dest-price {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dest-price strong {
    display: block;
    font-size: 22px;
    color: var(--forest);
    font-weight: 800;
    letter-spacing: -.01em;
}

/* Split (image + text) row */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
}
.split-row:last-child { border-bottom: none; }
.split-row.reverse .split-media { order: 2; }
.split-media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.split-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 14px;
}
.split-content p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.split-content ul { margin: 18px 0 26px; }
.split-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--forest);
    font-size: 15px;
}
.split-content li i { color: var(--amber); margin-top: 5px; }

/* Route table (used on trekking) */
.route-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.route-table th, .route-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.route-table th { background: var(--forest); color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }
.route-table tr:last-child td { border-bottom: none; }
.route-table td strong { color: var(--forest); }

/* CTA banner (used on inner pages) */
.inner-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(15,29,18,.88), rgba(15,29,18,.88)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
    text-align: center;
}
.inner-cta h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; }
.inner-cta p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 28px; font-size: 17px; }
.inner-cta .btn { margin: 4px; }

/* Contact form + info */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
}
.contact-info h2 { color: var(--forest); font-size: 32px; margin-bottom: 18px; }
.contact-info p { color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.contact-info ul { margin-top: 26px; }
.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--forest);
    font-size: 15px;
}
.contact-info ul li i {
    width: 42px; height: 42px;
    background: var(--amber);
    color: var(--forest-deep);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info ul li strong { display: block; color: var(--forest); font-size: 15px; font-weight: 700; }
.contact-info ul li span { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--amber);
}
.contact-form h3 { color: var(--forest); font-size: 24px; margin-bottom: 20px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--forest); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .8px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    color: var(--forest);
    background: var(--cream);
    transition: var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(207,137,64,.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 10px; }

/* Blog listing */
.blog-list { padding: 80px 0; }
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-item-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.blog-item-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--amber);
    color: var(--forest-deep);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-item-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-item-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; color: var(--forest); }
.blog-item-body h3 a { color: inherit; }
.blog-item-body h3 a:hover { color: var(--gold); }
.blog-item-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.blog-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 13px;
    color: var(--muted);
}
.blog-item-meta i { color: var(--amber); margin-right: 5px; }

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    padding: 30px 0 60px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-info { padding: 20px 18px 24px; }
.team-info strong { display: block; color: var(--forest); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-info span { color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Resources cards */
.resource-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    padding: 40px 0 90px;
}
.resource-tile {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--amber);
}
.resource-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-tile > i {
    display: inline-grid;
    place-items: center;
    width: 54px; height: 54px;
    background: var(--forest);
    color: var(--amber);
    font-size: 22px;
    border-radius: 12px;
    margin-bottom: 16px;
}
.resource-tile h3 { color: var(--forest); font-size: 18px; margin-bottom: 8px; }
.resource-tile p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.resource-tile a { color: var(--gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.resource-tile a:hover { color: var(--amber); }

/* FAQ */
.faq { padding: 60px 0 90px; background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 24px;
    font-weight: 700;
    color: var(--forest);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    color: var(--amber);
    transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--muted); line-height: 1.7; font-size: 14px; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1200px) {
    .primary-nav > ul > li > a { padding: 10px 8px; font-size: 14px; }
    .hero-title { font-size: 46px; }
    .why-text h2 { font-size: 34px; }
}

@media (max-width: 1024px) {
    .dest-cards, .blog-list-grid, .resource-tiles { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .split-row { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
    .split-row.reverse .split-media { order: 0; }
    .contact-wrap { grid-template-columns: 1fr; }
    .header-top-inner { grid-template-columns: auto 1fr; }
    .tagline { grid-column: 1 / -1; order: 2; text-align: center; font-size: 16px; }
    .header-top-right { grid-column: 2; align-items: flex-end; }
    .quick-strip a { padding: 8px 12px; font-size: 13px; }
    .toll-free { font-size: 13px; }
    .hero { min-height: 620px; padding: 40px 0; }
    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 20px; }
    .why-inner { grid-template-columns: 1fr; gap: 50px; }
    .why-portrait img { height: 420px; }
    .features-inner { grid-template-columns: 1fr; }
    .charity-card { max-width: 560px; margin: 0 auto; }
    .special-grid { grid-template-columns: repeat(2, 1fr); }
    .top-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid, .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .cats-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trip-info { padding: 30px 26px; }
    .awards-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .award-logo:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 90px 24px 30px;
        overflow-y: auto;
        transition: right .35s ease;
        z-index: 99;
    }
    .primary-nav.open { right: 0; }
    .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
    .primary-nav > ul > li > a {
        padding: 14px 4px;
        font-size: 16px;
        border-bottom: 1px solid var(--line);
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 14px;
        border: none;
        display: none;
    }
    .has-dropdown:hover .dropdown { display: block; }
    .nav-toggle { display: flex; }
    .btn-plan { display: none; }
    .brand-mobile { display: flex; }
    .header-top { display: none; }
    .primary-nav > ul > li > a { color: var(--navy); text-transform: none; letter-spacing: 0; }
    .primary-nav > ul > li > a:hover, .primary-nav > ul > li > a.active { color: var(--gold); }
    .group-intro-inner { grid-template-columns: 1fr; gap: 26px; }
    .trip-row { grid-template-columns: 1fr; }
    .trip-row.reverse { direction: ltr; }
    .trip-image { min-height: 260px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .dest-cards, .blog-list-grid, .resource-tiles, .team-grid, .contact-form .field-row { grid-template-columns: 1fr; }
    .page-banner { min-height: 260px; padding: 40px 0; }
    .contact-form { padding: 26px; }
    .hero { min-height: 560px; }
    .hero-title { font-size: 30px; line-height: 1.1; }
    .hero-sub { font-size: 16px; }
    .btn-hero { padding: 16px 40px; font-size: 16px; }
    .dual-btn { min-width: unset; width: 100%; padding: 14px 20px; }
    .dual-btn span { font-size: 17px; }
    .special-grid, .top-grid, .videos-grid, .resources-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
    .awards-inner { grid-template-columns: 1fr; }
    .award-logo { border-right: none; border-bottom: 1px solid var(--line-2); padding-bottom: 18px; }
    .award-logo:last-child { border-bottom: none; padding-bottom: 0; }
    .section-title h2, .why-text h2, .group-banner h2, .reviews-head h2, .charity-card h2 { font-size: 28px; }
    .trip-info h3 { font-size: 22px; }
    .trip-price strong { font-size: 26px; }
    .fixed-side { display: none; }
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
    .portrait-badge { left: 16px; bottom: -20px; padding: 14px 18px; }
    .portrait-badge strong { font-size: 32px; }
    .gradient-divider { height: 40px; }
    .cat-card { height: 340px; }
    .cat-overlay h3 { font-size: 26px; }
}

/* ---------- ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
