/* =========================
   SAFARI HERO
========================= */

.safari-hero {
    position: relative;

    min-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 7% 100px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(4, 15, 9, 0.60),
            rgba(4, 15, 9, 0.78)
        ),
       url('../img/Pride\ lions.jpeg');
}

/* Decorative background */

.safari-hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -180px;

    border-radius: 50%;

    background: rgba(212,175,55,0.05);

    filter: blur(80px);
}

.safari-hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -200px;
    bottom: -200px;

    border-radius: 50%;

    background: rgba(80,40,15,0.10);

    filter: blur(80px);
}


/* Overlay */

.safari-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,12,8,0.35),
            transparent 60%
        );

    pointer-events: none;
}


/* Content */

.safari-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    text-align: center;
}


.hero-kicker {
    display: inline-block;

    margin-bottom: 20px;

    color: #d4af37;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 4px;
}


.safari-hero h1 {
    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(
        3rem,
        7vw,
        6.5rem
    );

    line-height: 0.98;

    letter-spacing: -3px;
}


.safari-hero h1 span {
    display: block;

    color: #d4af37;
}


.safari-hero-content > p {
    max-width: 720px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,0.68);

    font-size: 1rem;

    line-height: 1.9;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-actions {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


.safari-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 26px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.safari-btn.primary {
    background: #d4af37;

    color: #07140f;

    box-shadow:
        0 10px 30px rgba(212,175,55,0.20);
}


.safari-btn.secondary {
    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.16);

    color: #fff;

    backdrop-filter: blur(12px);
}


.safari-btn:hover {
    transform: translateY(-4px);
}


.safari-btn.primary:hover {
    box-shadow:
        0 15px 40px rgba(212,175,55,0.32);
}


.safari-btn.secondary:hover {
    background: rgba(255,255,255,0.10);
}


/* =========================
   HERO STATS
========================= */

.safari-hero-stats {
    position: absolute;

    left: 7%;
    bottom: 50px;

    z-index: 3;

    display: flex;

    gap: 35px;
}


.hero-stat {
    padding-left: 18px;

    border-left: 1px solid rgba(212,175,55,0.4);
}


.hero-stat strong {
    display: block;

    color: #d4af37;

    font-size: 1.5rem;
}


.hero-stat span {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,0.5);

    font-size: 0.65rem;

    letter-spacing: 1px;
}


/* =========================
   SCROLL INDICATOR
========================= */

.safari-scroll {
    position: absolute;

    right: 7%;
    bottom: 50px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.45);

    font-size: 0.6rem;

    letter-spacing: 2px;
}


.safari-scroll i {
    color: #d4af37;

    animation: safariScroll 1.8s ease-in-out infinite;
}


@keyframes safariScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .safari-hero {
        min-height: 85vh;

        padding: 120px 5% 150px;
    }

    .safari-hero h1 {
        font-size: 3rem;

        letter-spacing: -1.5px;
    }

    .safari-hero-content > p {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .safari-btn {
        width: 100%;
    }

    .safari-hero-stats {
        left: 5%;
        right: 5%;
        bottom: 30px;

        justify-content: space-between;

        gap: 10px;
    }

    .hero-stat {
        padding-left: 10px;
    }

    .hero-stat strong {
        font-size: 1.15rem;
    }

    .hero-stat span {
        font-size: 0.55rem;
    }

    .safari-scroll {
        display: none;
    }

}

/* ============================= */
/* SAFARI CATEGORIES */
/* ============================= */

.safari-categories {
    position: relative;
    padding: 100px 7%;
    background:
        radial-gradient(
            circle at top right,
            rgba(191, 145, 56, 0.08),
            transparent 35%
        ),
        #07130d;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c9a45c;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: #ffffff;
}

.section-heading h2 strong {
    color: #c9a45c;
}

.section-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.8;
}


/* CATEGORY GRID */

.category-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}


/* CATEGORY CARD */

