:root {
    --primary-yellow: #f9c400;
    --yellow-hover: #dfae00;
    --black: #111111;
    --charcoal: #242424;
    --cream: #f8f5ee;
    --white: #ffffff;
    --dark: #171717;
    --grey: #5f6368;
    --border: rgba(255, 255, 255, 0.2);
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.16);

    /* Compatibility with the original navbar styles */
    --primary-green: var(--black);
    --primary-green-dark: var(--charcoal);
    --gold: var(--primary-yellow);
    --gold-light: #ffdc4d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background-color: var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: var(--primary-green);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(6, 41, 31, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.navbar {
    width: min(94%, 1400px);
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
}

.brand-mark {
    width: 46px;
    height: 46px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.15rem;
    letter-spacing: 0.18em;
}

.brand-text small {
    margin-top: 0.3rem;
    color: var(--gold-light);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
}

.nav-link {
    position: relative;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.55rem;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}

.book-now-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.35rem;
    border: 2px solid var(--gold);
    border-radius: 12px;
    color: var(--primary-green-dark);
    background: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.book-now-button:hover,
.book-now-button:focus-visible {
    transform: translateY(-2px);
    color: var(--white);
    background: transparent;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.2);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

    main {
    padding-top: 0;
};


@media (max-width: 1100px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        display: block;
        padding: 0 1.25rem;
        background: var(--primary-green-dark);
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            padding 0.35s ease;
    }

    .nav-menu.open {
        max-height: 650px;
        padding-top: 1.25rem;
        padding-bottom: 1.5rem;
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 0.95rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nav-link::after {
        display: none;
    }

    .book-now-button {
        width: 100%;
        margin-top: 1.25rem;
    }
}

@media (max-width: 520px) {
    .navbar {
        width: min(92%, 1400px);
        min-height: 74px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .brand-text strong {
        font-size: 0.95rem;
    }

    .brand-text small {
        font-size: 0.53rem;
    }

    .nav-menu {
        top: 74px;
    }

    main {
        padding-top: 0;
    }
}
/* =================================
   Hero section
================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.65) 48%,
            rgba(0, 0, 0, 0.25) 100%
        ),url(../images/home-banner.jpg)
        url("../") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.45)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(90%, 1400px);
    margin: 0 auto;
    padding: 9rem 0 6rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 42px;
    height: 3px;
    border-radius: 10px;
    background: var(--primary-yellow);
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 1.5rem;
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
    color: var(--primary-yellow);
}

.hero-description {
    max-width: 700px;
    margin-bottom: 2.2rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-button {
    min-height: 54px;
    padding: 0.9rem 1.5rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-button:hover,
.hero-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 196, 0, 0.25);
}

.hero-button-primary {
    color: var(--black);
    background: var(--primary-yellow);
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
    background: var(--yellow-hover);
}

.hero-button-secondary {
    color: var(--white);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
    color: var(--black);
    background: var(--primary-yellow);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 760px;
        background-position: 60% center;
    }

    .hero-content {
        width: min(90%, 1400px);
        padding-top: 8rem;
    }

    .hero-description {
        line-height: 1.7;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 360px;
    }

    .hero-button {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-indicator {
        animation: none;
    }
}
/* =================================
   About preview section
================================= */

.section-container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.about-preview {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(250, 249, 244, 0.96),
            rgba(250, 249, 244, 0.96)
        ),
        url("../images/assets/amages/WhatsApp Image 2026-07-22 at 17.57.46.jpg") center / cover no-repeat;
    background-attachment: fixed;
}


.about-preview::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(249, 196, 0, 0.09);
}

.about-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #806300;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 38px;
    height: 3px;
    background: var(--primary-yellow);
}

.about-content h2 {
    max-width: 650px;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.about-content > p {
    margin-bottom: 1.2rem;
    color: var(--grey);
    line-height: 1.8;
}

.about-content .about-lead {
    color: var(--charcoal);
    font-size: 1.08rem;
    font-weight: 500;
}

.mandate-box {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 5px solid var(--primary-yellow);
    border-radius: 0 16px 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.mandate-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.2rem;
}

.mandate-box h3 {
    margin-bottom: 0.45rem;
    color: var(--black);
    font-size: 1.05rem;
}

.mandate-box p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--black);
    font-weight: 700;
    transition: color 0.25s ease, gap 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
    gap: 1rem;
    color: #806300;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.experience-card {
    min-height: 245px;
    padding: 1.7rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-7px);
    border-color: var(--primary-yellow);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.experience-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.2rem;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.3rem;
}

.experience-card h3 {
    margin-bottom: 0.7rem;
    color: var(--black);
    font-size: 1.05rem;
}

