/* ============================================================
   UNCLE ELI SAFARIS — MAIN STYLESHEET
   Theme: Wanderlust Theme
   Version: 1.0.0
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES & ROOT
   ============================================================ */
:root {
    --ochre:       #C8833A;
    --terracotta:  #B5522A;
    --sand:        #E8D5B0;
    --warm-cream:  #F5EDD8;
    --deep-earth:  #2C1A0E;
    --bark:        #5C3A1E;
    --sage:        #7A8C6A;
    --gold:        #D4A843;
    --light-sand:  #FAF5EC;
    --white:       #FFFFFF;

    --font-serif:  'Cormorant Garamond', serif;
    --font-sans:   'Josefin Sans', sans-serif;

    --transition:  0.3s ease;
    --shadow-sm:   0 2px 20px rgba(44,26,14,0.06);
    --shadow-md:   0 8px 30px rgba(44,26,14,0.12);
    --shadow-lg:   0 20px 50px rgba(44,26,14,0.18);

    --max-width:   1300px;
    --nav-height:  80px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--light-sand);
    color: var(--deep-earth);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-sans);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    color: var(--deep-earth);
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p {
    font-size: 0.875rem;
    line-height: 1.9;
    color: var(--bark);
    letter-spacing: 0.03em;
}

em { font-style: italic; }

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--ochre);
    opacity: 0.5;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-primary {
    background: var(--ochre);
    color: var(--white);
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color var(--transition);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 1rem 2.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212,168,67,0.1);
    color: var(--white);
}


/* ============================================================
   5. SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.8rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}

.site-nav.scrolled {
    background: rgba(44, 26, 14, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.5rem 3rem;
}

/* ── LOGO — pinned to the left ── */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    /* justify-content: space-between handles positioning — no margin tricks */
}

.nav-logo span { color: var(--gold); }

.nav-logo .custom-logo-link,
.nav-logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

/* Single unified rule — targets every possible WordPress logo wrapper */
.nav-logo img,
.nav-logo .custom-logo-link img,
.nav-logo a img,
.custom-logo {
    height: 65px !important;
    width: auto !important;
    max-height:65px !important;
    max-width: 220px !important;
    object-fit: contain !important;
    display: block !important;
    transition: height 0.3s ease;
}

.site-nav.scrolled .nav-logo img,
.site-nav.scrolled .nav-logo .custom-logo-link img,
.site-nav.scrolled .nav-logo a img {
    height: 65px !important;
    max-height: 65px !important;
}

/* ── NAV MENU — centered ── */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }

.nav-links .current-menu-item a,
.nav-links .current-page-ancestor a { color: var(--gold); }
.nav-links .current-menu-item a::after { width: 100%; }

/* ── CTA — pinned to the right ── */
.nav-cta {
    background: var(--ochre);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background var(--transition) !important;
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--terracotta) !important;
    color: var(--white) !important;
}

/* ── MOBILE TOGGLE ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 101;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   7. HERO
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(44,26,14,0.75) 0%, rgba(92,58,30,0.4) 50%, rgba(200,131,58,0.2) 100%),
        url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1800&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    to { transform: scale(1); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 780px;
    animation: fadeUp 1.2s ease 0.3s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--sand); }

.hero p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-destinations {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(44,26,14,0.88);
    backdrop-filter: blur(8px);
    display: flex;
    border-top: 1px solid rgba(200,131,58,0.3);
}

.dest-pill {
    flex: 1;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid rgba(200,131,58,0.2);
    transition: background var(--transition);
}
.dest-pill:last-child { border-right: none; }
.dest-pill:hover { background: rgba(200,131,58,0.15); }
.dest-pill-icon { font-size: 1.4rem; }
.dest-pill-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.dest-pill-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
}


/* ============================================================
   8. INTRO / ABOUT
   ============================================================ */
.intro {
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text h2 em { color: var(--terracotta); }
.intro-text p { margin-bottom: 1rem; }

.intro-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(92,58,30,0.15);
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ochre);
    font-weight: 300;
    line-height: 1;
}
.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bark);
    margin-top: 0.3rem;
}

.intro-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
    position: relative;
}
.intro-img { overflow: hidden; }
.intro-img:first-child { grid-row: span 2; }
.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.intro-img:hover img { transform: scale(1.06); }

.intro-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--ochre);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    text-align: center;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(200,131,58,0.4);
}
.intro-badge-num { font-size: 2rem; font-weight: 600; line-height: 1; }
.intro-badge-text { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }


/* ============================================================
   9. DESTINATIONS
   ============================================================ */
.destinations {
    background: var(--deep-earth);
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
}
.destinations::before {
    content: 'DESTINATIONS';
    position: absolute;
    font-family: var(--font-serif);
    font-size: 12rem;
    color: rgba(255,255,255,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.section-header-left .section-label { color: var(--gold); }
.section-header-left .section-label::after { background: var(--gold); }
.section-header-left h2 { color: var(--white); font-weight: 300; }
.section-header-left h2 em { color: var(--sand); }

.section-header-right a {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition);
}
.section-header-right a:hover { gap: 0.9rem; }

.destinations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.dest-card { position: relative; overflow: hidden; cursor: pointer; }
.dest-card--featured { grid-row: span 2; }

.dest-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.08); }

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,26,14,0.9) 0%, transparent 60%);
    transition: background 0.4s;
}
.dest-card:hover .dest-card-overlay {
    background: linear-gradient(to top, rgba(44,26,14,0.95) 0%, rgba(44,26,14,0.2) 100%);
}

.dest-card-arrow {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity var(--transition), transform var(--transition), border-color var(--transition);
}
.dest-card:hover .dest-card-arrow { opacity: 1; transform: translateY(0); border-color: var(--gold); }

.dest-card-info { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.dest-card-country {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.4rem;
}
.dest-card-name {
    font-family: var(--font-serif); font-size: 1.8rem; color: var(--white);
    font-weight: 300; line-height: 1.1; margin-bottom: 0.5rem;
    display: block; transition: color var(--transition);
}
.dest-card-name:hover { color: var(--sand); }
.dest-card--featured .dest-card-name { font-size: 2.8rem; }
.dest-card-tours { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; }


/* ============================================================
   10. PACKAGES
   ============================================================ */
.packages {
    padding: 7rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.packages-header { text-align: center; margin-bottom: 4rem; }
.packages-header h2 em { color: var(--terracotta); }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.pkg-card {
    background: var(--white); overflow: hidden; position: relative;
    transition: transform 0.4s, box-shadow 0.4s; box-shadow: var(--shadow-sm);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card.featured { border: 2px solid var(--ochre); }

.pkg-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--ochre); color: var(--white);
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.35rem 0.8rem; z-index: 2;
}

.pkg-img { height: 220px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }

.pkg-body { padding: 1.8rem; }
.pkg-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.pkg-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; color: var(--bark); letter-spacing: 0.05em; }
.pkg-meta-item svg { color: var(--ochre); }

.pkg-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--deep-earth); line-height: 1.25; margin-bottom: 0.8rem; }
.pkg-desc { font-size: 0.78rem; line-height: 1.8; color: var(--bark); margin-bottom: 1.5rem; }