.category-card {
    position: relative;

    min-height: 150px;
    padding: 28px 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    color: #ffffff;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.category-card i {
    display: block;

    margin-bottom: 18px;

    font-size: 28px;
    color: #c9a45c;

    transition: transform 0.35s ease;
}

.category-card span {
    display: block;

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 7px;
}

.category-card small {
    color: rgba(255, 255, 255, 0.50);
    font-size: 11px;
}


/* HOVER */

.category-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 164, 92, 0.55);

    background: rgba(201, 164, 92, 0.08);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);
}

.category-card:hover i {
    transform: scale(1.12);
}


/* ACTIVE */

.category-card.active {
    border-color: #c9a45c;

    background:
        linear-gradient(
            145deg,
            rgba(201, 164, 92, 0.18),
            rgba(255, 255, 255, 0.04)
        );

    box-shadow:
        0 12px 35px rgba(201, 164, 92, 0.08);
}

.category-card.active i {
    color: #ffffff;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1000px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 700px) {

    .safari-categories {
        padding: 75px 5%;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 120px;
    }

}

/* ============================= */
/* SAFARI COLLECTION */
/* ============================= */

.safari-collection {
    position: relative;
    padding: 110px 7% 120px;
    background: #050d09;
}


/* COLLECTION HEADING */

.collection-heading {
    margin-bottom: 65px;
}


/* ============================= */
/* SAFARI GRID */
/* ============================= */

.safari-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* ============================= */
/* SAFARI CARD */
/* ============================= */

.safari-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.safari-card:hover {
    transform: translateY(-10px);

    border-color: rgba(201, 164, 92, 0.45);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}


/* ============================= */
/* IMAGE */
/* ============================= */

.safari-image {
    position: relative;

    height: 250px;

    overflow: hidden;
}

.safari-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}

.safari-card:hover .safari-image img {
    transform: scale(1.08);
}


.image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3, 10, 6, 0.75),
            transparent 55%
        );
}


/* ============================= */
/* BADGE */
/* ============================= */

.safari-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;

    background: rgba(5, 15, 9, 0.70);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* ============================= */
/* CONTENT */
/* ============================= */

.safari-content {
    padding: 26px;
}

.safari-location {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 10px;

    color: #c9a45c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.safari-location i {
    font-size: 11px;
}


.safari-content h3 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.2;
}


.safari-content > p {
    min-height: 76px;

    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;
    line-height: 1.75;
}


/* ============================= */
/* META */
/* ============================= */

.safari-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.safari-meta span {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
}

.safari-meta i {
    color: #c9a45c;
}


/* ============================= */
/* FOOTER */
/* ============================= */

.safari-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 22px;
}


/* PRICE */

.safari-price {
    display: flex;
    flex-direction: column;
}

.safari-price small {
    color: rgba(255, 255, 255, 0.40);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.safari-price strong {
    margin: 3px 0;

    color: #c9a45c;

    font-size: 18px;
}

.safari-price span {
    color: rgba(255, 255, 255, 0.38);

    font-size: 8px;
    letter-spacing: 1px;
}


/* ============================= */
/* VIEW ITINERARY */
/* ============================= */

.view-itinerary {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 15px;

    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 50px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.view-itinerary i {
    color: #c9a45c;

    transition: transform 0.3s ease;
}

.view-itinerary:hover {
    background: #c9a45c;
    color: #07130d;
}

.view-itinerary:hover i {
    color: #07130d;
    transform: translateX(4px);
}


/* ============================= */
/* COLLECTION FOOTER */
/* ============================= */

.collection-footer {
    margin-top: 65px;

    text-align: center;
}

.collection-footer p {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}

.custom-safari-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 23px;

    border-radius: 50px;

    background: #c9a45c;
    color: #07130d;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition: all 0.3s ease;
}

.custom-safari-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(201, 164, 92, 0.20);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1100px) {

    .safari-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .safari-collection {
        padding: 80px 5%;
    }

    .safari-grid {
        grid-template-columns: 1fr;
    }

    .safari-image {
        height: 240px;
    }

}


