```css
/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}


img {
    width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea {
    font-family: inherit;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


.section {
    padding: 90px 0;
}


/* =====================================================
   HEADER / NAVBAR
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


.nav-container {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.logo a {
    font-size: 25px;
    font-weight: 800;
    color: #172033;
}


.logo span {
    color: #f28c28;
}


.navbar {
    display: flex;
    align-items: center;
    gap: 28px;
}


.navbar a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: 0.3s ease;
}


.navbar a:hover {
    color: #f28c28;
}


.nav-btn {
    padding: 12px 22px;
    border-radius: 30px;
    background: #f28c28;
    color: #fff;
    font-weight: 700;
    transition: 0.3s ease;
}


.nav-btn:hover {
    background: #d96f0c;
    transform: translateY(-2px);
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
}


.primary-btn {
    background: #f28c28;
    color: #fff;
}


.primary-btn:hover {
    background: #d96f0c;
    transform: translateY(-2px);
}


.secondary-btn {
    background: #fff;
    color: #172033;
    border: 2px solid #fff;
}


.secondary-btn:hover {
    background: transparent;
    color: #fff;
}


/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("images/hero.jpg") center/cover no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}


.hero-container {
    position: relative;
    z-index: 2;
}


.hero-content {
    max-width: 700px;
    color: #fff;
}


.hero-tagline {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}


.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    margin-bottom: 25px;
}


.hero h1 span {
    color: #f28c28;
}


.hero-text {
    max-width: 620px;
    font-size: 18px;
    margin-bottom: 32px;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


/* =====================================================
   FEATURES
===================================================== */

.features {
    padding: 35px 0;
    background: #fff;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}


.feature-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1df;
    font-size: 25px;
}


.feature-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}


.feature-card p {
    color: #777;
    font-size: 13px;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}


.section-heading p {
    color: #f28c28;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}


.section-heading h2 {
    color: #172033;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
}


.section-heading span {
    display: block;
    width: 65px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 5px;
    background: #f28c28;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: #f8f9fb;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}


.about-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


.about-content .small-heading,
.why-content .small-heading {
    color: #f28c28;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}


.about-content h2,
.why-content h2 {
    color: #172033;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}


.about-content p {
    color: #666;
    margin-bottom: 18px;
}


.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
}


.about-points div {
    font-weight: 600;
    color: #333;
}


/* =====================================================
   PACKAGES
===================================================== */

.packages {
    background: #fff;
}


.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


.package-card {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}


.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}


.package-image {
    position: relative;
    overflow: hidden;
}


.package-image img {
    height: 230px;
    object-fit: cover;
    transition: 0.5s ease;
}


.package-card:hover .package-image img {
    transform: scale(1.06);
}


.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 13px;
    border-radius: 20px;
    background: #f28c28;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}


.package-content {
    padding: 25px;
}


.package-location {
    color: #f28c28;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}


.package-content h3 {
    color: #172033;
    font-size: 23px;
    margin-bottom: 10px;
}


.package-content p:not(.package-location) {
    color: #777;
    font-size: 14px;
    margin-bottom: 18px;
}


.package-content a {
    color: #f28c28;
    font-weight: 700;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #f8f9fb;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.service-card {
    padding: 35px 28px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}


.service-card:hover {
    transform: translateY(-7px);
}


.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1df;
    font-size: 30px;
}


.service-card h3 {
    color: #172033;
    margin-bottom: 12px;
    font-size: 21px;
}


.service-card p {
    color: #777;
    font-size: 14px;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-us {
    background: #fff;
}


.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.why-content > p:not(.small-heading) {
    color: #666;
    margin-bottom: 25px;
}


.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}


.why-item > span {
    min-width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1df;
    color: #f28c28;
    font-weight: 800;
}


.why-item h3 {
    color: #172033;
    margin-bottom: 4px;
}


.why-item p {
    color: #777;
    font-size: 14px;
}


.why-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery {
    background: #f8f9fb;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.gallery-item {
    overflow: hidden;
    height: 260px;
    border-radius: 8px;
}


.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}


.gallery-item:hover img {
    transform: scale(1.08);
}


/* =====================================================
   CALL TO ACTION
===================================================== */

.cta {
    padding: 70px 0;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
        ),
        url("images/cta.jpg") center/cover no-repeat;
    color: #fff;
}


.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}


.cta-content p {
    color: #f28c28;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}


.cta-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
}


.cta-content span {
    color: #ddd;
}


.cta-btn {
    flex-shrink: 0;
    background: #f28c28;
    color: #fff;
}


.cta-btn:hover {
    background: #d96f0c;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: #fff;
}


.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}


.contact-info h3 {
    color: #172033;
    font-size: 32px;
    margin-bottom: 15px;
}


.contact-info > p {
    color: #777;
    margin-bottom: 30px;
}


.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}


.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1df;
    font-size: 21px;
}


.contact-detail h4 {
    color: #172033;
    margin-bottom: 2px;
}


.contact-detail p {
    color: #777;
    font-size: 14px;
}


.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}


.social-links a {
    padding: 9px 14px;
    border-radius: 5px;
    background: #f3f3f3;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}


.social-links a:hover {
    background: #f28c28;
    color: #fff;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form {
    padding: 35px;
    background: #f8f9fb;
    border-radius: 10px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    background: #fff;
    color: #333;
    transition: 0.3s ease;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #f28c28;
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}


.form-group textarea {
    resize: vertical;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #172033;
    color: #fff;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 70px 0 50px;
}


.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}


.footer-logo span {
    color: #f28c28;
}


.brand-column p {
    max-width: 330px;
    color: #b8bec9;
    font-size: 14px;
}


.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.footer-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
}


.footer-column a,
.footer-column p {
    color: #b8bec9;
    font-size: 14px;
    transition: 0.3s ease;
}


.footer-column a:hover {
    color: #f28c28;
}


.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}


.footer-social a {
    padding: 7px 11px;
    border: 1px solid #3a4353;
    border-radius: 4px;
}


.footer-btn {
    display: inline-block;
    width: fit-content;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 5px;
    background: #f28c28;
    color: #fff !important;
}


.footer-btn:hover {
    background: #d96f0c;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    border-top: 1px solid #30394a;
}


.footer-bottom-content {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.footer-bottom p {
    color: #9ea6b4;
    font-size: 13px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f28c28;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}


.back-to-top:hover {
    background: #d96f0c;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {


    .navbar {
        gap: 15px;
    }


    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ==========================================
   SAFARINDIA HEADER
========================================== */

.header {
    background: #ffffff;
    position: relative;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 90px;
}


/* LOGO */

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: #17233c;
    font-size: 28px;
    font-weight: 700;
    white-space: nowrap;
}

.logo a span {
    color: #f28c28;
}


/* NAVIGATION */

.navbar {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.navbar a {
    text-decoration: none;
    color: #17233c;
    font-weight: 600;
    white-space: nowrap;
}

.navbar a:hover {
    color: #f28c28;
}


/* WHATSAPP */

.header-whatsapp {
    text-decoration: none;
    color: #17233c;
    font-weight: 600;
    white-space: nowrap;
}

.header-whatsapp:hover {
    color: #f28c28;
}


/* EMAIL */

.header-email {
    text-decoration: none;
    color: #17233c;
    font-weight: 600;
    white-space: nowrap;
}

.header-email:hover {
    color: #f28c28;
}


/* BOOK NOW */

.book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #f28c28;
    color: #ffffff !important;

    text-decoration: none;

    padding: 13px 22px;
    border-radius: 25px;

    font-weight: 700;
    white-space: nowrap;

    transition: 0.3s;
}

.book-now:hover {
    background: #e47712;
    transform: translateY(-2px);
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 1100px) {

    .nav-container {
        gap: 12px;
    }

    .logo a {
        font-size: 23px;
    }

    .navbar {
        gap: 14px;
    }

    .navbar a,
    .header-whatsapp,
    .header-email {
        font-size: 14px;
    }

}


@media (max-width: 768px) {

    .nav-container {
        position: relative;
        min-height: 75px;
    }

    .logo a {
        font-size: 21px;
    }

    .navbar {
        display: none !important;
    }

    .header-whatsapp,
    .header-email,
    .book-now {
        display: none;
    }

    .mobile-menu-btn {
        display: block !important;

        background: #f28c28;
        color: #ffffff;

        border: none;
        border-radius: 6px;

        width: 44px;
        height: 44px;

        font-size: 26px;
        cursor: pointer;
    }

    .navbar.mobile-active {
        display: flex !important;
        flex-direction: column;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        padding: 20px;

        box-shadow: 0 5px 15px rgba(0,0,0,0.12);

        z-index: 999;
    }

}

/* ==========================================
   FIXED SAFARINDIA HEADER
========================================== */

.header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    overflow: visible;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    min-height: 90px;

    padding: 0 35px;

    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================
   LOGO
========================= */

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;

    color: #17233c;

    font-size: 28px;
    font-weight: 700;

    white-space: nowrap;
}

.logo a span {
    color: #f28c28;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-left: auto;

    flex-shrink: 1;
}

.navbar a {
    color: #17233c;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    white-space: nowrap;
}

.navbar a:hover {
    color: #f28c28;
}


/* =========================
   WHATSAPP
========================= */

.header-whatsapp {
    color: #17233c;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    white-space: nowrap;

    flex-shrink: 0;
}

.header-whatsapp:hover {
    color: #f28c28;
}


/* =========================
   EMAIL
========================= */

.header-email {
    color: #17233c;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    flex-shrink: 1;
}

.header-email:hover {
    color: #f28c28;
}


/* =========================
   BOOK NOW
========================= */

.book-now {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #f28c28;
    color: #ffffff !important;

    text-decoration: none;

    padding: 12px 20px;

    border-radius: 25px;

    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;

    flex-shrink: 0;

    transition: 0.3s;
}

.book-now:hover {
    background: #e47712;
    transform: translateY(-2px);
}


/* =========================
   MOBILE BUTTON
========================= */

.mobile-menu-btn {
    display: none;
}


/* ==========================================
   SMALL DESKTOP / LAPTOP
========================================== */

@media (max-width: 1400px) {

    .nav-container {
        padding: 0 20px;
        gap: 12px;
    }

    .logo a {
        font-size: 23px;
    }

    .navbar {
        gap: 13px;
    }

    .navbar a,
    .header-whatsapp,
    .header-email {
        font-size: 13px;
    }

    .book-now {
        padding: 10px 15px;
        font-size: 13px;
    }
}


/* ==========================================
   TABLET / MOBILE
========================================== */

@media (max-width: 1000px) {

    .nav-container {
        min-height: 75px;
    }

    .navbar,
    .header-whatsapp,
    .header-email,
    .book-now {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;

        margin-left: auto;

        width: 44px;
        height: 44px;

        border: none;
        border-radius: 6px;

        background: #f28c28;
        color: #ffffff;

        font-size: 26px;

        cursor: pointer;
    }

    .navbar.mobile-active {
        display: flex !important;

        flex-direction: column;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        box-sizing: border-box;

        background: #ffffff;

        padding: 20px;

        gap: 12px;

        box-shadow: 0 5px 15px rgba(0,0,0,0.12);

        z-index: 999;
    }

    .navbar.mobile-active a {
        display: block;

        width: 100%;

        text-align: center;

        padding: 10px;
    }
}


/* ==========================================
   EXTRA SMALL MOBILE
========================================== */

@media (max-width: 500px) {

    .nav-container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 19px;
    }

}
/* ==========================================
   FLOATING WHATSAPP & CALL BUTTONS
========================================== */

.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 22px;

    display: flex;
    flex-direction: column;

    gap: 12px;

    z-index: 9999;
}


/* Common button */

.floating-contact a {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #ffffff;

    font-size: 28px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    transition: 0.3s;
}


/* WhatsApp */

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}


/* Call */

.floating-call {
    background: #1976D2;
}

.floating-call:hover {
    transform: scale(1.1);
}


/* Mobile */

@media (max-width: 768px) {

    .floating-contact {
        right: 15px;
        bottom: 15px;
    }

    .floating-contact a {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

}
/* ==========================================
   BACK TO TOP + FLOATING CONTACT FIX
========================================== */

/* Back to Top button */
.back-to-top {
    position: fixed !important;

    right: 22px !important;
    bottom: 165px !important;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10000 !important;

    border-radius: 50%;
}


/* WhatsApp + Call buttons */
.floating-contact {
    position: fixed !important;

    right: 22px !important;
    bottom: 22px !important;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999 !important;
}


/* Mobile */
@media (max-width: 768px) {

    .back-to-top {
        right: 15px !important;
        bottom: 145px !important;
    }

    .floating-contact {
        right: 15px !important;
        bottom: 15px !important;
    }

}