.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid rgba(92,58,30,0.1); }
.pkg-price-from { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); }
.pkg-price-old { font-size: 0.9rem; color: var(--bark); text-decoration: line-through; opacity: 0.6; }
.pkg-price-amount { font-family: var(--font-serif); font-size: 1.8rem; color: var(--ochre); font-weight: 600; line-height: 1; }
.pkg-price-per { font-size: 0.65rem; color: var(--bark); }
.pkg-book {
    background: var(--deep-earth); color: var(--white); padding: 0.7rem 1.4rem;
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    transition: background var(--transition); display: inline-block;
}
.pkg-book:hover { background: var(--ochre); color: var(--white); }


/* ============================================================
   11. WHY US
   ============================================================ */
.why-us { background: var(--sand); padding: 6rem 4rem; }
.why-us-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}
.why-us-left h2 em { font-style: italic; }
.why-us-left p { margin-top: 1.5rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.why-item { background: var(--white); padding: 2rem; position: relative; transition: box-shadow var(--transition); }
.why-item:hover { box-shadow: var(--shadow-md); }
.why-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--ochre); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--deep-earth); margin-bottom: 0.6rem; }
.why-desc { font-size: 0.75rem; line-height: 1.8; color: var(--bark); }


/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials { padding: 7rem 4rem; background: var(--deep-earth); position: relative; overflow: hidden; }
.testimonials::after {
    content: '"'; position: absolute; font-family: var(--font-serif);
    font-size: 40rem; color: rgba(255,255,255,0.02);
    top: -5rem; right: -2rem; line-height: 1; pointer-events: none; user-select: none;
}
.testimonials-inner { max-width: var(--max-width); margin: 0 auto; }
.testimonials .section-label { color: var(--gold); justify-content: center; }
.testimonials .section-label::after { background: var(--gold); }
.testimonials h2 { color: var(--white); text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(200,131,58,0.2);
    padding: 2rem; transition: background var(--transition), border-color var(--transition);
}
.testi-card:hover { background: rgba(200,131,58,0.08); border-color: rgba(200,131,58,0.5); }
.testi-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.8rem; letter-spacing: 0.1em; }
.testi-text { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ochre); }
.testi-name { font-size: 0.75rem; font-weight: 600; color: var(--white); letter-spacing: 0.05em; }
.testi-origin { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; }


/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative; padding: 7rem 4rem; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center; min-height: 60vh;
}
.cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(92,58,30,0.8), rgba(44,26,14,0.9)),
        url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1600&q=80') center/cover;
}
.cta-content { position: relative; z-index: 2; max-width: 680px; }
.cta-content h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-content h2 em { color: var(--sand); }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer { background: #1a0e06; padding: 5rem 4rem 2rem; color: rgba(255,255,255,0.6); }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
    margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(200,131,58,0.15);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.78rem; line-height: 1.9; color: rgba(255,255,255,0.5); max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.social-btn {
    width: 36px; height: 36px; border: 1px solid rgba(200,131,58,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.7rem;
    transition: border-color var(--transition), color var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 0.78rem; transition: color var(--transition), padding-left var(--transition); display: block; }
.footer-col ul a:hover { color: var(--sand); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--ochre); }
.footer-bottom a:hover { color: var(--gold); }


/* ============================================================
   15. SINGLE TOUR PAGE
   ============================================================ */
.single-tour-hero {
    height: 65vh; position: relative; overflow: hidden;
    display: flex; align-items: flex-end; padding: 3rem 4rem;
    margin-top: var(--nav-height);
}
.single-tour-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-tour-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,14,0.9) 0%, transparent 60%); }
.single-tour-hero-content { position: relative; z-index: 2; max-width: var(--max-width); width: 100%; margin: 0 auto; }
.single-tour-hero h1 { color: var(--white); margin-bottom: 1rem; }
.tour-quick-facts { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.tour-fact {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem;
    color: rgba(255,255,255,0.8); letter-spacing: 0.05em;
    background: rgba(44,26,14,0.5); backdrop-filter: blur(4px); padding: 0.5rem 1rem;
}
.tour-fact svg { color: var(--gold); }

.single-tour-body { max-width: var(--max-width); margin: 0 auto; padding: 5rem 4rem; display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.tour-content h2 { font-size: 1.8rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(92,58,30,0.15); }
.tour-content p { margin-bottom: 1rem; }
.tour-itinerary { margin-top: 3rem; }
.itinerary-day { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(92,58,30,0.1); }
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day-num { font-family: var(--font-serif); font-size: 0.7rem; color: var(--ochre); letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; width: 50px; padding-top: 0.2rem; }
.itinerary-day-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--deep-earth); margin-bottom: 0.4rem; }
.itinerary-day-desc { font-size: 0.78rem; color: var(--bark); line-height: 1.8; }

.tour-inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.inclusions-list, .exclusions-list { list-style: none; }
.inclusions-list li, .exclusions-list li { font-size: 0.78rem; color: var(--bark); padding: 0.5rem 0; padding-left: 1.5rem; border-bottom: 1px solid rgba(92,58,30,0.08); position: relative; }
.inclusions-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: bold; }
.exclusions-list li::before { content: '✕'; position: absolute; left: 0; color: var(--terracotta); }

.tour-booking-sidebar { background: var(--white); padding: 2.5rem; box-shadow: var(--shadow-md); position: sticky; top: calc(var(--nav-height) + 2rem); }
.sidebar-price-block { text-align: center; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(92,58,30,0.1); }
.sidebar-from { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bark); }
.sidebar-price { font-family: var(--font-serif); font-size: 3rem; color: var(--ochre); font-weight: 600; line-height: 1; }
.sidebar-per { font-size: 0.7rem; color: var(--bark); }
.sidebar-book-btn { width: 100%; background: var(--ochre); color: var(--white); padding: 1rem; font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; display: block; margin-top: 1.5rem; transition: background var(--transition); cursor: pointer; border: none; }
.sidebar-book-btn:hover { background: var(--terracotta); }
.sidebar-enquire-btn { width: 100%; border: 1px solid var(--ochre); color: var(--ochre); padding: 0.8rem; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; display: block; margin-top: 0.8rem; transition: background var(--transition), color var(--transition); cursor: pointer; background: transparent; }
.sidebar-enquire-btn:hover { background: var(--ochre); color: var(--white); }
.sidebar-meta { margin-top: 1.5rem; }
.sidebar-meta-item { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid rgba(92,58,30,0.08); font-size: 0.75rem; }
.sidebar-meta-label { color: var(--bark); }
.sidebar-meta-value { color: var(--deep-earth); font-weight: 600; text-align: right; }


/* ============================================================
   16. ARCHIVE / TOURS LISTING
   ============================================================ */
.archive-header { background: var(--deep-earth); padding: 8rem 4rem 4rem; text-align: center; }
.archive-header h1 { color: var(--white); }
.archive-header p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 1rem auto 0; }

.archive-filters { background: var(--white); padding: 1.5rem 4rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; box-shadow: var(--shadow-sm); position: sticky; top: var(--nav-height); z-index: 50; }
.filter-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bark); margin-right: 0.5rem; }
.filter-btn { padding: 0.5rem 1.2rem; border: 1px solid rgba(92,58,30,0.2); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); background: transparent; cursor: pointer; transition: background var(--transition), border-color var(--transition), color var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--ochre); border-color: var(--ochre); color: var(--white); }

.archive-grid { max-width: var(--max-width); margin: 0 auto; padding: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }


/* ============================================================
   17. PAGE TEMPLATES
   ============================================================ */
