/* =========================================================
   LEISURE FAN TOURS AND SAFARIS
   LUXURY AFRICAN SAFARI WEBSITE
   CREAM & GOLD THEME
   COMPLETE UPDATED STYLE.CSS
========================================================= */


/* =========================================================
   RESET & GLOBAL
========================================================= */

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

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
    top: 0 !important;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

section,
header,
footer {
    width: 100%;
    position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span {
    overflow-wrap: break-word;
}


/* =========================================================
   COLORS
   LUXURY CREAM / GOLD / WARM BROWN THEME
========================================================= */

:root {
    --gold: #c9a227;
    --gold-dark: #a78318;

    --dark: #3b3025;
    --brown: #6b5135;
    --brown-dark: #4a3725;

    --cream: #f6eddb;
    --cream-light: #fbf7ef;
    --cream-dark: #eadcc2;

    --white: #ffffff;
    --light: #f7f5ef;

    --text: #333333;
    --light-text: #777777;

    --border: #e4d9c5;

    --shadow: 0 15px 40px rgba(59, 48, 37, 0.10);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

p {
    color: #555;
    margin-bottom: 15px;
}

.small-title {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.gold-button {
    display: inline-block;
    border: none;
    background: var(--gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.25);
}

.gold-button:hover {
    background: var(--brown);
    transform: translateY(-2px);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-button:hover {
    background: #1da851;
    transform: translateY(-2px);
}


/* =========================================================
   NAVIGATION
========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 3px 20px rgba(59, 48, 37, 0.08);
}

.navbar {
    width: 100%;
    max-width: 1400px;
    min-height: 82px;
    margin: 0 auto;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    flex-shrink: 0;
    z-index: 2;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 180px;
    max-height: 85px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brown);
    color: #fff;
    padding: 11px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    color: var(--dark);
    font-size: 25px;
    cursor: pointer;
    z-index: 2;
}



./* =====================================================
   HERO IMAGE SLIDESHOW
===================================================== */

./* =====================================================
   FULL-SCREEN HERO SLIDESHOW
===================================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    isolation: isolate;
}


/* =====================================================
   HERO SLIDES
===================================================== */

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}


.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.05);

    transition:
        opacity 1.5s ease-in-out,
        transform 7s ease-in-out;
}


.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.58)
        );

    z-index: -2;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    padding: 40px 25px;

    text-align: center;

    color: #ffffff;
}


.hero-content .welcome {
    color: #d4af37;

    font-size: 22px;
    font-weight: 600;

    margin-bottom: 15px;

    letter-spacing: 2px;
}


.hero-content h1 {
    margin: 0 auto 25px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 7vw, 92px);

    line-height: 1.05;

    font-weight: 700;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.55);
}


.hero-content .hero-text {
    max-width: 800px;

    margin: 0 auto 35px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.8;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7);
}


/* =====================================================
   REQUEST A QUOTE BUTTON
===================================================== */

.hero-content .gold-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 35px;

    border-radius: 50px;

    background: #d4af37;

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.hero-content .gold-button:hover {
    background: #c29b2d;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.45);
}


/* =====================================================
   HERO DOTS
===================================================== */

.hero-dots {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}


