﻿
:root {
    --cream: #FFFFFF;
    --sand: #FBF3E9;
    --white: #FFFFFF;
    --stone: #2E2013;
    --bark: #241A10;
    --ink: #3A2E22;
    --ink-soft: #7A6E5E;
    --rust: #D97B29;
    --rust-deep: #B8621B;
    --gold: #E0A63A;
    --gold-soft: #F0C878;
    --line: rgba(46,32,19,0.10);
    --line-light: rgba(255,255,255,0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--stone);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.label {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .label::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--rust);
        display: inline-block;
    }

    .label.on-dark {
        color: var(--gold-soft);
    }

        .label.on-dark::before {
            background: var(--gold-soft);
        }

    .label.center {
        justify-content: center;
    }

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

a {
    color: inherit;
    text-decoration: none;
}
/*  img{display:block; width:100%; height:100%; object-fit:cover;}*/
.hero img, .intro img, .stay img, .why-card img, .hl-img img, .pkg-img img,
.safari img, .gal-grid img, .vid-item img, .blog-img img, .cta-section img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p {
    color: var(--ink-soft);
}

::selection {
    background: var(--gold);
    color: var(--stone);
}

.ridge {
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

    .ridge svg {
        width: 100%;
        height: 56px;
        display: block;
    }

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bark);
    border-bottom: 1px solid var(--line-light);
}

    .nav .topline {
        display: flex;
        justify-content: center;
        gap: 36px;
        padding: 7px 0;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: rgba(255,255,255,0.55);
        letter-spacing: 0.04em;
        border-bottom: 1px solid var(--line-light);
    }

    .nav .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 92px;
    }

    .nav .brand {
        display: flex;
        align-items: center;
        gap: 13px;
    }

        .nav .brand .mark {
            width: 38px;
            height: 38px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 16px;
        }

        .nav .brand .name {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            letter-spacing: 0.03em;
            color: var(--white);
            line-height: 1.2;
            font-weight: 600;
        }

            .nav .brand .name small {
                display: block;
                font-family: 'Poppins', sans-serif;
                font-size: 9.5px;
                letter-spacing: 0.14em;
                color: rgba(255,255,255,0.45);
                font-weight: 400;
                text-transform: uppercase;
                margin-top: 2px;
            }

    .nav .links {
        display: flex;
        gap: 30px;
        font-family: 'Poppins', sans-serif;
        font-size: 12.5px;
        letter-spacing: 0.05em;
        font-weight: 500;
        text-transform: uppercase;
        color: rgba(255,255,255,0.82);
    }

        .nav .links a {
            position: relative;
            padding-bottom: 4px;
            transition: color .2s;
        }

            .nav .links a:hover {
                color: var(--gold-soft);
            }

    .nav .cta {
        background: var(--rust);
        color: var(--white);
        padding: 13px 26px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 8px;
    }

/* ---------- 1. HERO ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

    .hero img.bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(20,16,10,0.88) 0%, rgba(20,16,10,0.35) 42%, rgba(20,16,10,0.15) 65%, rgba(20,16,10,0.4) 100%);
        z-index: 1;
    }

    .hero .wrap {
        position: relative;
        z-index: 2;
        color: var(--white);
        padding-bottom: 64px;
        width: 100%;
    }

.hero-content {
    max-width: 80%;
    border-left: 2px solid var(--gold);
    padding-left: 28px;
}

.hero .label {
    color: var(--gold-soft);
    margin-bottom: 18px;
}

    .hero .label::before {
        background: var(--gold-soft);
    }

.hero h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold-soft);
        font-weight: 500;
    }

.hero p {
    max-width: 100%;
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
}

.btn-primary {
    background: var(--rust);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: background .2s;
}

    .btn-primary:hover {
        background: var(--rust-deep);
    }

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
}

.book-bar {
    background: var(--white);
    max-width: 980px;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}

.book-field {
    padding: 20px 26px;
    border-right: 1px solid var(--line);
    text-align: left;
}

    .book-field:last-of-type {
        border-right: none;
    }

    .book-field label {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--rust);
        margin-bottom: 6px;
        font-weight: 600;
    }

    .book-field span {
        font-family: 'Inter', sans-serif;
        font-size: 14.5px;
        color: var(--ink);
    }

.book-bar .go {
    background: var(--rust);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ---------- 2. INTRODUCTION ---------- */