.experience-card p {
    color: var(--grey);
    font-size: 0.88rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 560px) {
    .about-preview {
        padding: 5rem 0;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .mandate-box {
        flex-direction: column;
    }
    .about-preview {
    background-attachment: scroll;
}
}
.about-preview {
    background-image:
        linear-gradient(
            rgba(250, 249, 244, 0.72),
            rgba(250, 249, 244, 0.82)
        ),
        url("../images/assets/images/WhatsApp Image 2026-07-22 at 17.57.46.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* =================================
   Why choose us
================================= */

.why-choose-us {
    padding: 7rem 0;
    color: var(--white);
    background: var(--black);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-label-centred {
    justify-content: center;
    color: var(--primary-yellow);
}

.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.benefit-card {
    position: relative;
    min-height: 330px;
    padding: 2rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    overflow: hidden;
    background: var(--charcoal);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    background: #2d2d2d;
}

.benefit-number {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: rgba(255, 255, 255, 0.08);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.benefit-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin-bottom: 1.6rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.35rem;
}

.benefit-card h3 {
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.benefit-card p {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.75;
}

.why-cta {
    margin-top: 3.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(249, 196, 0, 0.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(249, 196, 0, 0.07);
}

.why-cta p {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-button {
    min-height: 50px;
    padding: 0.8rem 1.3rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: var(--black);
    background: var(--primary-yellow);
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.section-button:hover,
.section-button:focus-visible {
    transform: translateY(-3px);
    background: var(--yellow-hover);
}

@media (max-width: 1000px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-choose-us {
        padding: 5rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }

    .why-cta {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .section-button {
        width: 100%;
    }
}
/* =================================
   Shared light section heading
================================= */

.light-section-heading {
    max-width: 750px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.light-section-heading h2 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.light-section-heading > p:last-child {
    color: var(--grey);
    line-height: 1.8;
}

/* =================================
   Strategic plans
================================= */

.strategic-plans {
    padding: 7rem 0;
    background: var(--white);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.5rem;
}

.strategy-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: var(--cream);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-7px);
    border-color: var(--primary-yellow);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.strategy-card-featured {
    border-top: 5px solid var(--primary-yellow);
    background: var(--black);
}

.strategy-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.35rem;
}

.strategy-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.25rem;
}

.strategy-card p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.8;
}

.strategy-card-featured h3 {
    color: var(--white);
}

.strategy-card-featured p {
    color: rgba(255, 255, 255, 0.78);
}

/* =================================
   Core values
================================= */

.core-values {
    padding: 7rem 0;
    background:
        linear-gradient(
            rgba(249, 196, 0, 0.06),
            rgba(249, 196, 0, 0.12)
        ),
        var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-yellow);
}

.value-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.3rem;
}

.value-card h3 {
    margin-bottom: 0.65rem;
    color: var(--black);
    font-size: 1.15rem;
}

.value-card p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .strategic-plans,
    .core-values {
        padding: 5rem 0;
    }

    .value-card {
        flex-direction: column;
    }
}
/* =================================
   Featured destinations
================================= */

.featured-destinations {
    padding: 7rem 0;
    background: var(--white);
}

.destinations-heading {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.destinations-heading h2 {
    max-width: 700px;
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    min-height: 470px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--black);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.07);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 15%,
            rgba(0, 0, 0, 0.92) 100%
        );
}

.destination-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 2rem;
    color: var(--white);
}

.destination-type {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.destination-content h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.destination-content p {
    max-width: 520px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.7;
}

.destination-content a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--primary-yellow);
    font-weight: 700;
    transition: gap 0.25s ease;
}

.destination-content a:hover,
.destination-content a:focus-visible {
    gap: 1rem;
}

@media (max-width: 800px) {
    .destinations-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        min-height: 430px;
    }
}

@media (max-width: 500px) {
    .featured-destinations {
        padding: 5rem 0;
    }

    .destination-card {
        min-height: 400px;
    }

    .destination-content {
        padding: 1.5rem;
    }
}
/* =================================
   Featured safari packages
================================= */

.featured-packages {
    padding: 7rem 0;
    background: var(--cream);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.5rem;
}

.package-card {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.package-card-dark {
    color: var(--white);
    background: var(--black);
}

.package-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.4rem;
}

.package-category {
    margin-bottom: 0.65rem;
    color: #806300;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-card-dark .package-category {
    color: var(--primary-yellow);
}

.package-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.35rem;
    line-height: 1.4;
}

.package-card-dark h3 {
    color: var(--white);
}

.package-description {
    margin-bottom: 1.5rem;
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.75;
}

.package-card-dark .package-description {
    color: rgba(255, 255, 255, 0.75);
}

.package-list {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.8rem;
    list-style: none;
}

.package-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--charcoal);
    font-size: 0.88rem;
    line-height: 1.5;
}

.package-card-dark .package-list li {
    color: rgba(255, 255, 255, 0.84);
}

.package-list i {
    margin-top: 0.25rem;
    color: #806300;
}