.hero-dot {
    width: 11px;
    height: 11px;

    padding: 0;

    border: 2px solid #ffffff;

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.hero-dot.active {
    background: #d4af37;

    border-color: #d4af37;

    transform: scale(1.25);
}


/* =====================================================
   MOBILE HERO
===================================================== */

@media (max-width: 768px) {

    .hero {
        min-height: 88vh;
        height: 88vh;
    }


    .hero-slide {
        background-position: center center;
    }


    .hero-content {
        padding: 30px 20px;
    }


    .hero-content .welcome {
        font-size: 18px;

        margin-bottom: 10px;
    }


    .hero-content h1 {
        font-size: clamp(42px, 12vw, 65px);

        line-height: 1.05;

        margin-bottom: 22px;
    }


    .hero-content .hero-text {
        font-size: 16px;

        line-height: 1.7;

        max-width: 600px;

        margin-bottom: 28px;
    }


    .hero-content .gold-button {
        padding: 15px 30px;

        font-size: 16px;
    }


    .hero-dots {
        bottom: 20px;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .hero {
        min-height: 85vh;
        height: 85vh;
    }


    .hero-content h1 {
        font-size: 43px;
    }


    .hero-content .hero-text {
        font-size: 15px;

        line-height: 1.65;
    }


    .hero-dots {
        bottom: 15px;
    }

}
/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin-bottom: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 110px 6%;
    background: var(--cream);
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-gallery {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 250px;
    box-shadow: var(--shadow);
}

.about-image.image-large {
    grid-row: 1 / 3;
}

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

.about-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   WHY WE ARE UNIQUE
========================================================= */

.unique-section {
    padding: 110px 6%;
    background: #fff;
}

.unique-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.unique-image {
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.unique-content h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    margin-bottom: 22px;
}

.unique-content > p {
    line-height: 1.9;
}

.unique-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.feature > i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    border-radius: 50%;
    font-size: 19px;
}

.feature h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================================
   SERVICES / EXPERIENCES
========================================================= */

.experiences-section {
    padding: 110px 6%;
    background: var(--cream);
}

.experience-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experience-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 48, 37, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.experience-card > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.experience-content {
    padding: 25px;
}

.experience-content h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.experience-content p {
    font-size: 14px;
    line-height: 1.75;
}

.experience-content a {
    color: var(--brown);
    font-size: 13px;
    font-weight: 700;
}

.experience-content a:hover {
    color: var(--gold);
}


/* =========================================================
   DESTINATIONS
========================================================= */

.destinations-section {
    padding: 110px 6%;
    background: #fff;
}

.destination-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--dark);
    box-shadow: var(--shadow);
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.08) 65%,
            transparent
        );

    z-index: 1;
}

.destination-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-card > div {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
}

.destination-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.destination-card p {
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
}


/* =========================================================
   ITINERARIES CTA
========================================================= */

.itineraries-cta {
    padding: 100px 6%;
    text-align: center;
    color: #fff;

    background:
        linear-gradient(
            rgba(59, 48, 37, 0.90),
            rgba(59, 48, 37, 0.94)
        ),
        url("amboseli-serengeti.jpg") center / cover no-repeat;
}

.itineraries-cta-content {
    max-width: 850px;
    margin: auto;
}

.itineraries-cta .small-title {
    color: var(--gold);
}

.itineraries-cta h2 {
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin-bottom: 20px;
}

.itineraries-cta p {
    color: #f2f2f2;
    line-height: 1.9;
    margin-bottom: 30px;
}


/* =========================================================
   ITINERARIES PAGE HERO
========================================================= */

.itineraries-hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("amboseli-serengeti.jpg") center / cover no-repeat;
}


/* =========================================================
   ITINERARY PAGE GENERAL
========================================================= */

.itinerary-section,
.itineraries-section {
    width: 100%;
    padding: 110px 6%;
}

.itinerary-container,
.itineraries-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.itinerary-grid,
.itineraries-grid {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.itinerary-card,
.itineraries-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.itinerary-card img,
.itineraries-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.itinerary-card-content,
.itineraries-card-content {
    padding: 25px;
}

.itinerary-card h3,
.itineraries-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.itinerary-card p,
.itineraries-card p {
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   DAY-BY-DAY ITINERARY
========================================================= */

.itinerary-days {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.itinerary-day {
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.itinerary-day h3 {
    color: var(--brown);
    font-size: 24px;
    margin-bottom: 15px;
}

.itinerary-day p {
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   MORNING / AFTERNOON / EVENING
========================================================= */

.day-content,
.day-details {
    width: 100%;
}

.morning,
.afternoon,
.evening {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 14px;
    background: var(--cream);
}

.morning h4,
.afternoon h4,
.evening h4 {
    color: var(--brown);
    font-size: 18px;
    margin-bottom: 8px;
}

.morning p,
.afternoon p,
.evening p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}


/* =========================================================
   ITINERARY PRICE / BOOK NOW
========================================================= */

.price {
    color: var(--brown);
    font-size: 28px;
    font-weight: 700;
}

.price-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;

    background: var(--gold);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    margin: 20px auto;

    font-weight: 700;

    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.25);
}

.book-now,
.itinerary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: #fff;

    padding: 13px 28px;

    border-radius: 30px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.book-now:hover,
.itinerary-button:hover {
    background: var(--brown);
    transform: translateY(-2px);
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    padding: 110px 6%;
    background: var(--cream);
}

.gallery-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.025);
    filter: brightness(0.9);
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.reviews {
    padding: 110px 6%;
    background: #fff;
}

.review-wrapper {
    max-width: 1050px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
}

.review-container {
    position: relative;
    overflow: hidden;

    width: 100%;
    max-width: 900px;

    min-height: 340px;

    margin: auto;
}

#firebaseReviews {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.review-slide {
    width: 100%;

    background: #fff;

    border-radius: 20px;

    padding: 45px;

    text-align: center;

    box-shadow: var(--shadow);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.review-stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.review-message {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.review-name {
    color: var(--brown);
    font-weight: 700;
}

.review-country {
    color: var(--light-text);
    margin-top: 5px;
}

.review-loading {
    text-align: center;
    padding: 70px 20px;
    color: #777;
}

.review-arrow {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: var(--brown);
    color: #fff;

    font-size: 18px;

    transition: all 0.3s ease;
}

.review-arrow:hover {
    background: var(--gold);
}

.review-dots {
    display: flex;
    justify-content: center;

    gap: 10px;

    margin-top: 25px;
}

.review-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #ccc;

    cursor: pointer;
}

.review-dot.active {
    background: var(--gold);
}


/* =========================================================
   REVIEW FORM
========================================================= */

.review-form-section {
    padding: 110px 6%;
    background: var(--cream);
}

#reviewForm {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    padding: 45px;

    background: #fff;

    border-radius: 20px;

    box-shadow: var(--shadow);
}