.intro {
    background: var(--cream);
    padding: 55px 0;
}

    .intro .grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 70px;
        align-items: center;
    }

    .intro .imgcol {
        position: relative;
        aspect-ratio: 4/5;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(46,32,19,0.12);
    }

        .intro .imgcol img {
            border: none;
        }

    .intro .copy h2 {
        font-size: 34px;
        line-height: 1.2;
        margin: 14px 0 24px;
    }

    .intro .copy p {
        font-size: 15.5px;
        margin-bottom: 20px;
    }

        .intro .copy p:first-child {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-style: italic;
            color: var(--stone);
            line-height: 1.55;
            margin-bottom: 26px;
        }

    .intro .explore {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 12.5px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--rust);
        font-weight: 600;
    }

        .intro .explore .arrow {
            width: 38px;
            height: 1px;
            background: var(--rust);
            position: relative;
        }

            .intro .explore .arrow::after {
                content: "";
                position: absolute;
                right: 0;
                top: -3px;
                width: 7px;
                height: 7px;
                border-right: 1px solid var(--rust);
                border-bottom: 1px solid var(--rust);
                transform: rotate(-45deg);
            }

/* ---------- 3. ACCOMMODATION ---------- */
.stay {
    background: var(--white);
    padding: 72px 0;
}

    .stay .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    .stay .imgcol {
        position: relative;
        aspect-ratio: 4/5;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(46,32,19,0.12);
    }

        .stay .imgcol img {
            border: none;
        }

    .stay h2 {
        font-size: 34px;
        margin: 14px 0 18px;
    }

    .stay p {
        font-size: 15.5px;
        margin-bottom: 18px;
    }

.specs {
    display: flex;
    gap: 30px;
    margin: 28px 0 32px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--ink);
}

.stay .spec .ico {
    width: 22px;
    height: 22px;
    opacity: 0.75;
}

.stay .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
}

    .stay .price b {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 600;
        color: var(--stone);
    }

    .stay .price span {
        font-family: 'Poppins', sans-serif;
        font-size: 12.5px;
        color: var(--ink-soft);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

/* ---------- 3. WHY CHOOSE JALSA JAWAI ---------- */
.why {
    background: var(--sand);
    padding: 40px 0;
}

    .why .head {
        max-width: 680px;
        margin-bottom: 36px;
    }

    .why h2 {
        font-size: 34px;
        margin-top: 14px;
    }

    .why .head p {
        font-size: 15.5px;
        margin-top: 18px;
        max-width: 620px;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.why-card {
    background: var(--white);
    padding: 34px 22px;
    position: relative;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(46,32,19,0.06);
    transition: transform .2s, box-shadow .2s;
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(46,32,19,0.1);
    }

    .why-card .icon {
        width: 46px;
        height: 46px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .why-card .icon img {
            object-fit: contain;
        }

    .why-card .eyebrow {
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--rust);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .why-card h3 {
        font-size: 15.5px;
        font-weight: 600;
    }

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    max-width: 820px;
    margin: 0 auto;
}

    .why-list li {
        list-style: none;
        padding: 14px 0;
        border-top: 1px solid var(--line);
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--ink);
    }

        .why-list li .tick {
            width: 14px;
            height: 2px;
            background: var(--rust);
            flex-shrink: 0;
        }

/* ---------- 4. SAFARI HIGHLIGHTS ---------- */
.highlights {
    background: var(--white);
    padding: 72px 0;
}

    .highlights .head {
        max-width: 600px;
        margin: 0 auto 36px;
        text-align: center;
    }

    .highlights h2 {
        font-size: 34px;
        margin-top: 14px;
    }

.hl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hl-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--sand);
    box-shadow: 0 10px 26px rgba(46,32,19,0.07);
    transition: transform .2s, box-shadow .2s;
}

    .hl-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(46,32,19,0.12);
    }

.hl-img {
    aspect-ratio: 4/3;
    position: relative;
}

.hl-card h3 {
    padding: 18px 20px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
}

/* ---------- 5. SAFARI PACKAGES ---------- */
.packages {
    background: var(--sand);
    padding: 40px 0;
}

    .packages .head {
        max-width: 600px;
        margin: 0 auto 40px;
        text-align: center;
    }

    .packages h2 {
        font-size: 34px;
        margin-top: 14px;
    }

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pkg-card {
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(46,32,19,0.08);
}

    .pkg-card.featured {
        background: var(--stone);
    }

.pkg-badge {
    position: absolute;
    top: 18px;
    right: 0;
    background: var(--rust);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 16px;
    z-index: 2;
    border-radius: 8px 0 0 8px;
}