@media (max-width: 450px) {

    .safari-content {
        padding: 22px;
    }

    .safari-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .view-itinerary {
        width: 100%;
        justify-content: center;
    }

}

/* ============================= */
/* SAFARI ADVICE */
/* ============================= */

.safari-advice {
    position: relative;
    padding: 120px 7%;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(201, 164, 92, 0.07),
            transparent 30%
        ),
        #07130d;
}


/* ============================= */
/* ADVICE GRID */
/* ============================= */

.advice-grid {
    max-width: 1250px;
    margin: 70px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* ============================= */
/* ADVICE CARD */
/* ============================= */

.advice-card {
    position: relative;

    display: flex;
    gap: 24px;

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.advice-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201, 164, 92, 0.40);

    background: rgba(201, 164, 92, 0.045);
}


/* ============================= */
/* ICON */
/* ============================= */

.advice-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 16px;

    background: rgba(201, 164, 92, 0.08);

    color: #c9a45c;

    font-size: 22px;
}


/* ============================= */
/* CONTENT */
/* ============================= */

.advice-content {
    flex: 1;
}

.advice-number {
    display: block;

    margin-bottom: 5px;

    color: rgba(201, 164, 92, 0.55);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.advice-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 21px;
}

.advice-content > p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.75;
}


/* ============================= */
/* LIST */
/* ============================= */

.advice-content ul {
    display: grid;

    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.advice-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    line-height: 1.5;
}

.advice-content li i {
    flex-shrink: 0;

    margin-top: 3px;

    color: #c9a45c;

    font-size: 10px;
}


/* ============================= */
/* ADVICE NOTE */
/* ============================= */

.advice-note {
    display: flex;
    gap: 10px;

    margin-top: 20px;
    padding: 13px 15px;

    border-left: 2px solid #c9a45c;

    background: rgba(201, 164, 92, 0.06);

    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;
    line-height: 1.6;
}

.advice-note i {
    flex-shrink: 0;

    margin-top: 2px;

    color: #c9a45c;
}


/* ============================= */
/* FEATURED DOCUMENT CARD */
/* ============================= */

.featured-advice {
    border-color: rgba(201, 164, 92, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(201, 164, 92, 0.08),
            rgba(255, 255, 255, 0.025)
        );
}


/* ============================= */
/* PREPARATION BANNER */
/* ============================= */

.preparation-banner {
    max-width: 1250px;

    margin: 60px auto 0;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 28px 32px;

    border: 1px solid rgba(201, 164, 92, 0.25);
    border-radius: 20px;

    background:
        linear-gradient(
            100deg,
            rgba(201, 164, 92, 0.10),
            rgba(255, 255, 255, 0.025)
        );
}

.preparation-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c9a45c;

    color: #07130d;

    font-size: 22px;
}

.preparation-text span {
    color: #c9a45c;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.preparation-text h3 {
    margin: 5px 0 7px;

    color: #ffffff;

    font-size: 20px;
}

.preparation-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    line-height: 1.7;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 850px) {

    .advice-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .safari-advice {
        padding: 85px 5%;
    }

    .advice-grid {
        margin-top: 50px;
    }

    .advice-card {
        padding: 24px;

        flex-direction: column;
    }

    .advice-icon {
        width: 52px;
        height: 52px;
    }

    .preparation-banner {
        align-items: flex-start;
        flex-direction: column;

        padding: 25px;
    }

}

/* ========================================= */
/* SAFARI BOOKING */
/* ========================================= */

.safari-booking {
    position: relative;

    padding: 120px 7%;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(201, 164, 92, 0.08),
            transparent 35%
        ),
        #050d09;
}


.booking-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: center;
}


/* ========================================= */
/* BOOKING INTRO */
/* ========================================= */

.booking-intro {
    max-width: 500px;
}

