:root{
    --primary:#ea5626;
    --dark:#111;
    --light:#f8f6f2;
    --text:#555;
}



body{
    font-family:'Inter',sans-serif;
    background:var(--light);
    color:#5e5751;
}

.whatsapp-container{
    position:fixed;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    max-width:1320px; /* bootstrap container size */
    padding:0 15px;
    z-index:9999;
    pointer-events:none;
}

.whatsapp-float{
    width:60px;
    height:60px;
    margin-left:auto;

    background:#25D366;
    color:white;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,0.25);

    transition:0.3s ease;
    animation:whatsappPulse 2s infinite;

    pointer-events:auto;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:white;
    background:#1ebe5d;
}

/* Pulse Animation */
@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* MOBILE */
@media(max-width:576px){

.whatsapp-container{
    bottom:20px;
    padding:0 18px;
}

.whatsapp-float{
    width:55px;
    height:55px;
    font-size:28px;
}

}
/* TOP HEADER */
.top-header{
    background:#0f0f0f;
    padding:12px 0;
    color:#fff;
    font-size:13px;
    letter-spacing:1px;
}

/* NAVBAR */
.navbar-custom{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.logo{
    font-size:34px;
    font-weight:800;
    color:#111;
    text-decoration:none;
}

.logo span{
    color:var(--primary);
}

.nav-link{
    color:#111 !important;
    font-size:13px;
    font-weight:700;
    position:relative;
    padding-bottom:6px;
    transition:0.3s;
}

/* HOVER UNDERLINE */
.nav-link::after{
    
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:0.3s ease;
}

.nav-link:hover::after{
    width:100%;
}

/* BUTTON */
.nav-btn{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:10px 20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:3px;
    transition:0.3s;
}

.nav-btn:hover{
    background:#c79d67;
    transform:translateY(-2px);
}

h1,h2,h3,h4,h5{
    font-family:'Playfair Display',serif;
}

.section-padding{
    padding:90px 0;
}

.section-subtitle{
    color:var(--primary);
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title{
    font-size:42px;
    color:var(--dark);
    margin-bottom:20px;
    line-height:1.2;
}

/* HERO */

.hero-section{
    height:50vh;
    background:url('images/michamvi-pingwe-michamvi.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:700px;
}

.hero-badge{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.25);
    padding:8px 18px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:22px;
    letter-spacing:2px;
    font-size:11px;
}

.hero-title{
    font-size:58px;
    line-height:1.1;
    margin-bottom:22px;
    font-weight:800;
}

.hero-text{
    line-height:1.9;
    font-size:1rem;
    max-width:650px;
    margin-bottom:30px;
    color:#f1f1f1;
}

.hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
}

.hero-meta div{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.hero-btn{
    display:inline-block;
    margin-top:35px;
    background:var(--primary);
    color:white;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.hero-btn:hover{
    background:#6f6d30;
}

/* OVERVIEW */

.overview-box{
    background:white;
    border-radius:24px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.overview-text{
    line-height:1.9;
    font-size:0.98rem;
}

.info-card{
    background:#f9f7f4;
    border-radius:20px;
    padding:35px;
}

.info-item{
    display:flex;
    justify-content:space-between;
    padding:16px 0;
    border-bottom:1px solid #e6ddd5;
    font-size:14px;
}

.info-item:last-child{
    border:none;
}

/* HIGHLIGHTS */

.highlight-card{
    background:white;
    border-radius:20px;
    padding:30px;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    transition:0.4s;
}

.highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.highlight-icon i{
    color:white;
    font-size:24px;
}

.highlight-card h4{
    color:var(--dark);
    margin-bottom:14px;
    font-size:24px;
}

.highlight-card p{
    line-height:1.8;
    font-size:0.95rem;
}

/* ITINERARY */

.itinerary-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    margin-bottom:30px;
}

.day-left{
    padding:40px;
}

.day-badge{
    background:var(--primary);
    color:white;
    display:inline-block;
    padding:7px 18px;
    border-radius:50px;
    letter-spacing:2px;
    font-size:11px;
    margin-bottom:18px;
}

.day-title{
    font-size:34px;
    color:var(--dark);
    margin-bottom:20px;
}

.day-text{
    line-height:1.9;
    margin-bottom:15px;
    font-size:0.96rem;
}

.accommodation-box{
    background:#f9f7f4;
    padding:18px;
    border-radius:16px;
    margin-top:28px;
}

.itinerary-image{
    position:relative;
}

.itinerary-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:18px;
}

.image-label{
    position:absolute;
    top:15px;
    left:15px;
    background:rgba(0,0,0,0.7);
    color:white;
    padding:7px 14px;
    border-radius:30px;
    font-size:11px;
    letter-spacing:1px;
}

/* PRICE TABLE */

.price-table-wrapper{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.price-table{
    margin:0;
}

.price-table thead{
    background:var(--dark);
    color:white;
}

.price-table th{
    padding:18px;
    border:none;
    white-space:nowrap;
    font-size:14px;
}

.price-table td{
    padding:18px;
    white-space:nowrap;
    font-size:14px;
}

.price-table tbody tr:hover{
    background:#faf7f3;
}

/* INCLUDE */

.include-box{
    background:white;
    border-radius:20px;
    padding:35px;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.include-box h3{
    color:var(--dark);
    margin-bottom:24px;
    font-size:28px;
}

.include-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.include-box ul li{
    padding:12px 0;
    border-bottom:1px solid #ece4dc;
    font-size:0.95rem;
}

/* CTA */

.cta-section{
    background:var(--dark);
    color:white;
    text-align:center;
    padding:100px 0;
}

.cta-title{
    font-size:46px;
    margin-bottom:20px;
}

.cta-text{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
    font-size:0.98rem;
}

.cta-btn{
    background:var(--primary);
    color:white;
    text-decoration:none;
    padding:14px 34px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
}

/* TABLET */

@media(max-width:991px){

.hero-section{
    height:auto;
    min-height:100vh;
    padding:120px 0 80px;
}

.hero-title{
    font-size:42px;
}

.section-title{
    font-size:34px;
}

.day-title{
    font-size:28px;
}

.cta-title{
    font-size:34px;
}

.day-left{
    padding:30px;
}

}

/* MOBILE */
@media(max-width:576px){

.hero-section{
    min-height:35vh;   /* 🔥 ilikua 50vh sasa ndogo zaidi */
    height:auto;
    padding:50px 0 30px; /* 🔥 kupunguza vertical spacing */
    align-items:center;
}

.hero-content{
    max-width:100%;
}

.hero-title{
    font-size:28px; /* kidogo zaidi ili isi-expire space */
    line-height:1.2;
    margin-bottom:12px;
}

.hero-text{
    font-size:0.9rem;
    margin-bottom:18px;
    line-height:1.6;
}

.hero-badge{
    font-size:10px;
    padding:6px 14px;
    margin-bottom:14px;
}

.hero-meta{
    flex-direction:column;
    gap:8px;
}

.hero-btn{
    padding:10px 22px;
    margin-top:18px;
    font-size:14px;
}

/* rest yako unchanged */
.section-padding{
    padding:30px 0;
}

.section-title{
    font-size:28px;
}

.day-title{
    font-size:24px;
}

.cta-title{
    font-size:28px;
}

.overview-box{
    padding:30px 22px;
}

.info-card{
    padding:28px 22px;
}

.highlight-card{
    padding:26px 22px;
}

.day-left{
    padding:28px 22px;
}

.itinerary-image img{
    height:200px;
}

.price-table th,
.price-table td{
    font-size:12px;
    padding:12px;
}

.include-box{
    padding:28px 22px;
}

.cta-section{
    padding:80px 0;
}

}

/* ================= RELATED SAFARIS PRO ================= */

.related-section{
    background:#fff;
}

/* CARD */
.safari-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
    height:100%;
}

.safari-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE */
.safari-img{
    position:relative;
    overflow:hidden;
}

.safari-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.6s ease;
}

.safari-card:hover .safari-img img{
    transform:scale(1.1);
}

/* BADGE */
.safari-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:rgba(0,0,0,0.75);
    color:#fff;
    padding:6px 14px;
    font-size:11px;
    border-radius:30px;
    letter-spacing:1px;
}

/* BODY */
.safari-body{
    padding:22px;
}

.safari-body h4{
    font-size:20px;
    color:var(--dark);
    margin-bottom:10px;
}

.safari-body p{
    font-size:0.92rem;
    line-height:1.7;
    margin-bottom:18px;
}

/* BUTTON */
.safari-btn{
    display:inline-block;
    padding:10px 20px;
    background:var(--primary);
    color:white;
    border-radius:30px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.safari-btn:hover{
    background:#6f6d30;
}

/* ARROWS */
.custom-arrow{
    width:45px;
    height:45px;
    background:white;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    opacity:1;
}

.custom-arrow span{
    font-size:20px;
    color:var(--dark);
}

/* MOBILE */
@media(max-width:576px){

.safari-img img{
    height:200px;
}

.custom-arrow{
    width:38px;
    height:38px;
}

}



/* ================= FOOTER ================= */

.footer-section{
    background:#111;
    padding:100px 0 30px;
    color:white;
}

.footer-logo{
    font-size:36px;
    font-weight:800;
    color:white;
}

.footer-logo span{
    color:var(--primary);
}

.footer-text{
    color:#bbb;
    line-height:2;
    max-width:380px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    transition:0.4s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.footer-title{
    font-size:22px;
    margin-bottom:30px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:5px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
    color:#bbb;
}

.contact-item i{
    color:var(--primary);
    font-size:18px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:70px;
    padding-top:25px;
    text-align:center;
    color:#888;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .about-title{
        font-size:42px;
    }

    .about-image{
        height:500px;
    }

}

@media(max-width:576px){

    .about-section{
        padding:70px 0;
    }

    .about-title{
        font-size:32px;
    }

    .about-image{
        height:400px;
    }

    .experience-box{
        padding:20px;
    }

    .experience-box h2{
        font-size:36px;
    }

    .footer-section{
        padding:70px 0 30px;
    }

}

.top-link{
    color:#ddd;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-weight:500;
    transition:0.3s ease;
}

.top-link i{
    color:var(--primary);
    font-size:14px;
}

.top-link:hover{
    color:#fff;
}