.page-header { background: var(--deep-earth); padding: 8rem 4rem 4rem; margin-top: 0; }
.page-header h1 { color: var(--white); }
.page-header .breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; letter-spacing: 0.08em; }
.page-header .breadcrumb a { color: var(--gold); }
.page-header .breadcrumb span { opacity: 0.4; }

.page-content { max-width: 860px; margin: 0 auto; padding: 5rem 4rem; }
.page-content h2 { margin: 2.5rem 0 1rem; }
.page-content h3 { margin: 2rem 0 0.8rem; }
.page-content p { margin-bottom: 1.2rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1.2rem 1.5rem; list-style: disc; }
.page-content li { font-size: 0.875rem; color: var(--bark); line-height: 1.9; margin-bottom: 0.4rem; }


/* ============================================================
   18. CONTACT / ENQUIRY FORM
   ============================================================ */
.contact-wrap { max-width: var(--max-width); margin: 0 auto; padding: 5rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info h2 em { color: var(--terracotta); }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ochre); margin-bottom: 0.2rem; }
.contact-detail-value { font-size: 0.85rem; color: var(--deep-earth); }

.enquiry-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bark); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { border: 1px solid rgba(92,58,30,0.2); padding: 0.9rem 1rem; font-family: var(--font-sans); font-size: 0.82rem; color: var(--deep-earth); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--ochre); box-shadow: 0 0 0 3px rgba(200,131,58,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


/* ============================================================
   19. WORDPRESS CORE CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.75rem; color: var(--bark); text-align: center; padding: 0.5rem 0; font-style: italic; }
.sticky { border-left: 3px solid var(--ochre); padding-left: 1rem; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }


/* ============================================================
   20. RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media ( max-width: 1100px ) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px 250px; }
    .dest-card--featured { grid-column: span 2; grid-row: span 1; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .single-tour-body { grid-template-columns: 1fr; }
    .tour-booking-sidebar { position: static; }
}

@media ( max-width: 768px ) {
    :root { --nav-height: 65px; }

    .site-nav { padding: 0.8rem 1.5rem; flex-wrap: wrap; }
    .site-nav.scrolled { padding: 0.6rem 1.5rem; }

    .nav-menu {
        display: none; width: 100%; order: 3; flex: none;
        justify-content: flex-start; background: rgba(44,26,14,0.98);
        padding: 1.5rem; margin-top: 0.5rem;
    }
    .nav-menu.open { display: flex; }
    .nav-links { flex-direction: column; gap: 1.2rem; align-items: flex-start; width: 100%; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .hero-content { padding: 0 1.5rem; }
    .hero-destinations { display: none; }

    .intro { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .intro-image-grid { grid-template-rows: 200px 180px; }
    .destinations { padding: 4rem 1.5rem; }
    .destinations-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .dest-card--featured { grid-column: auto; grid-row: auto; height: 300px; }
    .dest-card { height: 240px; }
    .packages { padding: 4rem 1.5rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .why-us { padding: 4rem 1.5rem; }
    .why-us-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 4rem 1.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 4rem 1.5rem; }
    .site-footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .archive-header { padding: 6rem 1.5rem 3rem; }
    .archive-filters { padding: 1rem 1.5rem; }
    .archive-grid { padding: 2rem 1.5rem; grid-template-columns: 1fr; }
    .single-tour-hero { padding: 2rem 1.5rem; height: 50vh; }
    .single-tour-body { padding: 3rem 1.5rem; }
    .contact-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .page-content { padding: 3rem 1.5rem; }
    .tour-inclusions-grid { grid-template-columns: 1fr; }
}

@media ( max-width: 480px ) {
    .hero h1 { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .intro-stats { gap: 1.5rem; }
    .packages-header h2 { font-size: 1.8rem; }
}


/* ============================================================
   21. PAGINATION
   ============================================================ */
.page-numbers { display: flex; gap: 0.5rem; list-style: none; align-items: center; justify-content: center; padding: 2rem 0; }
.page-numbers li a, .page-numbers li span { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(92,58,30,0.2); font-size: 0.78rem; color: var(--bark); transition: background var(--transition), border-color var(--transition), color var(--transition); }
.page-numbers li a:hover { background: var(--ochre); border-color: var(--ochre); color: var(--white); }
.page-numbers li span.current { background: var(--ochre); border-color: var(--ochre); color: var(--white); }
.page-numbers li a.prev, .page-numbers li a.next { width: auto; padding: 0 1.2rem; letter-spacing: 0.1em; font-size: 0.7rem; text-transform: uppercase; }


/* ============================================================
   22. WORDPRESS CONTAINER FIXES
   ============================================================ */
.wp-site-blocks, .wp-block-post-content, .wp-block-group,
.wp-block-group__inner-container, .is-layout-constrained,
.is-layout-flow, .entry-content, .post-content,
#page, #content, #primary, #main, .site, .site-content, .hentry {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

body { overflow-x: hidden; }
body.home, body.archive, body.single { overflow-x: hidden; }


/* ============================================================
   23. BOOKING MODAL
   ============================================================ */
.booking-modal-overlay {
    position: fixed; inset: 0; background: rgba(44,26,14,0.85);
    backdrop-filter: blur(6px); z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 2rem;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.booking-modal-overlay.open { opacity: 1; pointer-events: all; }
.booking-modal { background: var(--light-sand); width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.booking-modal-overlay.open .booking-modal { transform: translateY(0); }
.booking-modal-header { background: var(--deep-earth); padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.booking-modal-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.booking-modal-tour-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); }
.booking-modal-close { color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; transition: color var(--transition); background: none; border: none; padding: 0.5rem; }
.booking-modal-close:hover { color: var(--white); }

.booking-steps { display: flex; align-items: center; padding: 1.5rem 2rem; background: var(--white); border-bottom: 1px solid rgba(92,58,30,0.1); }
.booking-step { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(92,58,30,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--bark); transition: all var(--transition); }
.step-label { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); opacity: 0.6; }
.booking-step.active .step-num { background: var(--ochre); border-color: var(--ochre); color: var(--white); }
.booking-step.active .step-label { opacity: 1; color: var(--ochre); }
.booking-step.completed .step-num { background: var(--sage); border-color: var(--sage); color: var(--white); }
.booking-step-line { flex: 1; height: 1px; background: rgba(92,58,30,0.15); margin: 0 0.5rem; margin-bottom: 1.2rem; }

.booking-step-content { display: none; padding: 2rem; }
.booking-step-content.active { display: block; }
.booking-step-content h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--deep-earth); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.78rem; color: var(--bark); margin-bottom: 1.5rem; }

.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-field { display: flex; flex-direction: column; gap: 0.4rem; }
.booking-field.full-width { grid-column: span 2; }
.booking-field label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark); font-weight: 600; }
.booking-field input, .booking-field select, .booking-field textarea { border: 1px solid rgba(92,58,30,0.2); padding: 0.8rem 1rem; font-family: var(--font-sans); font-size: 0.82rem; color: var(--deep-earth); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.booking-field input:focus, .booking-field select:focus, .booking-field textarea:focus { outline: none; border-color: var(--ochre); box-shadow: 0 0 0 3px rgba(200,131,58,0.1); }

.counter-field { display: flex; align-items: center; border: 1px solid rgba(92,58,30,0.2); background: var(--white); }
.counter-btn { width: 40px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--ochre); cursor: pointer; transition: background var(--transition); background: none; border: none; flex-shrink: 0; }
.counter-btn:hover { background: rgba(200,131,58,0.1); }
.counter-field input { border: none; text-align: center; flex: 1; font-size: 1rem; font-weight: 600; color: var(--deep-earth); padding: 0; box-shadow: none !important; }