.booking-kicker {
    display: inline-block;

    margin-bottom: 15px;

    color: #c9a45c;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}


.booking-intro h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;
}

.booking-intro h2 strong {
    color: #c9a45c;
}


.booking-intro > p {
    color: rgba(255,255,255,0.60);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 40px;
}


/* ========================================= */
/* FEATURES */
/* ========================================= */

.booking-features {
    display: grid;

    gap: 22px;
}


.booking-feature {
    display: flex;

    gap: 16px;

    align-items: flex-start;
}


.feature-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    border: 1px solid rgba(201,164,92,0.30);

    background: rgba(201,164,92,0.07);

    color: #c9a45c;

    font-size: 18px;
}


.booking-feature h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 14px;
}


.booking-feature p {
    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 11px;

    line-height: 1.6;
}


/* ========================================= */
/* FORM WRAPPER */
/* ========================================= */

.booking-form-wrapper {
    padding: 38px;

    border: 1px solid rgba(201,164,92,0.20);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.30);
}


/* ========================================= */
/* FORM HEADER */
/* ========================================= */

.booking-form-header {
    margin-bottom: 30px;
}


.booking-form-header span {
    color: #c9a45c;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.booking-form-header h3 {
    margin: 7px 0 8px;

    color: #ffffff;

    font-size: 27px;
}


.booking-form-header p {
    margin: 0;

    color: rgba(255,255,255,0.50);

    font-size: 12px;
}


/* ========================================= */
/* FORM GROUP */
/* ========================================= */

.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,0.75);

    font-size: 11px;

    font-weight: 600;
}


.form-group label span {
    color: rgba(255,255,255,0.35);

    font-weight: 400;
}


/* ========================================= */
/* INPUT */
/* ========================================= */

.input-wrapper {
    position: relative;
}


.input-wrapper > i {
    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #c9a45c;

    font-size: 13px;

    pointer-events: none;
}


.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 12px;

    background: rgba(0,0,0,0.20);

    color: #ffffff;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


.input-wrapper input,
.input-wrapper select {

    height: 48px;

    padding: 0 15px 0 42px;
}


.input-wrapper textarea {

    min-height: 105px;

    padding: 15px 15px 15px 42px;

    resize: vertical;
}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.30);
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {

    border-color: rgba(201,164,92,0.60);

    background: rgba(201,164,92,0.035);
}


.input-wrapper select {
    appearance: auto;
}


.input-wrapper select option {
    background: #07130d;

    color: #ffffff;
}


/* ========================================= */
/* DATE INPUT */
/* ========================================= */

.input-wrapper input[type="date"] {
    color-scheme: dark;
}


/* ========================================= */
/* FORM ROW */
/* ========================================= */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* ========================================= */
/* WHATSAPP BUTTON */
/* ========================================= */

.whatsapp-submit {

    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 10px;

    border: none;

    border-radius: 14px;

    background: #c9a45c;

    color: #07130d;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-submit i {

    font-size: 20px;
}


.whatsapp-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(201,164,92,0.20);
}


/* ========================================= */
/* FORM NOTE */
/* ========================================= */

.booking-form-note {

    display: flex;

    align-items: flex-start;

    justify-content: center;

    gap: 7px;

    margin: 15px 0 0;

    color: rgba(255,255,255,0.35);

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}


.booking-form-note i {
    color: #c9a45c;

    margin-top: 2px;
}


/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 950px) {

    .booking-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .booking-intro {

        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .booking-features {

        text-align: left;

        max-width: 500px;

        margin: auto;
    }

}


@media (max-width: 600px) {

    .safari-booking {

        padding: 80px 5%;
    }

    .booking-form-wrapper {

        padding: 25px 20px;

        border-radius: 20px;
    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .booking-form-header h3 {

        font-size: 23px;
    }

}

/* =====================================================
   REUSABLE ITINERARY MODAL
===================================================== */

body.modal-open {
    overflow: hidden;
}


/* MODAL */

.itinerary-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

}


/* ACTIVE */

.itinerary-modal.active {

    visibility: visible;

    opacity: 1;

}


/* DARK BACKGROUND */

.itinerary-modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(3, 18, 13, 0.88);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

}


