.hero-slider{
    position:relative;
    height:850px;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.hero-content{
    position:relative;
    z-index:5;

    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding-top:120px;
}

.hero-text{
    width:55%;
    color:#fff;
}

.welcome{
    display:block;
    font-size:28px;
    margin-bottom:10px;
}

.hero-text h1{
    font-size:72px;
    line-height:1.1;
    color:#C79A2B;
    margin-bottom:20px;
}

.hero-text h1 span{
    display:block;
    color:#C79A2B;
}

.hero-text p{
    font-size:32px;
    color:#fff;
    margin-bottom:30px;
}

.hero-btn{
    background:#C79A2B;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    display:inline-block;
    font-weight:600;
}

.hero-form{
    width:360px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.hero-form h3{
    margin-bottom:20px;
    color:#222;
}

.hero-form input,
.hero-form select,
.hero-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    border:1px solid #ddd;
}

.hero-form button{
    width:100%;
    padding:15px;
    border:none;
    background:#C79A2B;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.search-strip{
    position:absolute;
    bottom:0;
    width:100%;
    background:#C79A2B;
    padding:30px 0;
    z-index:6;
}

.search-box{
    max-width:1000px;
    margin:auto;
    background:#fff;
    border-radius:60px;

    display:flex;
    align-items:center;
    gap:20px;

    padding:20px 30px;
}

.search-item{
    flex:1;
}

.search-item label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.search-item select,
.search-item input{
    width:100%;
    border:none;
    outline:none;
}

.search-btn{
    background:#C79A2B;
    color:#fff;
    border:none;
    padding:18px 40px;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
}

.main-nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

.main-nav ul li{
    position:relative;
}

.main-nav ul li a{
    display:block;
    padding:30px 18px;
    text-decoration:none;
    color:#996617;
    font-weight:600;
    font-size:18px;
}

.main-nav ul li a:hover{
    color:#CB9031;
}

/* MEGA MENU */

.mega-menu{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    width:500px;

    background:#fff;

    box-shadow:
    0 10px 30px rgba(0,0,0,.15);

    border-top:
    3px solid #CB9031;

    z-index:99999;

    padding:30px;
}

.mega-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.mega-grid h4{

    font-size:18px;

    color:#996617;

    margin-bottom:15px;
}

.mega-grid a{

    display:block;

    padding:10px 0;

    color:#333 !important;
}

.mega-grid a:hover{
    color:#CB9031 !important;
}

/* BOOK BUTTON */

.book-btn{

    background:#CB9031;

    color:#fff;

    padding:
    15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;
}

.book-btn:hover{
    background:#996617;
}





:root{

    /* Primary Brand Colors */

    --primary-gold: #CB9031;
    --secondary-gold: #B4905A;
    --dark-bronze: #996617;
    --light-gold: #CFA664;

    /* Background Colors */

    --cream: #F4E6D2;
    --beige: #E4CFB4;
    --light-bg: #FBF8F3;

    /* Text Colors */

    --text-dark: #3A2A16;
    --text-light: #6B5637;
    --white: #FFFFFF;

    /* Gradients */

    --gold-gradient:
    linear-gradient(
        135deg,
        #996617 0%,
        #CB9031 50%,
        #E7C27B 100%
    );

    --hero-gradient:
    linear-gradient(
        rgba(58,42,22,.75),
        rgba(153,102,23,.50)
    );

    /* Shadows */

    --shadow-sm:
    0 5px 15px rgba(0,0,0,.08);

    --shadow-md:
    0 10px 30px rgba(0,0,0,.12);

    --shadow-lg:
    0 15px 40px rgba(0,0,0,.15);

    /* Border Radius */

    --radius-sm:8px;
    --radius-md:12px;
    --radius-lg:20px;
    --radius-xl:30px;

}

/* ==================================================
   BODY
================================================== */

body{
    background:var(--light-bg);
    color:var(--text-dark);
    font-family:'Poppins',sans-serif;
}

/* ==================================================
   HEADINGS
================================================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Playfair Display',serif;
    color:var(--dark-bronze);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
}

.section-title p{
    color:var(--text-light);
}

/* ==================================================
   TOP BAR
================================================== */

.topbar{
    background:var(--dark-bronze);
    color:#fff;
}

/* ==================================================
   HEADER
================================================== */

.header{
    background:var(--cream);
    box-shadow:var(--shadow-sm);
}

/* ==================================================
   NAVIGATION
================================================== */

.navigation{
    background:var(--primary-gold);
}

.navigation ul li a{
    color:#fff;
    font-weight:600;
}

.navigation ul li a:hover{
    background:var(--dark-bronze);
}

.submenu{
    background:#fff;
    box-shadow:var(--shadow-md);
}

.submenu a{
    color:var(--text-dark) !important;
}

.submenu a:hover{
    background:var(--cream);
    color:var(--dark-bronze) !important;
}

/* ==================================================
   HERO
================================================== */

.hero{
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:var(--hero-gradient);
}

.hero h1{
    color:#fff;
    font-size:60px;
}

.hero p{
    color:#fff;
}

.hero-form{
    background:#fff;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
}

.hero-form h3{
    color:var(--dark-bronze);
}

/* ==================================================
   BUTTONS
================================================== */

.btn{
    display:inline-block;
    background:var(--gold-gradient);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
}

.btn-outline:hover{
    background:#fff;
    color:var(--dark-bronze);
}

/* ==================================================
   ABOUT SECTION
================================================== */

.about{
    background:#fff;
}

.about-image img{
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-md);
}