.booking-estimate { margin-top: 1.5rem; background: var(--deep-earth); padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.estimate-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.estimate-price { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); font-weight: 600; }
.estimate-note { font-size: 0.65rem; color: rgba(255,255,255,0.5); width: 100%; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.5rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--bark); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ochre); cursor: pointer; }

.booking-summary { margin-bottom: 1.5rem; }
.summary-section { margin-bottom: 1rem; background: var(--white); padding: 1rem 1.2rem; }
.summary-title { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ochre); margin-bottom: 0.8rem; font-weight: 600; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--bark); padding: 0.4rem 0; border-bottom: 1px solid rgba(92,58,30,0.06); }
.summary-row:last-child { border-bottom: none; }

.booking-terms { margin-bottom: 1rem; }
.booking-note { background: rgba(122,140,106,0.12); border-left: 3px solid var(--sage); padding: 1rem; font-size: 0.75rem; color: var(--bark); line-height: 1.7; }

.booking-nav { padding: 1rem 2rem 2rem; display: flex; gap: 1rem; justify-content: flex-end; border-top: 1px solid rgba(92,58,30,0.1); }
.booking-btn-back { background: transparent; border: 1px solid rgba(92,58,30,0.2); color: var(--bark); padding: 0.8rem 1.8rem; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); }
.booking-btn-back:hover { border-color: var(--ochre); color: var(--ochre); }
.booking-btn-next { background: var(--ochre); color: var(--white); padding: 0.8rem 1.8rem; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border: none; transition: background var(--transition); }
.booking-btn-next:hover { background: var(--terracotta); }
.booking-btn-submit { background: var(--deep-earth); color: var(--white); padding: 0.8rem 2rem; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border: none; transition: background var(--transition); }
.booking-btn-submit:hover { background: var(--ochre); }


/* ============================================================
   24. STICKY BOOKING BAR
   ============================================================ */
.sticky-booking-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); box-shadow: 0 -4px 30px rgba(44,26,14,0.12); transform: translateY(100%); transition: transform 0.4s ease; border-top: 1px solid rgba(92,58,30,0.1); }
.sticky-booking-bar.visible { transform: translateY(0); }
.sticky-bar-inner { max-width: var(--max-width); margin: 0 auto; padding: 1rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.sticky-bar-name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--deep-earth); }
.sticky-bar-meta { font-size: 0.68rem; color: var(--bark); letter-spacing: 0.05em; margin-top: 0.2rem; }
.sticky-bar-from { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); }
.sticky-bar-amount { font-family: var(--font-serif); font-size: 1.8rem; color: var(--ochre); font-weight: 600; line-height: 1; }
.sticky-bar-per { font-size: 0.62rem; color: var(--bark); }
.sticky-bar-actions { display: flex; gap: 0.8rem; align-items: center; }
.sticky-whatsapp { background: #25D366; color: var(--white); padding: 0.8rem 1.4rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background var(--transition); display: inline-block; }
.sticky-whatsapp:hover { background: #128C7E; color: var(--white); }


/* ============================================================
   25. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 5rem; right: 2rem; z-index: 89; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform var(--transition), box-shadow var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); fill: var(--white); }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: whatsappPulse 2s ease-out infinite; z-index: -1; }
@keyframes whatsappPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}


/* ============================================================
   26. CAR HIRE PAGE
   ============================================================ */

/* Hero */
.car-hire-hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.car-hire-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(44,26,14,0.85) 0%, rgba(92,58,30,0.6) 50%, rgba(200,131,58,0.15) 100%),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1800&q=80') center/cover no-repeat;
    animation: slowZoom 20s ease-out forwards;
}
.car-hire-hero-content {
    position: relative; z-index: 2;
    padding: 0 4rem; max-width: 780px;
    animation: fadeUp 1.2s ease 0.3s both;
}

/* Hire quick strip */
.hire-strip {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    background: rgba(44,26,14,0.92); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200,131,58,0.3);
    padding: 1.5rem 4rem;
}
.hire-strip-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 1rem; align-items: end;
}
.strip-field { display: flex; flex-direction: column; gap: 0.4rem; }
.strip-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.strip-input {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(200,131,58,0.3);
    color: var(--white); padding: 0.7rem 1rem;
    font-family: var(--font-sans); font-size: 0.8rem; width: 100%;
}
.strip-input option { background: var(--deep-earth); color: var(--white); }
.strip-input::placeholder { color: rgba(255,255,255,0.4); }
.strip-input:focus { outline: none; border-color: var(--gold); }
.strip-btn {
    background: var(--ochre); color: var(--white);
    padding: 0.75rem 2rem; font-family: var(--font-sans);
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    border: none; cursor: pointer; white-space: nowrap;
    transition: background var(--transition);
}
.strip-btn:hover { background: var(--terracotta); }

/* Services strip */
.hire-services-strip {
    background: var(--deep-earth);
    padding: 3rem 4rem;
}
.hire-services-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(200,131,58,0.15);
}
.hire-service-item {
    background: var(--deep-earth); padding: 2.5rem 2rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 0.8rem; cursor: default;
    transition: background var(--transition);
    position: relative;
}
.hire-service-item::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--ochre);
    transform: scaleX(0); transition: transform var(--transition);
}
.hire-service-item:hover { background: rgba(200,131,58,0.08); }
.hire-service-item:hover::before { transform: scaleX(1); }
.hire-service-icon { font-size: 2.2rem; }
.hire-service-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); font-weight: 300; }
.hire-service-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.hire-service-price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); }
.hire-service-price-label { font-size: 0.58rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }

/* Fleet */
.hire-fleet {
    padding: 7rem 4rem;
    max-width: var(--max-width); margin: 0 auto;
}
.hire-fleet-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem;
}
.hire-fleet-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; }
.hire-fleet-header h2 em { color: var(--terracotta); }
.hire-fleet-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hire-filter-btn {
    padding: 0.5rem 1.2rem; border: 1px solid rgba(92,58,30,0.2);
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--bark); background: transparent; cursor: pointer;
    transition: all var(--transition); font-family: var(--font-sans);
}
.hire-filter-btn:hover, .hire-filter-btn.active {
    background: var(--ochre); border-color: var(--ochre); color: var(--white);
}

.hire-fleet-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

/* Vehicle cards */
.vehicle-card {
    background: var(--white); overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.vehicle-img {
    height: 220px; overflow: hidden; position: relative;
    background: var(--sand);
    display: flex; align-items: center; justify-content: center;
}
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.vehicle-card:hover .vehicle-img img { transform: scale(1.05); }

.vehicle-badge {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.3rem 0.8rem; font-size: 0.6rem;
    letter-spacing: 0.12em; text-transform: uppercase; z-index: 2;
}
.badge-available { background: var(--sage); color: var(--white); }
.badge-popular   { background: var(--ochre); color: var(--white); }
.badge-premium   { background: var(--deep-earth); color: var(--gold); }
.badge-booked    { background: var(--terracotta); color: var(--white); }

.vehicle-body { padding: 1.8rem; }
.vehicle-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ochre); margin-bottom: 0.4rem; }
.vehicle-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--deep-earth); margin-bottom: 1rem; font-weight: 400; }