.package-card-dark .package-list i {
    color: var(--primary-yellow);
}

.package-link {
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--black);
    font-weight: 700;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.package-card-dark .package-link {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: var(--primary-yellow);
}

.package-link:hover,
.package-link:focus-visible {
    gap: 1rem;
    color: #806300;
}

.package-card-dark .package-link:hover,
.package-card-dark .package-link:focus-visible {
    color: var(--white);
}

.packages-action {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 950px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .featured-packages {
        padding: 5rem 0;
    }

    .package-card {
        padding: 1.6rem;
    }
}
/* =================================
   Guest experience
================================= */

.guest-experience {
    padding: 7rem 0;
    color: var(--white);
    background: var(--black);
}

.guest-experience-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 4rem;
}

.guest-experience-content h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.guest-experience-content > p:not(.section-label) {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.guest-experience-content .section-button {
    margin-top: 1rem;
}

.guest-gallery {
    height: 600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}

.guest-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--charcoal);
}

.guest-image-large {
    grid-row: span 2;
}

.guest-image-wide {
    grid-column: span 2;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.guest-image:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

@media (max-width: 900px) {
    .guest-experience-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .guest-experience {
        padding: 5rem 0;
    }

    .guest-gallery {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .guest-image,
    .guest-image-large,
    .guest-image-wide {
        grid-column: auto;
        grid-row: auto;
        height: 280px;
    }

    .guest-experience-content .section-button {
        width: 100%;
    }
}
/* =================================
   Contact section
================================= */

.contact-section {
    padding: 7rem 0;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
}

.contact-content h2 {
    max-width: 650px;
    margin-bottom: 1.4rem;
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.contact-introduction {
    max-width: 680px;
    margin-bottom: 2.3rem;
    color: var(--grey);
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-card {
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateX(7px);
    border-color: var(--primary-yellow);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.15rem;
}

.contact-card > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-card small {
    margin-bottom: 0.2rem;
    color: #806300;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--black);
    overflow-wrap: anywhere;
}

.contact-card > span:last-child > span {
    margin-top: 0.2rem;
    color: var(--grey);
    font-size: 0.82rem;
}

.contact-action {
    padding: 3rem;
    border-radius: 24px;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.contact-action-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 2rem;
}

.contact-action-label {
    margin-bottom: 0.7rem;
    color: var(--primary-yellow);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-action h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.25;
}

.contact-action > p:not(.contact-action-label) {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

.whatsapp-contact-button {
    width: 100%;
    min-height: 54px;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: var(--black);
    background: var(--primary-yellow);
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.whatsapp-contact-button:hover,
.whatsapp-contact-button:focus-visible {
    transform: translateY(-3px);
    background: var(--yellow-hover);
}

.contact-page-link {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.contact-page-link:hover,
.contact-page-link:focus-visible {
    gap: 0.9rem;
    color: var(--primary-yellow);
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 560px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-action {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        align-items: flex-start;
    }
}
/* Right side of contact section */

.contact-layout {
    align-items: end;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-enquiry-link {
    min-height: 88px;
    padding: 1rem 1.2rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--black);
    background: var(--white);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease;
}

.booking-enquiry-link:hover,
.booking-enquiry-link:focus-visible {
    transform: translateX(7px);
    background: var(--primary-yellow);
}

.booking-enquiry-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.15rem;
}

.booking-enquiry-link:hover .booking-enquiry-icon {
    background: var(--white);
}

.booking-enquiry-link > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.booking-enquiry-link small {
    margin-bottom: 0.2rem;
    color: #806300;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.booking-enquiry-link strong {
    font-size: 0.9rem;
}

.booking-arrow {
    margin-left: auto;
}

@media (max-width: 900px) {
    .contact-layout {
        align-items: stretch;
    }
}
/* =================================
   Website footer
================================= */

.site-footer {
    color: var(--white);
    background: var(--black);
}

.footer-grid {
    padding-top: 5rem;
    padding-bottom: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    margin-bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand-mark {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-yellow);
    font-weight: 800;
}

.footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand strong {
    letter-spacing: 0.15em;
}

.footer-brand small {
    margin-top: 0.3rem;
    color: var(--primary-yellow);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
}

.footer-company p,
.footer-social-column p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.87rem;
    line-height: 1.75;
}

.footer-column h2 {
    margin-bottom: 1.3rem;
    color: var(--white);
    font-size: 1rem;
}

.footer-column h2::after {
    content: "";
    width: 35px;
    height: 3px;
    margin-top: 0.65rem;
    display: block;
    background: var(--primary-yellow);
}

.footer-column ul {
    display: grid;
    gap: 0.8rem;
    list-style: none;
}

.footer-column li,
.footer-column li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-column a {
    transition: color 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--primary-yellow);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-list i {
    margin-top: 0.2rem;
    color: var(--primary-yellow);
}

.footer-contact-list a {
    overflow-wrap: anywhere;
}

.social-links {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--charcoal);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-4px);
    border-color: var(--primary-yellow);
    color: var(--black);
    background: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #090909;
}

.footer-bottom-content {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.footer-bottom-content > div {
    display: flex;
    gap: 1.3rem;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--primary-yellow);
}

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        padding-top: 4rem;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-bottom-content > div {
        flex-wrap: wrap;
    }
}
/* =================================
   About page hero
================================= */

.page-hero {
    position: relative;
    min-height: 100vh;
    padding: 11rem 0 6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-color: var(--black);
}

.about-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.35)
        ),
        url("..//images/about-us-banner.jpg") center / cover no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.4)
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-label {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 1.3rem;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1.08;
}