.pkg-img {
    aspect-ratio: 16/11;
    position: relative;
}

    .pkg-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pkg-img::after {
        content: "";
        position: absolute;
        inset: 0;
        border-bottom: 2px solid var(--gold);
    }

.pkg-body {
    padding: 32px 30px;
}

    .pkg-body .label {
        margin-bottom: 12px;
    }

    .pkg-body h3 {
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 600;
    }

.pkg-card.featured h3, .pkg-card.featured .label {
    color: var(--white);
}

.pkg-card.featured .label {
    color: var(--gold-soft);
}

    .pkg-card.featured .label::before {
        background: var(--gold-soft);
    }

.pkg-body p {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.65;
}

.pkg-card.featured p {
    color: rgba(255,255,255,0.65);
}

.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.pkg-card.featured .pkg-price {
    border-top: 1px solid var(--line-light);
}

.pkg-price b {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--stone);
}

.pkg-card.featured .pkg-price b {
    color: var(--white);
}

.pkg-price span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--ink-soft);
}

.pkg-body a {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid var(--stone);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--stone);
    transition: all .2s;
}

    .pkg-body a:hover {
        background: var(--stone);
        color: var(--white);
    }

.pkg-card.featured .pkg-body a {
    background: var(--gold);
    color: var(--stone);
    border-color: var(--gold);
}

    .pkg-card.featured .pkg-body a:hover {
        background: var(--gold-soft);
    }

/* ---------- 6. SAFARI HIGHLIGHTS ---------- */
.safari {
    background: var(--white);
    padding: 72px 0;
}

    .safari .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    .safari .imgcol {
        position: relative;
        aspect-ratio: 4/5;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(46,32,19,0.12);
    }

        .safari .imgcol img {
            border: none;
        }

    .safari .tag {
        position: absolute;
        bottom: -18px;
        left: -18px;
        background: var(--stone);
        color: var(--white);
        padding: 14px 20px;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 11.5px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .safari h2 {
        font-size: 34px;
        margin: 14px 0 18px;
    }

    .safari p {
        font-size: 15.5px;
        margin-bottom: 26px;
    }

    .safari ul {
        list-style: none;
        margin-bottom: 32px;
    }

    .safari li {
        padding: 14px 0;
        border-top: 1px solid var(--line);
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--ink);
    }

        .safari li:last-child {
            border-bottom: 1px solid var(--line);
        }

        .safari li .tick {
            width: 14px;
            height: 2px;
            background: var(--rust);
        }

.btn-outline {
    border: 1px solid var(--stone);
    color: var(--stone);
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: all .2s;
}

    .btn-outline:hover {
        background: var(--stone);
        color: var(--white);
    }

/* ---------- 7. GALLERY ---------- */
.gallery {
    background: var(--sand);
    padding: 55px 0;
}

    .gallery .head {
        max-width: 600px;
        margin: 0 auto 34px;
        text-align: center;
    }

    .gallery h2 {
        font-size: 34px;
        margin-top: 14px;
    }

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 185px;
    gap: 10px;
}

    .gal-grid .g1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gal-grid > div {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }

    .gal-grid img {
        transition: transform .5s ease;
    }

    .gal-grid > div:hover img {
        transform: scale(1.06);
    }

.gallery .social {
    text-align: center;
    margin-top: 40px;
}

    .gallery .social a {
        font-family: 'Poppins', sans-serif;
        font-size: 12.5px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--rust);
        font-weight: 600;
    }

/* ---------- 8. TESTIMONIALS ---------- */
.testimonial {
    background: var(--sand);
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .testimonial .head {
        max-width: 600px;
        margin: 0 auto 36px;
    }

    .testimonial h2 {
        font-size: 34px;
        margin-top: 14px;
    }

.t-slider {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
}

.t-track {
    display: flex;
    transition: transform .6s ease;
}

.t-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 4px;
}

.t-card {
    background: var(--white);
    border-radius: 16px;
    padding: 34px 30px;
    text-align: left;
    box-shadow: 0 12px 32px rgba(46,32,19,0.08);
    display: flex;
    flex-direction: column;
}

    .t-card .mark {
        font-family: 'Poppins', sans-serif;
        font-size: 44px;
        color: var(--rust);
        line-height: 0.5;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .t-card p {
        font-size: 14.5px;
        color: var(--ink-soft);
        line-height: 1.7;
        margin-bottom: 22px;
        flex-grow: 1;
    }

    .t-card .who {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .t-card .avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--rust);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 14px;
        flex-shrink: 0;
    }

    .t-card .who b {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-size: 13.5px;
        color: var(--stone);
        font-weight: 600;
    }

    .t-card .who span {
        font-size: 12px;
        color: var(--ink-soft);
    }