.vehicle-specs {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
    margin-bottom: 1.2rem; padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(92,58,30,0.1);
}
.spec-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.spec-icon { font-size: 1rem; }
.spec-value { font-size: 0.7rem; font-weight: 600; color: var(--deep-earth); }
.spec-label { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); opacity: 0.7; }

.vehicle-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.feature-tag {
    background: rgba(200,131,58,0.1); color: var(--bark);
    padding: 0.25rem 0.7rem; font-size: 0.62rem;
    letter-spacing: 0.08em; text-transform: uppercase;
}

.vehicle-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.2rem; border-top: 1px solid rgba(92,58,30,0.1);
}
.vehicle-price-from { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); }
.vehicle-price-amount { font-family: var(--font-serif); font-size: 1.8rem; color: var(--ochre); font-weight: 600; line-height: 1; }
.vehicle-price-ugx { font-size: 0.68rem; color: var(--bark); }
.vehicle-price-per { font-size: 0.62rem; color: var(--bark); }
.vehicle-book {
    background: var(--deep-earth); color: var(--white);
    padding: 0.7rem 1.4rem; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; transition: background var(--transition); display: inline-block;
}
.vehicle-book:hover { background: var(--ochre); }

/* How it works */
.hire-how {
    background: var(--deep-earth);
    padding: 6rem 4rem;
    position: relative; overflow: hidden;
}
.hire-how::before {
    content: 'HIRE'; position: absolute;
    font-family: var(--font-serif); font-size: 20rem;
    color: rgba(255,255,255,0.02);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
}
.hire-how-inner { max-width: var(--max-width); margin: 0 auto; }
.hire-how-header { margin-bottom: 4rem; }

.hire-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative;
}
.hire-steps::before {
    content: ''; position: absolute;
    top: 2.5rem; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,131,58,0.4), transparent);
}
.hire-step { text-align: center; }
.hire-step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--ochre); color: var(--white);
    font-family: var(--font-serif); font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 0 8px rgba(200,131,58,0.15);
    position: relative; z-index: 2;
}
.hire-step-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.hire-step-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 0.8rem; }
.hire-step-desc { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* Perks */
.hire-perk {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--white); padding: 1.2rem 1.5rem;
    position: relative; transition: box-shadow var(--transition);
    margin-bottom: 1rem;
}
.hire-perk::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ochre); }
.hire-perk:hover { box-shadow: var(--shadow-md); }
.hire-perk-icon { font-size: 1.5rem; flex-shrink: 0; }
.hire-perk-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--deep-earth); margin-bottom: 0.2rem; }
.hire-perk-desc { font-size: 0.73rem; color: var(--bark); line-height: 1.7; }

/* Rates table */
.hire-rates-table { background: var(--white); overflow: hidden; box-shadow: var(--shadow-md); }
.hire-rates-header {
    background: var(--deep-earth); padding: 1.5rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.hire-rates-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); }
.hire-rates-note { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.hire-rate-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 2rem; border-bottom: 1px solid rgba(92,58,30,0.08);
    align-items: center;
}
.hire-rate-row:last-child { border-bottom: none; }
.hire-rate-head {
    background: rgba(200,131,58,0.06);
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ochre);
}
.hire-rate-name { font-size: 0.82rem; color: var(--deep-earth); font-weight: 600; }
.hire-rate-type { font-size: 0.65rem; color: var(--bark); }
.hire-rate-usd { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ochre); }
.hire-rate-ugx { font-size: 0.72rem; color: var(--bark); }

/* Enquiry section */
.hire-enquiry-section {
    padding: 7rem 4rem;
    background: var(--light-sand);
}

/* Service type radio selector */
.hire-service-selector {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
    margin-bottom: 1rem;
}
.hire-service-radio { display: none; }
.hire-service-radio-label {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.4rem; padding: 1rem 0.5rem;
    border: 1px solid rgba(92,58,30,0.2);
    cursor: pointer; text-align: center; transition: all var(--transition);
    font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bark);
    font-family: var(--font-sans);
}
.hire-service-radio-label span { font-size: 1.4rem; }
.hire-service-radio-label:hover {
    border-color: var(--ochre); background: rgba(200,131,58,0.05);
}
.hire-service-radio:checked + .hire-service-radio-label {
    border-color: var(--ochre); background: rgba(200,131,58,0.1); color: var(--ochre);
}

/* Responsive */
@media ( max-width: 768px ) {
    .hire-strip-inner { grid-template-columns: 1fr; }
    .hire-strip { display: none; }
    .hire-services-inner { grid-template-columns: repeat(2, 1fr); }
    .hire-fleet-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hire-fleet-grid { grid-template-columns: 1fr; }
    .hire-steps { grid-template-columns: repeat(2, 1fr); }
    .hire-service-selector { grid-template-columns: repeat(2, 1fr); }
    .hire-enquiry-section { padding: 4rem 1.5rem; }
    .hire-enquiry-section > div { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .hire-how { padding: 4rem 1.5rem; }
    .hire-fleet { padding: 4rem 1.5rem; }
}


/* ============================================================
   27. FAITH TOURISM PAGE
   ============================================================ */

/* Hero */
.faith-hero {
    height: 100vh; min-height: 650px;
    position: relative; display: flex;
    align-items: center; overflow: hidden;
}
.faith-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(43,74,122,0.8) 0%, rgba(44,26,14,0.7) 50%, rgba(200,131,58,0.2) 100%),
        url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1800&q=80') center/cover no-repeat;
    animation: slowZoom 20s ease-out forwards;
}
.faith-hero-bg::after {
    content: '✝';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40rem; color: rgba(255,255,255,0.02);
    pointer-events: none; line-height: 1;
}
.faith-hero-content {
    position: relative; z-index: 2;
    padding: 0 4rem; max-width: 860px;
    animation: fadeUp 1.2s ease 0.3s both;
}
.faith-hero-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 1rem;
}

/* Scripture strip */
.faith-scripture-strip {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    background: rgba(43,74,122,0.92); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 4rem; text-align: center;
}
.faith-scripture-text {
    font-family: var(--font-serif); font-size: 1.3rem;
    font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6;
}
.faith-scripture-ref {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-top: 0.5rem;
}