.page-hero-content > p:not(.page-hero-label) {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

.breadcrumbs {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
}

.breadcrumbs a {
    color: var(--primary-yellow);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 560px) {
    .page-hero {
        min-height: 600px;
        padding-top: 9rem;
    }
}
/* =================================
   About story section
================================= */

.about-page-introduction {
    padding: 7rem 0;
    background: var(--white);
}

.about-story-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
}

.about-story-image {
    position: relative;
    min-height: 650px;
    border-radius: 24px;
}

.about-story-image img {
    width: 100%;
    height: 650px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.established-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    width: 165px;
    padding: 1.3rem;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    color: var(--black);
    background: var(--primary-yellow);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.established-badge strong {
    font-size: 2rem;
}

.established-badge span {
    font-size: 0.75rem;
    font-weight: 700;
}

.about-story-content h2 {
    margin-bottom: 1.4rem;
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.about-story-content h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.4rem;
}

.about-story-content p {
    margin-bottom: 1.15rem;
    color: var(--grey);
    line-height: 1.8;
}

.about-story-content .about-story-lead {
    color: var(--charcoal);
    font-size: 1.08rem;
    font-weight: 600;
}

.story-divider {
    width: 65px;
    height: 4px;
    margin: 2rem 0;
    border-radius: 10px;
    background: var(--primary-yellow);
}

@media (max-width: 900px) {
    .about-story-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-story-image,
    .about-story-image img {
        min-height: 500px;
        height: 500px;
    }

    .established-badge {
        right: 20px;
    }
}

@media (max-width: 560px) {
    .about-page-introduction {
        padding: 5rem 0;
    }

    .about-story-image,
    .about-story-image img {
        min-height: 400px;
        height: 400px;
    }
}
/* =================================
   What we do
================================= */

.what-we-do {
    padding: 7rem 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-item {
    min-height: 170px;
    padding: 1.7rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
}

.service-item i {
    color: #806300;
    font-size: 1.6rem;
}

.service-item h3 {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.5;
}

.service-item:hover i {
    color: var(--black);
}

@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .what-we-do {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================
   Destinations page
================================= */

.destinations-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.35)
        ),
        url("../images/destinations-banner.jpg") center / cover no-repeat;
}

.destinations-overview {
    padding: 7rem 0;
    background: var(--cream);
}

.destination-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.destination-overview-card {
    position: relative;
    min-height: 410px;
    border-radius: 20px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.destination-overview-card:hover,
.destination-overview-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.2);
}

.destination-overview-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-overview-card:hover img {
    transform: scale(1.08);
}

.destination-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 10%,
        rgba(0, 0, 0, 0.94) 100%
    );
}

.destination-overview-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1.5rem;
}

.destination-overview-content > span {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--primary-yellow);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.destination-overview-content h3 {
    margin-bottom: 0.65rem;
    font-size: 1.25rem;
    line-height: 1.35;
}

.destination-overview-content p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    line-height: 1.6;
}

.destination-overview-content strong {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

@media (max-width: 1100px) {
    .destination-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destinations-overview {
        padding: 5rem 0;
    }

    .destination-overview-grid {
        grid-template-columns: 1fr;
    }

    .destination-overview-card {
        min-height: 390px;
    }
}
/* =================================
   Safari packages page
================================= */

.package-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.35)
        ),
        url("../images/safari-packages.Jpeg") center / cover no-repeat;
}

.package-category-section {
    padding: 7rem 0;
    background: var(--cream);
}

.package-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.5rem;
}

.package-category-card {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    color: var(--black);
    background: var(--white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.package-category-card:hover,
.package-category-card:focus-visible {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.package-category-featured {
    color: var(--white);
    background: var(--black);
}

.package-category-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 1.5rem;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 1.4rem;
}

.category-number {
    position: absolute;
    top: 1.2rem;
    right: 1.3rem;
    color: rgba(0, 0, 0, 0.07);
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1;
}

.package-category-featured .category-number {
    color: rgba(255, 255, 255, 0.08);
}

.category-label {
    margin-bottom: 0.6rem;
    color: #806300;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.package-category-featured .category-label {
    color: var(--primary-yellow);
}

.package-category-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.35;
}

.package-category-card > p:not(.category-label) {
    margin-bottom: 1.4rem;
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.75;
}

.package-category-featured > p:not(.category-label) {
    color: rgba(255, 255, 255, 0.75);
}

.package-category-card ul {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.65rem;
    list-style: none;
}

.package-category-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--charcoal);
    font-size: 0.86rem;
}