/* CONTAINER */

.itinerary-modal-container {

    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 45px;

    border:

        1px solid

        rgba(201, 169, 87, 0.35);

    border-radius: 24px;

    background:

        linear-gradient(
            145deg,
            rgba(20, 55, 40, 0.97),
            rgba(5, 25, 18, 0.98)
        );

    box-shadow:

        0 30px 80px
        rgba(0, 0, 0, 0.55),

        0 0 40px
        rgba(201, 169, 87, 0.08);

    transform:
        translateY(35px)
        scale(0.97);

    transition:
        transform 0.4s ease;

}


/* ACTIVE CONTAINER */

.itinerary-modal.active
.itinerary-modal-container {

    transform:
        translateY(0)
        scale(1);

}


/* CLOSE */

.itinerary-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    border:

        1px solid
        rgba(255,255,255,0.2);

    background:
        rgba(255,255,255,0.08);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition:
        0.3s ease;

}


.itinerary-close:hover {

    transform: rotate(90deg);

    border-color:
        rgba(201,169,87,0.7);

}


/* HEADER */

.itinerary-modal-header {

    text-align: center;

    padding: 10px 50px 35px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.1);

}


.itinerary-category {

    display: inline-block;

    margin-bottom: 12px;

    color:
        #c9a957;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.itinerary-modal-header h2 {

    margin: 0;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1;

}


.itinerary-modal-header p {

    margin-top: 12px;

    color:
        rgba(255,255,255,0.65);

    font-size: 13px;

    letter-spacing: 1px;

}


/* CONTENT */

.itinerary-content {

    padding:
        30px 0;

}


/* DAY ITEM */

.modal-itinerary-item {

    display: grid;

    grid-template-columns:
        120px 1fr;

    gap: 25px;

    padding:
        25px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

}


.modal-day-number {

    color:
        #c9a957;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


.modal-day-content h3 {

    margin:
        0 0 10px;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

}


.modal-day-content p {

    margin: 0;

    color:
        rgba(255,255,255,0.68);

    font-size: 14px;

    line-height: 1.8;

}


/* PRICE */

.modal-price {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;

    padding: 22px;

    border:

        1px solid
        rgba(201,169,87,0.2);

    border-radius: 14px;

    background:
        rgba(201,169,87,0.06);

}


.modal-price span {

    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,0.5);

    font-size: 10px;

    letter-spacing: 2px;

}


.modal-price strong {

    color:
        #c9a957;

    font-size: 25px;

}


.modal-price small {

    color:
        rgba(255,255,255,0.45);

}


/* BOOKING */

.modal-booking {

    text-align: center;

    margin-top: 25px;

}


.modal-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 240px;

    padding:
        16px 28px;

    border-radius: 50px;

    background:
        #25D366;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        0.3s ease;

}


.modal-whatsapp:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(37,211,102,0.25);

}


.modal-whatsapp i {

    font-size: 19px;

}


.modal-booking p {

    margin-top: 12px;

    color:
        rgba(255,255,255,0.4);

    font-size: 11px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 700px) {

    .itinerary-modal {

        padding: 12px;

    }


    .itinerary-modal-container {

        padding:
            35px 22px;

        max-height: 94vh;

        border-radius: 18px;

    }


    .itinerary-modal-header {

        padding:
            10px 35px 25px;

    }


    .itinerary-modal-header h2 {

        font-size: 40px;

    }


    .modal-itinerary-item {

        grid-template-columns: 1fr;

        gap: 8px;

    }


    .modal-day-number {

        font-size: 10px;

    }


    .modal-day-content h3 {

        font-size: 24px;

    }


    .modal-price {

        flex-direction: column;

        align-items: flex-start;

    }


    .modal-whatsapp {

        width: 100%;

    }

}