#reviewForm input,
#reviewForm select,
#reviewForm textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 14px 16px;

    margin-bottom: 18px;

    outline: none;

    background: #fff;

    color: #333;
}

#reviewForm input:focus,
#reviewForm select:focus,
#reviewForm textarea:focus {
    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}


/* =========================================================
   REQUEST A QUOTE
========================================================= */

.quote-section {
    padding: 110px 6%;
    background: #fff;
}

.quote-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: start;
}

.quote-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    margin-bottom: 20px;
}

.quote-text > p {
    line-height: 1.9;
}

.quote-contact {
    margin-top: 35px;
}

.quote-contact p {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 14px;
}

.quote-contact i {
    width: 25px;
    color: var(--gold);
}

.quote-form {
    padding: 40px;

    background: var(--cream);

    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(59, 48, 37, 0.08);
}

.quote-form label {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-weight: 600;

    font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;

    border: 1px solid #ddd7c8;

    border-radius: 10px;

    padding: 13px 15px;

    margin-bottom: 20px;

    background: #fff;

    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.quote-form textarea {
    resize: vertical;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 100px 6%;

    text-align: center;

    background: var(--dark);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-section .small-title {
    color: var(--gold);
}

.contact-section h2 {
    color: #fff;

    font-size: clamp(2.5rem, 4vw, 4rem);

    margin-bottom: 20px;
}

.contact-section > .contact-container > p {
    color: #ddd;
}

.contact-section .contact-container > p i {
    color: var(--gold);
    margin-right: 8px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #30261c;
    color: #fff;
}

.footer-content {
    max-width: 1300px;
    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 50px;

    padding: 70px 6%;
}

.footer-content h3,
.footer-content h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-content h3 {
    font-size: 25px;
}

.footer-content p,
.footer-content a {
    color: #ddd;
    margin-bottom: 10px;
    display: block;
}

.footer-content a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;

    padding: 20px;
}

.footer-bottom p {
    color: #bbb;
    margin: 0;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    z-index: 2000;

    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
}


/* =========================================================
   BACK TO TOP
========================================================= */

#topBtn {
    position: fixed;

    right: 25px;
    bottom: 100px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--gold);

    color: #fff;

    cursor: pointer;

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 2000;

    transition: 0.3s;
}

#topBtn:hover {
    background: var(--brown-dark);
}


/* =========================================================
   GOOGLE TRANSLATE
   KEEP SELECT LANGUAGE BUTTON
   HIDE "GOOGLE TRANSLATE" WORDS
========================================================= */

.language-switcher {
    position: fixed;

    top: 15px;
    right: 20px;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.95);

    padding: 5px 10px;

    border-radius: 6px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);

    display: block !important;
    visibility: visible !important;
}

#google_translate_element {
    display: block !important;
    visibility: visible !important;
}