.about .section-tag{
    color:var(--primary-gold);
    font-weight:700;
    letter-spacing:2px;
}

/* ==================================================
   COUNTERS
================================================== */

.stats div{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-sm);
}

.stats h3{
    font-size:40px;
    color:var(--primary-gold);
}

/* ==================================================
   WHY CHOOSE US
================================================== */

.why-us{
    background:var(--cream);
}

.card{
    background:#fff;
    border-radius:var(--radius-lg);
    padding:30px;
    box-shadow:var(--shadow-sm);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:50px;
    color:var(--primary-gold);
}

/* ==================================================
   SAFARI CARDS
================================================== */

.tour-card{
    background:#fff;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-md);
}

.tour-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.tour-card h3{
    padding:20px;
}

.tour-card a{
    display:block;
    text-align:center;
    background:var(--gold-gradient);
    color:#fff;
    text-decoration:none;
    padding:15px;
}

/* ==================================================
   DESTINATIONS
================================================== */

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius-lg);
}

.destination-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.destination-card h3{
    position:absolute;
    bottom:20px;
    left:20px;
    color:#fff;
}

/* ==================================================
   TESTIMONIALS
================================================== */

.testimonial{
    background:#fff;
    padding:35px;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);
}

.testimonial i{
    color:var(--primary-gold);
    font-size:40px;
}

/* ==================================================
   NEWSLETTER
================================================== */

.newsletter{
    background:var(--gold-gradient);
    color:#fff;
    text-align:center;
}

.newsletter h2{
    color:#fff;
}

.newsletter input{
    height:55px;
    border:none;
    border-radius:50px;
    padding:0 20px;
}

.newsletter button{
    background:var(--dark-bronze);
    color:#fff;
    border:none;
    border-radius:50px;
    padding:15px 35px;
}

/* ==================================================
   FOOTER
================================================== */

.footer{
    background:#2E2111;
    color:#F4E6D2;
}

.footer h3{
    color:#E7C27B;
}

.footer a{
    color:#F4E6D2;
    text-decoration:none;
}

.footer a:hover{
    color:#CB9031;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    color:#D7C4A8;
}

/* ==================================================
   WHATSAPP FLOAT
================================================== */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    z-index:999;
    box-shadow:var(--shadow-lg);
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

.hero h1{
    font-size:36px;
}

.section-title h2{
    font-size:30px;
}

}