.package-category-card li::before {
    content: "✓";
    color: #806300;
    font-weight: 800;
}

.package-category-featured li {
    color: rgba(255, 255, 255, 0.84);
}

.package-category-featured li::before {
    color: var(--primary-yellow);
}

.package-category-card strong {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #806300;
    font-size: 0.86rem;
}

.package-category-featured strong {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: var(--primary-yellow);
}

@media (max-width: 950px) {
    .package-category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .package-category-section {
        padding: 5rem 0;
    }

    .package-category-card {
        padding: 1.6rem;
    }
}
/* =================================
   Multi-day tented safaris
================================= */

.multi-day-section {
    padding: 7rem 0;
    scroll-margin-top: 90px;
    color: var(--white);
    background: var(--black);
}

.multi-day-heading h2 {
    color: var(--white);
}

.multi-day-heading > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.multi-day-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.multi-day-card {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 23px;
    overflow: hidden;
    background: var(--charcoal);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.multi-day-card:hover {
    transform: translateY(-7px);
    border-color: var(--primary-yellow);
}

.multi-day-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.multi-day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.multi-day-card:hover .multi-day-image img {
    transform: scale(1.07);
}

.multi-day-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.9)
    );
}

.multi-day-image-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 2rem;
}

.multi-day-image-content span {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 0.7rem;
    font-weight: 800;
}

.multi-day-image-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
}

.multi-day-content {
    padding: 2rem;
}

.multi-day-content > p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.safari-highlights {
    margin-bottom: 1.8rem;
    padding: 1.2rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.safari-highlights > div {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.safari-highlights i {
    margin-top: 0.15rem;
    color: var(--primary-yellow);
}

.safari-highlights span {
    display: flex;
    flex-direction: column;
}

.safari-highlights small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
}

.safari-highlights strong {
    margin-top: 0.2rem;
    font-size: 0.75rem;
}

.multi-day-content h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.multi-day-inclusions {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.7rem;
    list-style: none;
}

.multi-day-inclusions li {
    display: flex;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
}

.multi-day-inclusions li::before {
    content: "✓";
    color: var(--primary-yellow);
    font-weight: 800;
}

.multi-day-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.multi-day-text-link {
    color: var(--primary-yellow);
    font-size: 0.82rem;
    font-weight: 700;
}

.multi-day-text-link:hover,
.multi-day-text-link:focus-visible {
    color: var(--white);
}

@media (max-width: 950px) {
    .multi-day-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .multi-day-section {
        padding: 5rem 0;
    }

    .multi-day-image {
        height: 290px;
    }

    .multi-day-content {
        padding: 1.5rem;
    }

    .safari-highlights {
        grid-template-columns: 1fr;
    }

    .multi-day-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
/* =================================
   Day trips
================================= */

.day-trips-section {
    padding: 7rem 0;
    scroll-margin-top: 90px;
    background: var(--white);
}

.day-trips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.day-trip-card {
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--cream);
    box-shadow: 0 13px 32px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.day-trip-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-yellow);
    box-shadow: 0 19px 40px rgba(0, 0, 0, 0.13);
}

.day-trip-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--black);
}

.day-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.day-trip-card:hover .day-trip-image img {
    transform: scale(1.07);
}

.day-trip-image span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.7rem;
    border-radius: 50px;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.day-trip-content {
    padding: 1.7rem;
}

.day-trip-content h3 {
    margin-bottom: 0.8rem;
    color: var(--black);
    font-size: 1.2rem;
}

.day-trip-content > p {
    margin-bottom: 1.2rem;
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.7;
}

.trip-inclusions {
    margin-bottom: 1.5rem;
    display: grid;
    gap: 0.55rem;
    list-style: none;
}

.trip-inclusions li {
    display: flex;
    gap: 0.6rem;
    color: var(--charcoal);
    font-size: 0.8rem;
}

.trip-inclusions li::before {
    content: "✓";
    color: #806300;
    font-weight: 800;
}

.trip-book-button {
    padding: 0.65rem 0.9rem;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--black);
    background: var(--primary-yellow);
    font-size: 0.8rem;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.trip-book-button:hover,
.trip-book-button:focus-visible {
    transform: translateY(-2px);
    background: var(--yellow-hover);
}

@media (max-width: 1050px) {
    .day-trips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .day-trips-section {
        padding: 5rem 0;
    }

    .day-trip-card {
        grid-template-columns: 1fr;
    }

    .day-trip-image {
        height: 280px;
    }
}
/* =================================
   Tailor-made safari
================================= */