.goog-te-gadget {
    font-family: "Poppins", sans-serif !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: inline-block !important;
    visibility: visible !important;

    color: #333 !important;

    background: #fff !important;

    font-size: 13px !important;

    padding: 5px 8px !important;

    border: 1px solid var(--gold) !important;

    border-radius: 5px !important;
}

.goog-te-gadget > span,
.goog-te-gadget .goog-logo-link,
.goog-te-gadget-simple img,
.goog-te-gadget-simple .goog-te-menu-value span,
.goog-te-gadget .goog-te-gadget-icon {
    display: none !important;
    visibility: hidden !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

.goog-tooltip {
    display: none !important;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.review-success {
    background: #fff;

    border-left: 6px solid var(--gold);

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    text-align: center;
}

.review-success i {
    font-size: 60px;

    color: var(--gold-dark);

    margin-bottom: 20px;
}

.review-success h3 {
    color: var(--brown);

    margin-bottom: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        padding-left: 3%;
        padding-right: 3%;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

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

    .about-container,
    .unique-container,
    .quote-container {
        grid-template-columns: 1fr;
    }

    .unique-image {
        height: 500px;
    }

    .about-gallery {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

    .itinerary-grid,
    .itineraries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .nav-button {
        display: none;
    }

    .nav-links {
        gap: 12px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .itinerary-grid,
    .itineraries-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    header {
        position: fixed;
    }

    .navbar {
        min-height: 75px;
        padding: 10px 5%;
    }

    .logo img {
        width: 150px;
        max-height: 65px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: var(--dark);

        display: none;

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 18px;

        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #fff;
        font-size: 15px;
    }


    /* HERO */

    .hero {
        min-height: 760px;
        padding-top: 75px;

        background-position: center;
    }

    .hero-overlay {
        min-height: 685px;
    }

    .hero-content {
        padding: 100px 7% 60px;
    }

    .hero-content .welcome {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
    }

    .hero-text {
        font-size: 14px;
    }


    /* GENERAL SECTIONS */

    .about-section,
    .unique-section,
    .experiences-section,
    .destinations-section,
    .gallery-section,
    .reviews,
    .quote-section,
    .review-form-section,
    .contact-section {
        padding: 80px 5%;
    }

    .about-container,
    .unique-container,
    .quote-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-gallery {
        min-height: 450px;

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 220px 220px;
    }

    .about-image.image-large {
        grid-row: 1 / 3;
    }

    .unique-image {
        height: 430px;
    }

    .unique-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .gallery-grid img {
        height: 220px;
    }


    /* REVIEWS */

    .review-wrapper {
        gap: 8px;
    }

    .review-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .review-container {
        min-height: 390px;
    }

    .review-slide {
        padding: 30px 20px;
    }

    .review-message {
        font-size: 16px;
    }


    /* FORMS */

    #reviewForm,
    .quote-form {
        padding: 25px;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;

        padding: 55px 7%;
    }


    /* GOOGLE TRANSLATE */

    .language-switcher {
        top: 8px;
        right: 8px;

        transform: scale(0.88);

        transform-origin: top right;
    }


    /* =====================================================
       ITINERARIES MOBILE FIX
    ===================================================== */

    .itineraries-hero {
        width: 100%;

        min-height: 650px !important;

        padding-top: 75px !important;

        background:
            linear-gradient(
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.55)
            ),
            url("amboseli-serengeti.jpg") center center / cover no-repeat !important;
    }

    .itineraries-hero .hero-overlay {
        width: 100%;

        min-height: 575px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;
    }

    .itineraries-hero .hero-content {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto !important;

        padding: 70px 6% 50px !important;

        text-align: center !important;
    }

    .itineraries-hero .hero-content .welcome {
        width: 100%;

        font-size: 16px !important;

        margin-bottom: 12px !important;

        text-align: center !important;
    }

    .itineraries-hero .hero-content h1 {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto 20px !important;

        font-size: 2.7rem !important;

        line-height: 1.1 !important;

        text-align: center !important;
    }

    .itineraries-hero .hero-text {
        width: 100% !important;

        max-width: 650px !important;

        margin: 0 auto 25px !important;

        font-size: 14px !important;

        line-height: 1.7 !important;

        text-align: center !important;
    }


    /* ITINERARY SECTIONS */

    .itinerary-section,
    .itineraries-section {
        width: 100% !important;

        padding: 65px 5% !important;
    }

    .itinerary-container,
    .itineraries-container {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto !important;
    }


    /* SECTION HEADINGS */

    .itinerary-section .section-heading,
    .itineraries-section .section-heading {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto 35px !important;

        text-align: center !important;
    }

    .itinerary-section .section-heading h2,
    .itineraries-section .section-heading h2 {
        font-size: 2.2rem !important;

        line-height: 1.2 !important;

        text-align: center !important;
    }


    /* ITINERARY CARDS */

    .itinerary-grid,
    .itineraries-grid {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 25px !important;
    }

    .itinerary-card,
    .itineraries-card {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto !important;

        border-radius: 15px !important;

        overflow: hidden !important;
    }

    .itinerary-card img,
    .itineraries-card img {
        width: 100% !important;

        height: 230px !important;

        object-fit: cover !important;
    }

    .itinerary-card-content,
    .itineraries-card-content {
        width: 100% !important;

        padding: 22px !important;
    }

    .itinerary-card h3,
    .itineraries-card h3 {
        font-size: 21px !important;

        line-height: 1.3 !important;

        margin-bottom: 10px !important;
    }

    .itinerary-card p,
    .itineraries-card p {
        font-size: 14px !important;

        line-height: 1.7 !important;
    }


    /* DAY-BY-DAY */

    .itinerary-days {
        width: 100% !important;

        display: block !important;
    }

    .itinerary-day {
        width: 100% !important;

        margin-bottom: 25px !important;

        padding: 22px !important;

        border-radius: 15px !important;
    }

    .itinerary-day h3 {
        font-size: 20px !important;

        line-height: 1.3 !important;
    }

    .itinerary-day p {
        font-size: 14px !important;

        line-height: 1.75 !important;
    }


    /* MORNING / AFTERNOON / EVENING */

    .day-content,
    .day-details {
        width: 100% !important;
    }

    .morning,
    .afternoon,
    .evening {
        width: 100% !important;

        margin-bottom: 18px !important;

        padding: 18px !important;

        border-radius: 12px !important;

        background: var(--cream);
    }

    .morning h4,
    .afternoon h4,
    .evening h4 {
        font-size: 17px !important;

        margin-bottom: 7px !important;

        color: var(--brown);
    }

    .morning p,
    .afternoon p,
    .evening p {
        font-size: 13px !important;

        line-height: 1.7 !important;
    }


    /* PRICE */

    .price {
        font-size: 24px !important;
    }

    .price-circle {
        width: 100px !important;

        height: 100px !important;
    }


    /* BOOK NOW */

    .book-now,
    .itinerary-button {
        width: 100% !important;

        text-align: center !important;

        justify-content: center !important;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .logo img {
        width: 125px;
    }


    /* HERO */

    .hero-content {
        padding: 85px 6% 45px;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .hero-text {
        font-size: 13px;
    }

    .gold-button {
        padding: 13px 24px;

        font-size: 14px;
    }


    /* ABOUT */

    .about-gallery {
        min-height: auto;

        grid-template-columns: 1fr;

        grid-template-rows:
            250px
            190px
            190px;
    }

    .about-image.image-large {
        grid-row: auto;
    }


    /* UNIQUE */

    .unique-image {
        height: 350px;
    }


    /* DESTINATIONS / GALLERY */

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

    .destination-card,
    .destination-card img {
        min-height: 330px;

        height: 330px;
    }

    .gallery-grid img {
        height: 260px;
    }


    /* REVIEWS */

    .review-wrapper {
        flex-direction: column;
    }

    .review-container {
        min-height: 420px;

        order: 1;
    }

    .review-arrow {
        position: absolute;

        z-index: 5;

        top: 50%;

        transform: translateY(-50%);
    }

    #prevReview {
        left: 8px;
    }

    #nextReview {
        right: 8px;
    }


    /* WHATSAPP */

    .floating-whatsapp {
        width: 55px;

        height: 55px;

        right: 18px;

        bottom: 18px;

        font-size: 26px;
    }


    /* TOP BUTTON */

    #topBtn {
        right: 18px;

        bottom: 88px;
    }


    /* HEADINGS */

    .quote-text h2,
    .contact-section h2 {
        font-size: 2.4rem;
    }


    /* =====================================================
       ITINERARIES SMALL PHONE FIX
    ===================================================== */

    .itineraries-hero {
        min-height: 600px !important;

        padding-top: 75px !important;
    }

    .itineraries-hero .hero-overlay {
        min-height: 525px !important;
    }

    .itineraries-hero .hero-content {
        padding: 60px 5% 40px !important;
    }

    .itineraries-hero .hero-content h1 {
        font-size: 2.35rem !important;

        line-height: 1.08 !important;
    }

    .itineraries-hero .hero-text {
        font-size: 13px !important;
    }

    .itinerary-section,
    .itineraries-section {
        padding: 55px 5% !important;
    }

    .itinerary-section .section-heading h2,
    .itineraries-section .section-heading h2 {
        font-size: 2rem !important;
    }

    .itinerary-card img,
    .itineraries-card img {
        height: 200px !important;
    }

    .itinerary-card-content,
    .itineraries-card-content {
        padding: 18px !important;
    }

    .itinerary-day {
        padding: 18px !important;
    }

    .morning,
    .afternoon,
    .evening {
        padding: 15px !important;
    }

    .morning p,
    .afternoon p,
    .evening p {
        font-size: 13px !important;
    }

    .price-circle {
        width: 90px !important;

        height: 90px !important;

        font-size: 13px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .navbar {
        padding-left: 4%;

        padding-right: 4%;
    }

    .logo img {
        width: 115px;
    }

    .itineraries-hero .hero-content h1 {
        font-size: 2.05rem;
    }

    .itineraries-hero .hero-content .welcome {
        font-size: 14px;
    }

    .itineraries-hero .hero-text {
        font-size: 12px;
    }

    .itinerary-section,
    .itineraries-section {
        padding-left: 4% !important;

        padding-right: 4% !important;
    }

    .itinerary-day {
        padding: 15px !important;
    }
}

/* =========================================================
   FEATURED SAFARI ITINERARIES
========================================================= */

.featured-itineraries {
    padding: 100px 7%;
    background: #f8f7f3;
}


/* SECTION INTRO */

.featured-itineraries .section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}


.featured-itineraries .section-heading h2 {
    margin-bottom: 18px;
}


.itinerary-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}


/* CARD GRID */

.featured-itinerary-grid {
    max-width: 760px;
    margin: 0 auto;
}


/* ITINERARY CARD */

.itinerary-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease,
                box-shadow 0.35s ease;
}