.t-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

    .t-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--line);
        cursor: pointer;
        transition: background .2s, width .2s;
    }

        .t-dots .dot.active {
            background: var(--rust);
            width: 22px;
            border-radius: 5px;
        }

/* ---------- 9. FAQ ---------- */
.faq {
    background: var(--white);
    padding: 50px 0;
}

    .faq .inner {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq .head {
        text-align: center;
        margin-bottom: 36px;
    }

    .faq h2 {
        font-size: 34px;
        margin-top: 14px;
    }

.faq-item {
    border-top: 1px solid var(--line);
}

    .faq-item:last-child {
        border-bottom: 1px solid var(--line);
    }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 2px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

    .faq-q .plus {
        color: var(--rust);
        font-size: 20px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        flex-shrink: 0;
    }

.faq-a {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--ink-soft);
    padding: 0 2px 26px;
    max-width: 640px;
    display: none;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-q .plus {
    display: inline-block;
    transition: transform .2s ease;
}

.faq-item.active .faq-q .plus {
    transform: rotate(45deg);
}

/* ---------- 10. CTA ---------- */
.cta-section {
    position: relative;
    padding: 96px 0;
    text-align: center;
    overflow: hidden;
}

    .cta-section img.bg {
        position: absolute;
        inset: 0;
        object-fit: cover;
        z-index: 0;
    }

    .cta-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(17,13,8,0.78);
        z-index: 1;
    }

    .cta-section .wrap {
        position: relative;
        z-index: 2;
    }

    .cta-section .label {
        color: var(--gold-soft);
        justify-content: center;
        margin-bottom: 20px;
    }

        .cta-section .label::before {
            background: var(--gold-soft);
        }

    .cta-section h2 {
        color: var(--white);
        font-size: clamp(28px,3.6vw,44px);
        max-width: 640px;
        margin: 0 auto 24px;
        line-height: 1.2;
    }

    .cta-section p {
        color: rgba(255,255,255,0.78);
        max-width: 440px;
        margin: 0 auto 36px;
        font-size: 15px;
    }

footer {
    background: var(--bark);
    color: rgba(255,255,255,0.55);
    padding: 56px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    border-top: 1px solid var(--line-light);
}

    footer .fgrid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    footer .fcol .name {
        font-family: 'Poppins', sans-serif;
        font-size: 17px;
        color: var(--white);
        margin-bottom: 14px;
    }

    footer .fcol p {
        color: rgba(255,255,255,0.5);
        font-size: 12.5px;
        line-height: 1.8;
    }

    footer .fcol h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.8);
        margin-bottom: 16px;
    }

    footer .fcol ul {
        list-style: none;
    }

    footer .fcol li {
        margin-bottom: 11px;
    }

    footer .fcol a {
        color: rgba(255,255,255,0.55);
        transition: color .2s;
    }

        footer .fcol a:hover {
            color: var(--gold-soft);
        }

    footer .fbottom {
        border-top: 1px solid var(--line-light);
        padding: 22px 0;
        text-align: center;
        color: rgba(255,255,255,0.4);
        font-size: 11.5px;
    }

@media (max-width: 860px) {
    .t-slide {
        grid-template-columns: 1fr;
        padding: 2px;
    }

    .nav .links, .nav .topline {
        display: none;
    }

    .intro .grid, .safari .grid, .stay .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .hl-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .pkg-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gal-grid {
        grid-template-columns: repeat(2,1fr);
    }

        .gal-grid .g1 {
            grid-column: span 2;
        }

    .book-bar {
        grid-template-columns: 1fr 1fr;
    }

        .book-bar .go {
            grid-column: span 2;
        }

    .hero-content {
        border-left: none;
        padding-left: 0;
    }

    footer .fgrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .specs {
        flex-wrap: wrap;
        gap: 18px;
    }
}


/* ---------- VIDEO SLIDER ---------- */
.video-gallery {
    background: var(--white);
    padding: 50px 0;
}

.video-gallery .head {
    max-width: 600px;
    margin: 0 auto 34px;
    text-align: center;
}

.video-gallery h2 {
    font-size: 34px;
    margin-top: 14px;
}

.vid-slider-wrap {
    position: relative;
}

.vid-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
/*.vid-grid::-webkit-scrollbar{height:6px;}
.vid-grid::-webkit-scrollbar-thumb{background:var(--rust); border-radius:3px;}*/