.tailor-made-section {
    padding: 7rem 0;
    scroll-margin-top: 90px;
    background: var(--cream);
}

.tailor-made-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
}

.tailor-made-image {
    position: relative;
    min-height: 720px;
    border-radius: 24px;
}

.tailor-made-image img {
    width: 100%;
    height: 720px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.17);
}

.tailor-made-image-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    padding: 1.1rem 1.3rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--black);
    background: var(--primary-yellow);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.tailor-made-image-badge i {
    font-size: 1.3rem;
}

.tailor-made-image-badge span {
    display: flex;
    flex-direction: column;
}

.tailor-made-image-badge small {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tailor-made-content h2 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.tailor-made-content h3 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-size: 1.25rem;
    line-height: 1.5;
}

.tailor-made-content > p {
    margin-bottom: 1.1rem;
    color: var(--grey);
    line-height: 1.8;
}

.tailor-options {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tailor-options > div {
    padding: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--white);
}

.tailor-options i {
    margin-top: 0.15rem;
    color: #806300;
    font-size: 1.05rem;
}

.tailor-options span {
    display: flex;
    flex-direction: column;
}

.tailor-options strong {
    color: var(--black);
    font-size: 0.85rem;
}

.tailor-options small {
    margin-top: 0.3rem;
    color: var(--grey);
    font-size: 0.7rem;
    line-height: 1.5;
}

.tailor-made-content .tailor-made-summary {
    padding: 1.1rem;
    border-left: 4px solid var(--primary-yellow);
    background: rgba(249, 196, 0, 0.1);
}

.tailor-made-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.tailor-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 800;
}

.tailor-whatsapp-link i {
    color: #16833d;
    font-size: 1.25rem;
}

.tailor-whatsapp-link:hover,
.tailor-whatsapp-link:focus-visible {
    color: #806300;
}

@media (max-width: 950px) {
    .tailor-made-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .tailor-made-image,
    .tailor-made-image img {
        min-height: 560px;
        height: 560px;
    }

    .tailor-made-image-badge {
        right: 20px;
    }
}

@media (max-width: 560px) {
    .tailor-made-section {
        padding: 5rem 0;
    }

    .tailor-made-image,
    .tailor-made-image img {
        min-height: 420px;
        height: 420px;
    }

    .tailor-options {
        grid-template-columns: 1fr;
    }

    .tailor-made-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tailor-made-actions .section-button {
        width: 100%;
    }
}
/* =================================
   Gallery page
================================= */

.gallery-page-hero {
    background-color: var(--black);
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.2)
        ),
        url("..//images/gallery-banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-section {
    padding: 7rem 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--charcoal);
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(0, 0, 0, 0.9)
    );
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(1.08);
}

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
}

.gallery-item figcaption span {
    margin-bottom: 0.3rem;
    color: var(--primary-yellow);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-item figcaption strong {
    color: var(--white);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 5rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-item,
    .gallery-item-tall,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
    }
}
/* =================================
   Team page
================================= */

.team-page-hero {
    background-color: var(--black);
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.2)
        ),
        url("../images/WhatsApp Image 2026-07-22 at 17.57.56 (1).jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-introduction {
    padding: 6rem 0;
    background: var(--cream);
}

.team-introduction-content {
    max-width: 900px;
    text-align: center;
}

.team-introduction-content h2 {
    margin-bottom: 1.4rem;
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.team-introduction-content > p:last-child {
    color: var(--grey);
    line-height: 1.85;
}

/* Managing Director */

.featured-team-section {
    padding: 7rem 0;
    color: var(--white);
    background: var(--black);
}

.featured-team-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
}

.featured-team-image {
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
}

.featured-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role-label {
    margin-bottom: 0.8rem;
    color: var(--primary-yellow);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-team-content h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.15;
}