.itinerary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}


/* IMAGE */

.itinerary-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}


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


.itinerary-card:hover .itinerary-image img {
    transform: scale(1.05);
}


/* CARD CONTENT */

.itinerary-card-content {
    padding: 35px 36px 40px;
}


.itinerary-card-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.25;
    color: #193c2f;
    margin-bottom: 20px;
}


/* DESCRIPTION */

.itinerary-description {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}


/* PRICE */

.itinerary-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 28px;
}


/* FULL ITINERARY LINK */

.itinerary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #176b4d;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition: color 0.3s ease,
                gap 0.3s ease;
}


.itinerary-link span {
    font-size: 20px;
    line-height: 1;
}


.itinerary-link:hover {
    color: #c28b2c;
    gap: 13px;
}


/* VIEW ALL */

.view-all-itineraries {
    text-align: center;
    margin-top: 50px;
}


.view-all-itineraries .gold-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .featured-itineraries {
        padding: 70px 20px;
    }


    .featured-itineraries .section-heading {
        margin-bottom: 35px;
    }


    .itinerary-intro {
        font-size: 14px;
        line-height: 1.7;
    }


    .featured-itinerary-grid {
        width: 100%;
    }


    .itinerary-card {
        border-radius: 24px;
    }


    .itinerary-image {
        height: 250px;
    }


    .itinerary-card-content {
        padding: 28px 25px 32px;
    }


    .itinerary-card-content h3 {
        font-size: 25px;
        line-height: 1.3;
    }


    .itinerary-description {
        font-size: 15px;
        line-height: 1.8;
    }


    .itinerary-price {
        font-size: 18px;
    }


    .itinerary-link {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .featured-itineraries {
        padding: 60px 16px;
    }


    .itinerary-image {
        height: 225px;
    }


    .itinerary-card-content {
        padding: 25px 22px 30px;
    }


    .itinerary-card-content h3 {
        font-size: 23px;
    }


    .itinerary-description {
        font-size: 14px;
        line-height: 1.75;
    }

}