.vid-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .vid-grid::-webkit-scrollbar {
        display: none;
        height: 0;
    }

.vid-item {
    flex: 0 0 356px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 10/14;
    background: #000;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(46,32,19,0.12);
}

    .vid-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
    }

.vid-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(20,16,10,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    pointer-events: none;
}

.vid-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 14px 12px;
    background: linear-gradient(to top, rgba(20,16,10,.8) 0%, transparent 70%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.vid-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rust);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

    .vid-nav:hover {
        background: var(--rust-deep);
    }

    .vid-nav.prev {
        left: -70px;
    }

    .vid-nav.next {
        right: -76px;
    }

@media (max-width:640px) {
    .vid-nav {
        display: none;
    }
}

/* Video popup modal */
.vid-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,15,10,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

    .vid-modal-overlay.active {
        display: flex;
    }

.vid-modal-box {
    position: relative;
    max-width: 420px;
    width: 100%;
    max-height: 85vh;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

    .vid-modal-box video {
        width: 100%;
        height: 100%;
        max-height: 85vh;
        display: block;
    }

.vid-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .vid-modal-close:hover {
        background: rgba(0,0,0,0.85);
    }




/* ---------- BLOG SLIDER ---------- */
.blog-gallery {
    background: var(--sand);
    padding: 72px 0;
}

    .blog-gallery .head {
        max-width: 600px;
        margin: 0 auto 34px;
        text-align: center;
    }

    .blog-gallery h2 {
        font-size: 34px;
        margin-top: 14px;
    }

.blog-slider-wrap {
    position: relative;
}

.blog-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

    .blog-grid::-webkit-scrollbar {
        height: 6px;
    }

    .blog-grid::-webkit-scrollbar-thumb {
        background: var(--rust);
        border-radius: 3px;
    }

.blog-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    display: block;
    box-shadow: 0 10px 26px rgba(46,32,19,0.1);
    transition: transform .2s, box-shadow .2s;
}

    .blog-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(46,32,19,0.14);
    }

.blog-img {
    aspect-ratio: 4/3;
    position: relative;
}

.blog-item-label {
    padding: 16px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--stone);
    line-height: 1.4;
}

.blog-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rust);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

    .blog-nav:hover {
        background: var(--rust-deep);
    }

    .blog-nav.prev {
        left: -8px;
    }

    .blog-nav.next {
        right: -8px;
    }

@media (max-width:640px) {
    .blog-nav {
        display: none;
    }
}


@media (max-width: 767px) {
    .hero {
        padding-top: 110px;
    }

    .hero {
        min-height: 80vh;
    }

        .hero p {
            max-width: 100%;
        }

    .hero-ctas {
        flex-wrap: wrap;
    }

    .intro .copy h2, .stay h2, .safari h2, .why h2, .highlights h2,
    .packages h2, .gallery h2, .testimonial h2, .faq h2 {
        font-size: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .why-card {
        padding: 24px 16px;
    }

    .hl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }

    .vid-item {
        flex: 0 0 200px;
    }

    .blog-item {
        flex: 0 0 240px;
    }

    .t-slide {
        gap: 14px;
    }

    .t-card {
        padding: 24px 20px;
    }

    footer .fgrid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 567px) {
    .wrap {
        padding: 0 18px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero {
        min-height: 75vh;
    }

        .hero h1 {
            font-size: 28px;
        }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }

        .hero-ctas a {
            text-align: center;
            width: 100%;
        }

    .intro, .stay, .why, .highlights, .packages, .safari, .gallery, .video-gallery, .blog-gallery, .testimonial, .faq {
        padding: 36px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hl-grid {
        grid-template-columns: 1fr;
    }

    .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
        gap: 8px;
    }

        .gal-grid .g1 {
            grid-column: span 2;
            grid-row: span 1;
        }

    .vid-item {
        flex: 0 0 170px;
    }

    .blog-item {
        flex: 0 0 200px;
    }

    .pkg-body {
        padding: 22px 20px;
    }

        .pkg-body h3 {
            font-size: 18px;
        }

    .safari .tag {
        left: 0;
        bottom: -14px;
        font-size: 10px;
        padding: 10px 14px;
    }

    .t-card {
        padding: 20px 16px;
    }

        .t-card p {
            font-size: 13.5px;
        }

    .faq-q {
        font-size: 15px;
        padding: 20px 2px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section {
        padding: 44px 0;
    }
}