/* Core values */
.faith-values-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
    background: rgba(200,131,58,0.15);
}
.faith-value-item {
    background: var(--deep-earth); padding: 2rem 1.5rem;
    text-align: center; transition: background var(--transition);
    position: relative;
}
.faith-value-item::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--ochre);
    transform: scaleX(0); transition: transform var(--transition);
}
.faith-value-item:hover { background: rgba(200,131,58,0.08); }
.faith-value-item:hover::before { transform: scaleX(1); }
.faith-value-icon { font-size: 2rem; margin-bottom: 1rem; }
.faith-value-title {
    font-family: var(--font-serif); font-size: 1.2rem;
    color: var(--white); margin-bottom: 0.8rem;
}
.faith-value-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Daily journey */
.faith-daily {
    background: var(--deep-earth); padding: 7rem 4rem;
    position: relative; overflow: hidden;
}
.faith-daily::before {
    content: 'FAITH'; position: absolute;
    font-family: var(--font-serif); font-size: 18rem;
    color: rgba(255,255,255,0.02);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
}
.faith-day-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    position: relative;
}
.faith-day-grid::before {
    content: ''; position: absolute;
    top: 3rem; left: 15%; right: 15%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,131,58,0.4), transparent);
}
.faith-day-block {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(200,131,58,0.15);
    padding: 2.5rem 2rem; text-align: center;
    transition: background var(--transition), border-color var(--transition);
}
.faith-day-block:hover { background: rgba(200,131,58,0.08); border-color: rgba(200,131,58,0.4); }
.faith-day-time { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.faith-day-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--ochre); color: #fff;
    font-family: var(--font-serif); font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 0 8px rgba(200,131,58,0.12);
    position: relative; z-index: 2;
}
.faith-day-icon { font-size: 2rem; margin-bottom: 1rem; }
.faith-day-title { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; margin-bottom: 1rem; }
.faith-day-desc { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.faith-day-activities { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.faith-day-activity {
    font-size: 0.68rem; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 0.5rem; justify-content: center;
}
.faith-day-activity::before { content: '→'; color: var(--gold); }

/* Services grid */
.faith-services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.faith-service-card {
    background: var(--white); padding: 2rem;
    border-top: 3px solid var(--ochre);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.faith-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.faith-service-icon { font-size: 2rem; margin-bottom: 1rem; }
.faith-service-title {
    font-family: var(--font-serif); font-size: 1.1rem;
    color: var(--deep-earth); margin-bottom: 0.8rem;
}
.faith-service-desc { font-size: 0.75rem; color: var(--bark); line-height: 1.8; }

/* Activities grid */
.faith-activities-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 1rem;
}
.faith-activity-card { position: relative; overflow: hidden; cursor: pointer; }
.faith-activity-card--featured { grid-row: span 2; }
.faith-activity-img { position: absolute; inset: 0; }
.faith-activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.faith-activity-card:hover .faith-activity-img img { transform: scale(1.08); }
.faith-activity-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(43,74,122,0.9) 0%, transparent 60%);
    transition: background 0.4s;
}
.faith-activity-card:hover .faith-activity-overlay {
    background: linear-gradient(to top, rgba(43,74,122,0.95) 0%, rgba(43,74,122,0.2) 100%);
}
.faith-activity-content { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.faith-activity-tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.faith-activity-title { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; font-weight: 300; line-height: 1.1; margin-bottom: 0.5rem; }
.faith-activity-card--featured .faith-activity-title { font-size: 2.2rem; }
.faith-activity-desc { font-size: 0.72rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* Upcoming trips */
.faith-upcoming {
    background: #E8EFF9; padding: 6rem 4rem;
    border-top: 3px solid var(--faith-blue);
}
.faith-trips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.faith-trip-card { background: #fff; overflow: hidden; box-shadow: 0 2px 20px rgba(43,74,122,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.faith-trip-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(43,74,122,0.15); }
.faith-trip-top { background: var(--faith-blue); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.faith-trip-dates { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; }
.faith-trip-spots { background: var(--ochre); color: #fff; padding: 0.3rem 0.8rem; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }
.faith-trip-spots.limited { background: var(--terracotta); }
.faith-trip-body { padding: 1.5rem; }
.faith-trip-dest { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faith-blue); margin-bottom: 0.4rem; }
.faith-trip-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--deep-earth); margin-bottom: 1rem; }
.faith-trip-details { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.faith-trip-detail { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--bark); }
.faith-trip-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(43,74,122,0.1); }
.faith-trip-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ochre); font-weight: 600; }
.faith-trip-price-label { font-size: 0.62rem; color: var(--bark); }
.faith-trip-btn { background: var(--faith-blue); color: #fff; padding: 0.6rem 1.2rem; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background var(--transition); display: inline-block; }
.faith-trip-btn:hover { background: var(--ochre); }

/* Testimonials */
.faith-testi-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; }
.faith-testi-featured { background: #fff; padding: 3rem; position: relative; box-shadow: 0 4px 30px rgba(44,26,14,0.08); }
.faith-testi-featured::before { content: '"'; font-family: var(--font-serif); font-size: 10rem; color: rgba(43,74,122,0.06); position: absolute; top: -1rem; left: 2rem; line-height: 1; pointer-events: none; }
.faith-testi-quote { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--deep-earth); line-height: 1.7; margin-bottom: 2rem; position: relative; z-index: 1; }
.faith-testi-author { display: flex; align-items: center; gap: 1rem; }

/* Faith blue variable */
:root { --faith-blue: #2B4A7A; }

/* Responsive */
@media ( max-width: 1100px ) {
    .faith-values-grid { grid-template-columns: repeat(3, 1fr); }
    .faith-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media ( max-width: 768px ) {
    .faith-hero-content { padding: 0 1.5rem; }
    .faith-scripture-strip { padding: 1rem 1.5rem; }
    .faith-scripture-text { font-size: 1rem; }
    .faith-values-grid { grid-template-columns: repeat(2, 1fr); }
    .faith-day-grid { grid-template-columns: 1fr; }
    .faith-services-grid { grid-template-columns: 1fr; }
    .faith-activities-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .faith-activity-card--featured { grid-row: auto; height: 300px; }
    .faith-activity-card { height: 260px; }
    .faith-trips-grid { grid-template-columns: 1fr; }
    .faith-testi-grid { grid-template-columns: 1fr; }
    .faith-daily { padding: 4rem 1.5rem; }
    .faith-upcoming { padding: 4rem 1.5rem; }
}

/* ============================================================
   28. DESTINATION TOURS SLIDER
   ============================================================ */
.dest-tours-section {
    background: var(--deep-earth);
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
}
.dest-tours-section::before {
    content: 'TOURS';
    position: absolute;
    font-family: var(--font-serif);
    font-size: 18rem;
    color: rgba(255,255,255,0.025);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.dest-tours-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.dest-tours-header .section-label { color: var(--gold); }
.dest-tours-header .section-label::after { background: var(--gold); }
.dest-tours-header h2 { color: var(--white); font-weight: 300; }
.dest-tours-header h2 em { color: var(--sand); }

.dest-tours-view-all {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: gap var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.dest-tours-view-all:hover { gap: 0.9rem; color: var(--gold); }

/* Slider wrapper */
.dest-tours-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Prev / Next buttons */
.dest-slider-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(200,131,58,0.4);
    background: rgba(44,26,14,0.6);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    flex-shrink: 0;
    z-index: 2;
}
.dest-slider-btn:hover {
    background: var(--ochre);
    border-color: var(--ochre);
    transform: scale(1.1);
}
.dest-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Slider track */
.dest-tours-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Slides container — shows 3 cards at a time */
.dest-tours-slider-inner {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.dest-tour-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

/* Override pkg-card background for dark section */
.dest-tours-section .pkg-card {
    background: var(--white);
}

/* Slider dots */
.dest-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}
.dest-slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.dest-slider-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}
.dest-slider-dot:hover { background: rgba(255,255,255,0.5); }

/* Responsive */
@media ( max-width: 1100px ) {
    .dest-tour-slide { flex: 0 0 calc(50% - 0.75rem); min-width: calc(50% - 0.75rem); }
}
@media ( max-width: 768px ) {
    .dest-tours-section { padding: 4rem 1.5rem; }
    .dest-tours-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .dest-tour-slide { flex: 0 0 100%; min-width: 100%; }
    .dest-slider-btn { width: 40px; height: 40px; }
}


/* ============================================================
   FAITH PAGE GRID OVERRIDES
   ============================================================ */
.faith-values-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1px !important;
    background: rgba(200,131,58,0.15) !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.faith-services-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.faith-value-item {
    background: var(--deep-earth) !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.faith-service-card {
    background: var(--white) !important;
    padding: 2rem !important;
    border-top: 3px solid var(--ochre) !important;
    box-shadow: var(--shadow-sm) !important;
    margin: 0 !important;
    max-width: 100% !important;
}

@media ( max-width: 1100px ) {
    .faith-values-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .faith-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media ( max-width: 768px ) {
    .faith-values-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .faith-services-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   29. SINGLE DESTINATION PAGE
   ============================================================ */

/* ── Hero ── */
.sdest-hero {
    height: 100vh; min-height: 600px;
    position: relative; overflow: hidden;
}
.sdest-slides { position: absolute; inset: 0; }
.sdest-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease;
}
.sdest-slide.active { opacity: 1; }

.sdest-overlay-side {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
        to right,
        rgba(44,26,14,0.85) 0%,
        rgba(44,26,14,0.35) 55%,
        transparent 100%
    );
}
.sdest-overlay-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 45%; z-index: 2;
    background: linear-gradient(to top, rgba(44,26,14,0.92), transparent);
}

.sdest-hero-content {
    position: absolute; z-index: 3;
    left: 4rem; bottom: 9rem; max-width: 700px;
    animation: fadeUp 1.2s ease 0.3s both;
}

.sdest-flag-tag {
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.8rem;
}
.sdest-flag-tag::before {
    content: ''; display: block;
    width: 30px; height: 1px; background: var(--gold);
}

.sdest-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300; color: var(--white);
    line-height: 0.95; margin-bottom: 1.8rem;
}

/* Facts bar */
.sdest-facts-bar {
    display: flex; flex-wrap: wrap; gap: 0;
}
.sdest-fact {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.8rem 1.2rem;
    background: rgba(44,26,14,0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200,131,58,0.3);
    border-right: none;
}
.sdest-fact:last-child { border-right: 1px solid rgba(200,131,58,0.3); }
.sdest-fact-icon { font-size: 0.9rem; flex-shrink: 0; }
.sdest-fact-label {
    display: block; font-size: 0.52rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); line-height: 1;
}
.sdest-fact-value {
    display: block; font-size: 0.72rem;
    color: rgba(255,255,255,0.9); margin-top: 0.15rem;
}