.featured-team-content > p:not(.team-role-label) {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.team-responsibilities {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.team-responsibilities span {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(249, 196, 0, 0.35);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
}

.team-responsibilities i {
    color: var(--primary-yellow);
}

/* Other team members */

.team-members-section {
    padding: 7rem 0;
    background: var(--white);
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-member-card {
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 22px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 13px 32px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.team-member-image {
    height: 380px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.06);
}

.team-member-content {
    padding: 1.7rem;
}

.team-member-content > p:first-child {
    margin-bottom: 0.5rem;
    color: #806300;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.team-member-content h3 {
    color: var(--black);
    font-size: 1.25rem;
}

.team-card-divider {
    width: 45px;
    height: 3px;
    margin: 1rem 0;
    background: var(--primary-yellow);
}

.team-description {
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.75;
}

@media (max-width: 950px) {
    .featured-team-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .featured-team-image {
        height: 550px;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
    }

    .team-member-image {
        height: 500px;
    }
}

@media (max-width: 560px) {
    .team-introduction,
    .featured-team-section,
    .team-members-section {
        padding: 5rem 0;
    }

    .featured-team-image,
    .team-member-image {
        height: 420px;
    }
}
/* Contact page banner */

.contact-page-hero {
    background-color: var(--black);
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.2)
        ),
        url("../images/IMG-20240728-WA0011 (1).jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* =================================
   Booking enquiry form
================================= */

.booking-section {
    padding: 7rem 0;
    scroll-margin-top: 90px;
    background: var(--black);
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 4rem;
}

.booking-introduction {
    position: sticky;
    top: 120px;
    color: var(--white);
}

.booking-introduction h2 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.booking-introduction > p:not(.section-label) {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.booking-introduction ul {
    display: grid;
    gap: 1rem;
    list-style: none;
}

.booking-introduction li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

.booking-introduction li i {
    margin-top: 0.2rem;
    color: var(--primary-yellow);
}

.booking-form {
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.25);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0.75rem 0.9rem;
    border: 1px solid #9a9a9a;
    border-radius: 10px;
    color: var(--black);
    background: var(--white);
    font: inherit;
    font-size: 0.88rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #806300;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 196, 0, 0.25);
}

.phone-input-group {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 0.6rem;
}

#countryCode {
    text-align: center;
    font-weight: 700;
    background: var(--cream);
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.consent-field input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 0.2rem;
}

.consent-field label {
    color: var(--grey);
    font-size: 0.78rem;
    line-height: 1.6;
}

.booking-submit-button {
    width: 100%;
    min-height: 56px;
    margin-top: 1.7rem;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--black);
    background: var(--primary-yellow);
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.booking-submit-button:hover,
.booking-submit-button:focus-visible {
    transform: translateY(-2px);
    background: var(--yellow-hover);
}

.booking-status {
    min-height: 24px;
    margin-top: 1rem;
    color: #2d6400;
    font-size: 0.82rem;
    text-align: center;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 950px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-introduction {
        position: static;
    }
}

@media (max-width: 650px) {
    .booking-section {
        padding: 5rem 0;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }
}
.destination-detail {
    scroll-margin-top: 84px;
}
/* =================================
   Detailed destinations
================================= */

.destination-details {
    padding: 7rem 0;
    background: var(--white);
}

.destination-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    scroll-margin-top: 84px;
}

.destination-detail:first-child {
    padding-top: 0;
}

.destination-detail:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.destination-detail:nth-child(even) .destination-detail-media {
    order: 2;
}

.destination-detail:nth-child(even) .destination-detail-content {
    order: 1;
}

.destination-detail-media {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.destination-detail-media img {
    display: block;
    width: 100%;
    height: clamp(340px, 38vw, 520px);
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-detail:hover .destination-detail-media img {
    transform: scale(1.04);
}

.destination-detail-number {
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.destination-detail-content h2 {
    margin-bottom: 1.4rem;
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.12;
}

.destination-detail-content > p:not(.destination-detail-number) {
    margin-bottom: 1.15rem;
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.85;
}

.destination-detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2rem;
}

@media (max-width: 800px) {
    .destination-details {
        padding: 4.5rem 0;
    }

    .destination-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem 0;
        scroll-margin-top: 74px;
    }

    .destination-detail:nth-child(even) .destination-detail-media,
    .destination-detail:nth-child(even) .destination-detail-content {
        order: initial;
    }

    .destination-detail-media img {
        height: 330px;
    }
}

@media (max-width: 520px) {
    .destination-detail-media img {
        height: 270px;
    }

    .destination-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .destination-detail-actions .section-button {
        width: 100%;
    }
}
/* =================================
   Clickable gallery albums
================================= */

.gallery-album-trigger {
    cursor: pointer;
}

.gallery-album-trigger:focus-visible {
    outline: 4px solid var(--gold);
    outline-offset: 5px;
}

.gallery-album-viewer {
    padding: 6rem 0;
    background: var(--cream);
    scroll-margin-top: 84px;
}

.gallery-album-viewer[hidden] {
    display: none;
}

.gallery-album-back {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
    border: 0;
    color: var(--black);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.25s ease;
}

.gallery-album-back:hover,
.gallery-album-back:focus-visible {
    color: var(--gold);
}

.gallery-album-heading {
    margin-bottom: 2.5rem;
}

.gallery-album-heading h2 {
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.gallery-empty-state {
    padding: clamp(3rem, 8vw, 6rem) 1.5rem;
    border: 2px dashed rgba(17, 17, 17, 0.2);
    border-radius: 20px;
    text-align: center;
    background: var(--white);
}

.gallery-empty-state i {
    margin-bottom: 1.3rem;
    color: var(--gold);
    font-size: 3.5rem;
}

.gallery-empty-state h3 {
    margin-bottom: 0.7rem;
    color: var(--black);
    font-size: 1.6rem;
}

.gallery-empty-state p {
    color: var(--grey);
}

@media (max-width: 800px) {
    .gallery-album-viewer {
        padding: 4rem 0;
        scroll-margin-top: 74px;
    }

    .gallery-album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .gallery-album-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================
   Header logo and glass effect
================================= */

.site-header {
    background: rgba(17, 17, 17, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header.scrolled {
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.brand-logo {
    display: block;
    width: auto;
    height: 60px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.site-header.scrolled .brand-logo {
    height: 52px;
}

@media (max-width: 520px) {
    .brand-logo {
        height: 48px;
    }

    .site-header.scrolled .brand-logo {
        height: 44px;
    }
}
/* =================================
   Header logo and glass effect
================================= */

.site-header {
    background: rgba(30, 30, 30, 0.48);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header.scrolled {
    background: rgba(30, 30, 30, 0.68);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


.brand-logo {
    display: block;
    width: auto;
    height: 60px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.site-header.scrolled .brand-logo {
    height: 52px;
}

@media (max-width: 520px) {
    .brand-logo {
        height: 48px;
    }

    .site-header.scrolled .brand-logo {
        height: 44px;
    }
}
/* Header logo and company name */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.brand-logo {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.brand-copy small {
    margin-top: 0.38rem;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header.scrolled .brand-logo {
    height: 50px;
}

@media (max-width: 600px) {
    .brand {
        gap: 0.55rem;
    }

    .brand-logo {
        height: 44px;
    }

    .brand-copy strong {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    .brand-copy small {
        margin-top: 0.25rem;
        font-size: 0.48rem;
        letter-spacing: 0.05em;
    }

    .site-header.scrolled .brand-logo {
        height: 42px;
    }
}
.brand-logo {
    width: 68px;
    height: 54px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    object-fit: cover;
}
@media (max-width: 600px) {
    .brand-logo {
        width: 58px;
        height: 44px;
        border-radius: 10px;
    }
}
.brand-logo {
    width: auto;
    height: 68px;
    object-fit: contain;
    image-rendering: auto;
}
.brand-logo {
    width: auto;
    height: 76px;
    object-fit: contain;
    image-rendering: auto;
}

.site-header.scrolled .brand-logo {
    height: 68px;
}

@media (max-width: 600px) {
    .brand-logo {
        height: 56px;
    }

    .site-header.scrolled .brand-logo {
        height: 50px;
    }
}
/* =================================
   Mobile hamburger navigation
================================= */

@media (max-width: 1100px) {
    .menu-toggle {
        position: relative;
        z-index: 1100;
        display: flex;
        width: 46px;
        height: 46px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 0;
        border-radius: 2px;
        background: var(--gold);
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 84px;
        right: 0;
        left: 0;
        display: block;
        width: 100%;
        max-height: 0;
        padding: 0 1.5rem;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        background: rgba(17, 17, 17, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .nav-menu.open {
        max-height: calc(100vh - 84px);
        padding-top: 1rem;
        padding-bottom: 1.5rem;
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        color: var(--white);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        color: var(--gold);
    }

    .nav-menu .book-now-button {
        width: 100%;
        margin-top: 1.25rem;
    }
}

@media (max-width: 520px) {
    .nav-menu {
        top: 74px;
    }

    .nav-menu.open {
        max-height: calc(100vh - 74px);
    }
}
/* Mobile navigation side drawer */

@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        top: 84px;
        right: 0;
        left: auto;
        display: block;
        width: min(50vw, 360px);
        height: calc(100vh - 84px);
        max-height: none;
        padding: 1.25rem;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        background: rgba(17, 17, 17, 0.96);
        border-bottom-left-radius: 20px;
        box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.35);
        transform: translateX(100%);
        transition:
            transform 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .nav-menu.open {
        height: calc(100vh - 84px);
        max-height: none;
        padding: 1.25rem;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 520px) {
    .nav-menu {
        top: 74px;
        width: min(50vw, 340px);
        height: calc(100vh - 74px);
    }

    .nav-menu.open {
        height: calc(100vh - 74px);
    }
}
/* Footer logo and brand name */

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    object-fit: contain;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-copy strong {
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.footer-brand-copy small {
    margin-top: 0.4rem;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 520px) {
    .footer-logo {
        width: 75px;
        height: 75px;
    }

    .footer-brand-copy strong {
        font-size: 0.78rem;
    }

    .footer-brand-copy small {
        font-size: 0.5rem;
    }
}
@media (max-width: 600px) {
    .site-footer .footer-logo {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }
}
.hero#home {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        url("../images/home-banner.jpg")
        center / cover no-repeat !important;
}
/* Why Choose Us background image */

.why-choose-us {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.68)
        ),
        url("../images/why-choose-us.jpg")
        center / cover no-repeat !important;
}