/* Slide counter */
.sdest-slide-counter {
    position: absolute; right: 2.5rem; bottom: 3rem;
    z-index: 4; display: flex; flex-direction: column;
    align-items: center; gap: 1rem;
}
.sdest-dots { display: flex; flex-direction: column; gap: 0.5rem; }
.sdest-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none; cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.sdest-dot.active { background: var(--gold); transform: scale(1.5); }
.sdest-slide-num {
    font-family: var(--font-serif); font-size: 0.75rem;
    color: rgba(255,255,255,0.4); letter-spacing: 0.08em;
    writing-mode: vertical-rl;
}

/* Scroll indicator */
.sdest-scroll-indicator {
    position: absolute; left: 50%; bottom: 2rem;
    z-index: 4; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; font-size: 0.55rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    animation: sdestBounce 2s ease-in-out infinite;
}
@keyframes sdestBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}
.sdest-scroll-line {
    width: 1px; height: 35px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}


/* ── Intro band ── */
.sdest-intro-band {
    background: var(--deep-earth); padding: 2.5rem 4rem;
    display: flex; align-items: center;
    justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.sdest-intro-tagline {
    font-family: var(--font-serif); font-size: 1.6rem;
    font-style: italic; color: var(--sand); font-weight: 300;
    flex: 1;
}
.sdest-intro-stats { display: flex; gap: 3rem; flex-shrink: 0; }
.sdest-stat { text-align: center; }
.sdest-stat-num {
    font-family: var(--font-serif); font-size: 2.2rem;
    color: var(--gold); font-weight: 300; line-height: 1;
}
.sdest-stat-label {
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-top: 0.3rem;
}


/* ── Main body layout ── */
.sdest-body {
    max-width: var(--max-width); margin: 0 auto;
    padding: 6rem 4rem;
    display: grid; grid-template-columns: 1fr 360px;
    gap: 5rem; align-items: start;
}

/* Left content */
.sdest-content h2 {
    font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300; color: var(--deep-earth);
    line-height: 1.2; margin-bottom: 2rem;
}
.sdest-content h2 em { font-style: italic; color: var(--terracotta); }
.sdest-overview {
    font-size: 0.875rem; color: var(--bark);
    line-height: 2; margin-bottom: 1.2rem;
}

/* Gallery */
.sdest-gallery { margin-top: 3rem; }
.sdest-gallery-label {
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ochre); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
}
.sdest-gallery-label::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(92,58,30,0.15);
}
.sdest-gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px;
    gap: 0.5rem;
}
.sdest-gallery-img {
    overflow: hidden; position: relative; cursor: pointer;
}
.sdest-gallery-img--large { grid-row: span 1; }
.sdest-gallery-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
}
.sdest-gallery-img:hover img { transform: scale(1.08); }

.sdest-gallery-more { position: relative; }
.sdest-gallery-more-overlay {
    position: absolute; inset: 0;
    background: rgba(44,26,14,0.7);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.3rem;
}
.sdest-gallery-more-num {
    font-family: var(--font-serif); font-size: 2rem;
    color: var(--gold); font-weight: 300;
}
.sdest-gallery-more-label {
    font-size: 0.6rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
}


/* ── Sidebar ── */
.sdest-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }

.sdest-info-card {
    background: var(--white); padding: 2rem;
    box-shadow: var(--shadow-md); margin-bottom: 1.5rem;
}
.sdest-info-card-title {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ochre); margin-bottom: 1.2rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(92,58,30,0.1);
    display: flex; align-items: center; gap: 0.5rem;
}
.sdest-info-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 0.8rem 0; border-bottom: 1px solid rgba(92,58,30,0.07);
    font-size: 0.78rem;
}
.sdest-info-row:last-child { border-bottom: none; }
.sdest-info-label { color: var(--bark); }
.sdest-info-value {
    color: var(--deep-earth); font-weight: 600;
    text-align: right; max-width: 55%;
}

.sdest-cta-card {
    background: var(--ochre); padding: 2rem; text-align: center;
    margin-bottom: 1rem;
}
.sdest-cta-card h3 {
    font-family: var(--font-serif); font-size: 1.4rem;
    color: var(--white); font-weight: 300; margin-bottom: 0.8rem;
}
.sdest-cta-card p {
    font-size: 0.75rem; color: rgba(255,255,255,0.8);
    line-height: 1.7; margin-bottom: 1.5rem;
}
.sdest-cta-btn-white {
    display: block; background: var(--white); color: var(--ochre);
    padding: 0.9rem; font-family: var(--font-sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
    transition: background var(--transition); margin-bottom: 0.7rem;
}
.sdest-cta-btn-white:hover { background: var(--sand); color: var(--ochre); }
.sdest-cta-btn-outline {
    display: block; border: 1px solid rgba(255,255,255,0.5); color: var(--white);
    padding: 0.8rem; font-family: var(--font-sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}
.sdest-cta-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.sdest-whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    background: #25D366; color: var(--white); padding: 1rem;
    font-family: var(--font-sans); font-size: 0.72rem;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    transition: background var(--transition);
}
.sdest-whatsapp-btn:hover { background: #128C7E; color: var(--white); }


/* ── Tours section ── */
.sdest-tours {
    background: var(--deep-earth); padding: 7rem 4rem;
    position: relative; overflow: hidden;
}
.sdest-tours::before {
    content: 'TOURS'; position: absolute;
    font-family: var(--font-serif); font-size: 18rem;
    color: rgba(255,255,255,0.025);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
}
.sdest-tours-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 3rem;
}
.sdest-view-all-link {
    color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
    transition: gap var(--transition); white-space: nowrap; flex-shrink: 0;
}
.sdest-view-all-link:hover { gap: 0.9rem; color: var(--gold); }


/* ── Nearby destinations ── */
.sdest-nearby {
    background: var(--sand); padding: 6rem 4rem;
}
.sdest-nearby-card {
    position: relative; height: 280px; overflow: hidden;
    display: block; text-decoration: none;
}
.sdest-nearby-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s;
}
.sdest-nearby-card:hover img { transform: scale(1.08); }
.sdest-nearby-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,26,14,0.88) 0%, transparent 60%);
}
.sdest-nearby-info {
    position: absolute; bottom: 1.2rem;
    left: 1.2rem; right: 1.2rem;
}
.sdest-nearby-flag { font-size: 1.2rem; margin-bottom: 0.3rem; }
.sdest-nearby-name {
    font-family: var(--font-serif); font-size: 1.4rem;
    color: var(--white); font-weight: 300;
}
.sdest-nearby-tours {
    font-size: 0.62rem; color: var(--gold);
    letter-spacing: 0.1em; margin-top: 0.2rem;
}


/* ── Responsive ── */
@media ( max-width: 1100px ) {
    .sdest-body { grid-template-columns: 1fr; gap: 3rem; }
    .sdest-sidebar { position: static; }
}
@media ( max-width: 768px ) {
    .sdest-hero-content { left: 1.5rem; bottom: 7rem; }
    .sdest-title { font-size: 3.5rem; }
    .sdest-facts-bar { flex-direction: column; }
    .sdest-fact { border-right: 1px solid rgba(200,131,58,0.3) !important; }
    .sdest-body { padding: 3rem 1.5rem; }
    .sdest-intro-band { flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; }
    .sdest-intro-stats { gap: 1.5rem; }
    .sdest-gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
    .sdest-gallery-img--large { grid-column: span 2; }
    .sdest-tours { padding: 4rem 1.5rem; }
    .sdest-tours-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .sdest-nearby { padding: 4rem 1.5rem; }
    .sdest-nearby > div > div:last-child { grid-template-columns: 1fr 1fr !important; }
    .sdest-slide-counter { display: none; }
    .sdest-scroll-indicator { display: none; }
}

/* ============================================================
   SINGLE DESTINATION — CONTAINER OVERRIDE
   ============================================================ */
body.single-destination #page,
body.single-destination #content,
body.single-destination #primary,
body.single-destination #main,
body.single-destination .site-content,
body.single-destination .hentry,
body.single-destination .entry-content,
body.single-destination .post-content {
    position: static !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
}

body.single-destination .sdest-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    opacity: 0 !important;
    transition: opacity 1.2s ease !important;
}

body.single-destination .sdest-slide.active {
    opacity: 1 !important;
}

/* ── Destination sidebar cards ── */
body.single-destination .sdest-info-card {
    background: var(--white) !important;
    padding: 2rem !important;
    box-shadow: var(--shadow-md) !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}
body.single-destination .sdest-info-card-title {
    font-size: 0.6rem !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    color: var(--ochre) !important;
    margin-bottom: 1.2rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid rgba(92,58,30,0.1) !important;
    display: flex !important;
}
body.single-destination .sdest-info-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 0.8rem 0 !important;
    border-bottom: 1px solid rgba(92,58,30,0.07) !important;
    font-size: 0.78rem !important;
}
body.single-destination .sdest-info-label { color: var(--bark) !important; }
body.single-destination .sdest-info-value {
    color: var(--deep-earth) !important;
    font-weight: 600 !important;
    text-align: right !important;
}
body.single-destination .sdest-cta-card {
    background: var(--ochre) !important;
    padding: 2rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    display: block !important;
}
body.single-destination .sdest-cta-card h3 {
    font-family: var(--font-serif) !important;
    font-size: 1.4rem !important;
    color: var(--white) !important;
    margin-bottom: 0.8rem !important;
}
body.single-destination .sdest-cta-card p {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 1.5rem !important;
}
body.single-destination .sdest-cta-btn-white {
    display: block !important;
    background: var(--white) !important;
    color: var(--ochre) !important;
    padding: 0.9rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    margin-bottom: 0.7rem !important;
}
body.single-destination .sdest-cta-btn-outline {
    display: block !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    color: var(--white) !important;
    padding: 0.8rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}
body.single-destination .sdest-whatsapp-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    background: #25D366 !important;
    color: var(--white) !important;
    padding: 1rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

/* ── Gallery grid ── */
body.single-destination .sdest-gallery-strip {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    grid-template-rows: 200px !important;
    gap: 0.5rem !important;
}
body.single-destination .sdest-gallery-img {
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
}
body.single-destination .sdest-gallery-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
body.single-destination .sdest-gallery-more-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(44,26,14,0.7) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
}
body.single-destination .sdest-gallery-more-num {
    font-family: var(--font-serif) !important;
    font-size: 2rem !important;
    color: var(--gold) !important;
}
body.single-destination .sdest-gallery-more-label {
    font-size: 0.6rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.7) !important;
}

/* ── Nearby destination cards ── */
body.single-destination .sdest-nearby {
    background: var(--sand) !important;
    padding: 6rem 4rem !important;
}
body.single-destination .sdest-nearby-card {
    position: relative !important;
    height: 280px !important;
    overflow: hidden !important;
    display: block !important;
    text-decoration: none !important;
}
body.single-destination .sdest-nearby-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.7s !important;
}
body.single-destination .sdest-nearby-card:hover img {
    transform: scale(1.08) !important;
}
body.single-destination .sdest-nearby-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(44,26,14,0.88) 0%, transparent 60%) !important;
}
body.single-destination .sdest-nearby-info {
    position: absolute !important;
    bottom: 1.2rem !important;
    left: 1.2rem !important;
    right: 1.2rem !important;
}
body.single-destination .sdest-nearby-flag {
    font-size: 1.2rem !important;
    margin-bottom: 0.3rem !important;
}
body.single-destination .sdest-nearby-name {
    font-family: var(--font-serif) !important;
    font-size: 1.4rem !important;
    color: var(--white) !important;
    font-weight: 300 !important;
}
body.single-destination .sdest-nearby-tours {
    font-size: 0.62rem !important;
    color: var(--gold) !important;
    letter-spacing: 0.1em !important;
    margin-top: 0.2rem !important;
}

/* ── Tours section ── */
body.single-destination .sdest-tours {
    background: var(--deep-earth) !important;
    padding: 7rem 4rem !important;
    position: relative !important;
    overflow: hidden !important;
}
body.single-destination .sdest-tours-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 3rem !important;
}
body.single-destination .sdest-view-all-link {
    color: var(--gold) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}