
:root{
    --primary:#ea5626;
    --dark:#111;
    --light:#f8f6f2;
    --text:#555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:var(--text);
}

h1,h2,h3,h4,h5{
    font-family:'Playfair Display',serif;
}

/* 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);
}

/* HERO */
.hero{
    position:relative;
    min-height:100vh;
    background:url('../images/pexels-mikeknibbs-17849789.jpg') center/cover no-repeat;
}


 .hero-zanzibar-features {
            background: linear-gradient(rgba(59, 49, 43, 0.65), rgba(59, 49, 43, 0.75)),
                        url('../images/Zanzibar_Island_Stone_Town_01.jpg');
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
            color: white;
            padding: 120px 0 80px;

        }
 .hero-kilimanjaro-features {
            background: linear-gradient(rgba(59, 49, 43, 0.65), rgba(59, 49, 43, 0.75)),
                        url('../images/mt-kilimanjaro.jpg');
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
            color: white;
            padding: 120px 0 80px;

        }

.hero-content{
    position:relative;
    z-index:2;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.award-section{
    color:white;
    max-width:800px;
}

.award-title{
    font-size:74px;
    font-weight:800;
    line-height:1.1;
}

.award-subtitle{
    font-size:24px;
    color:#eee;
}

.features-bar{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,0.45);
    padding:24px 0;
}

.feature-item{
    color:white;
    font-size:14px;
    font-weight:600;
}

.feature-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
}


    /* ================= TRIP CARD ================= */
    .trip-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        margin-bottom: 30px;
    }

    .trip-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .trip-image {
        position: relative;
        height: 360px;
        overflow: hidden;
    }

    .trip-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .trip-card:hover .trip-image img {
        transform: scale(1.08);
    }

    .heart-btn {
        position: absolute;
        top: 20px; left: 20px;
        width: 48px; height: 48px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #999;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 10;
    }

    .popular-badge {
        position: absolute;
        top: 20px; right: 20px;
        background: #fff;
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 12;
    }

    .price-tag {
        position: absolute;
        top: 78px; right: 20px;
        background: var(--primary);
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(216, 106, 66, 0.35);
        z-index: 11;
        min-width: 115px;
    }

    .trip-content { padding: 32px; }
    .trip-title { font-size: 1.85rem; line-height: 1.2; margin-bottom: 16px; color: var(--dark); }

    .trip-btn {
        background: var(--dark);
        color: white;
        border: none;
        padding: 16px 32px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.95rem;
        border-radius: 6px;
        width: 100%;
        transition: all 0.3s;
        text-decoration:none;
        display:inline-block;
    }

    .trip-btn:hover {
        background: #5c2f2f;
        transform: translateY(-2px);
        color: white;
    }

    .trip-btn.green { background: #4f6f31; }
    .trip-btn.green:hover { background: #3f5a25; }

    @media(max-width: 576px) {
        .trip-image { height: 300px; }
        .price-tag { top: 65px; padding: 10px 16px; }
    }

    /* Pagination Styles */
    .pagination {
        margin-top: 40px;
        text-align: center;
    }


}




/* ================= MOBILE FIX ================= */
@media(max-width:576px){

    .hero{
        min-height:55vh !important;
    }

    .hero-content{
        min-height:55vh !important;
        padding:40px 15px;
    }

    .award-title{
        font-size:32px;
    }

    .award-subtitle{
        font-size:15px;
    }

    .features-bar{
        position:relative;
    }

    /* 🔥 NAV FIX MOBILE */
    .navbar-collapse{
        text-align:center;
        padding:20px 10px;
    }

    .nav-btn{
        display:block;
        margin:15px auto 0 auto;
        width:80%;
        padding:12px 0;
    }
}

/* ================= DESTINATION SECTION STYLE ================= */

.destination-section{
    padding:120px 0;
    background:#fff;
}

.dest-title{
    font-size:52px;
    font-weight:800;
    color:#111;
}

.dest-subtitle{
    font-size:13px;
    letter-spacing:4px;
    color:var(--primary);
    font-weight:700;
}

.dest-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:360px;
    cursor:pointer;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    transition:0.4s;
}

.dest-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.dest-card:hover img{
    transform:scale(1.1);
}

.dest-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

.price{
    position:absolute;
    top:18px;
    right:18px;
    background:var(--primary);
    color:white;
    padding:6px 14px;
    font-size:11px;
    font-weight:700;
    border-radius:50px;
}

.dest-content{
    position:absolute;
    bottom:25px;
    left:25px;
    right:25px;
    color:white;
}

.dest-content h3{
    font-size:22px;
    font-weight:800;
    margin-bottom:6px;
}

.dest-content p{
    font-size:14px;
    color:#ddd;
    line-height:1.6;
}

/* MOBILE */
@media(max-width:576px){

    .dest-title{
        font-size:32px;
    }

    .destination-section{
        padding:70px 0;
    }

    .dest-card{
        height:300px;
    }
}

/* Article Section */
        .article-section {
            padding: 50px 0;
            background: #f8f9fc;
            text-align: left;
        }
        .article-wrapper {
            max-width: 100%;
            margin: auto;
            background: #fff;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }
        .article-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            color: #182a63;
        }
        .article-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            height: 700px;
            object-fit: cover;
        }
  .hero-safaris-features {
            background: linear-gradient(rgba(59, 49, 43, 0.65), rgba(59, 49, 43, 0.75)),
                        url('../images/pexels-dirk-pothen-2149332904-31207738.jpg') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
        }

        .filter-title {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #e6e0d6;
            padding-bottom: 12px;
        }

        .form-check-input {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            border: 2px solid #c9c1b8;
        }

        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .trip-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
        }

        .trip-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .trip-image {
            position: relative;
            height: 360px;
        }

        .trip-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .trip-card:hover .trip-image img {
            transform: scale(1.08);
        }

        .heart-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 10;
            transition: all 0.3s;
        }

        .heart-btn:hover {
            color: #e74c3c;
            transform: scale(1.1);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .price-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(216, 106, 66, 0.3);
            z-index: 10;
        }

        .trip-content {
            padding: 32px;
        }

        .trip-title {
            font-size: 1.85rem;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .route-text {
            color: #6b5e54;
            line-height: 1.8;
            font-size: 1.02rem;
        }

        .trip-btn {
            background: var(--dark);
            color: white;
            border: none;
            padding: 16px 32px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.95rem;
            border-radius: 6px;
            width: 100%;
            transition: all 0.3s;
        }

        .trip-btn:hover {
            background: #5c2f2f;
            transform: translateY(-2px);
        }

        .trip-btn.green {
            background: #4f6f31;
        }

        .trip-btn.green:hover {
            background: #3f5a25;
        }

        .results-header {
            background: white;
            padding: 18px 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        @media(max-width: 991px) {
            .trip-image { height: 300px; }
            .hero { padding: 90px 0 60px; }
        }

         .itinerary-section {
            padding: 60px 0;           /* Reduced padding */
        }
        .itinerary-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 35px;       /* Reduced gap between cards */
        }
        .day-badge {
            background: var(--primary);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            padding: 6px 24px;
            display: inline-block;
            letter-spacing: 1.5px;
        }
        .day-title {
            font-size: 2.4rem;         /* Reduced */
            font-weight: 700;
            color: var(--dark);
            margin: 15px 0 12px;
        }
        .main-title {
            font-size: 1.65rem;        /* Reduced significantly */
            line-height: 1.2;
            color: #2f2a25;
            margin-bottom: 25px;
        }
        .description {
            font-size: 1.05rem;        /* More normal size */
            line-height: 1.75;
            color: #6b645f;
        }
        .accommodation-title {
            font-size: 1.4rem;         /* Reduced */
            color: var(--dark);
            margin: 40px 0 20px;
            font-weight: 600;
        }
        .accommodation-item {
            background: #f9f7f4;
            border-radius: 10px;
            padding: 16px 20px;
            margin-bottom: 14px;
        }
        .level-badge {
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 30px;
            font-weight: 600;
        }
        .silver { background:#c0c0c0; color:#333; }
        .gold { background:#d4af37; color:#333; }
        .platinum { background:#3b312b; color:#fff; }

        /* Right Side */
        .right-images { position: relative; height: 100%; }
        .top-image img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .bottom-slider {
            margin-top: 20px;
            position: relative;
        }
        .bottom-slider .carousel-item img {
            width: 100%;
            height: 310px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .platinum-label {
            position: absolute;
            top: 18px;
            right: 18px;
            background: rgba(59, 49, 43, 0.9);
            color: white;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 6px;
            z-index: 10;
        }
/* ================= ABOUT SECTION ================= */
.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);
    }

}

.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;
}
.about-section{
    padding:140px 0;
    background:#f8f6f2;
    overflow:hidden;
}

/* IMAGE */
.about-image-wrapper{
    position:relative;
}

.about-main-img{
    width:100%;
    border-radius:32px;
    height:680px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,0.14);
    transition:0.5s ease;
}

.about-main-img:hover{
    transform:scale(1.02);
}

/* EXPERIENCE BOX */
.experience-box{
    position:absolute;
    bottom:35px;
    left:35px;
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(14px);
    padding:28px;
    border-radius:24px;
    max-width:250px;
    box-shadow:0 15px 40px rgba(0,0,0,0.10);
}

.experience-box h3{
    font-size:48px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:6px;
    line-height:1;
}

.experience-box span{
    font-size:14px;
    font-weight:600;
    color:#444;
    line-height:1.7;
}

/* CONTENT */
.about-mini-title{
    color:var(--primary);
    letter-spacing:4px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.about-title{
    font-size:62px;
    font-weight:800;
    line-height:1.15;
    color:#111;
    margin:20px 0 28px;
    font-family:'Playfair Display', serif;
}

.about-text{
    font-size:16px;
    line-height:2;
    color:#666;
    margin-bottom:22px;
}

/* FEATURES */
.about-feature{
    background:#fff;
    padding:24px;
    border-radius:22px;
    transition:0.4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    border:1px solid rgba(0,0,0,0.03);
}

.about-feature:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.about-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.about-feature h5{
    font-size:19px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.about-feature p{
    font-size:14px;
    color:#666;
    margin:0;
    line-height:1.8;
}

/* BUTTON */
.about-btn{
    background:var(--primary);
    border:none;
    color:#fff;
    padding:16px 34px;
    border-radius:12px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-btn:hover{
    background:#c79d67;
    transform:translateY(-3px);
}


.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/elephant-1.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;
}

}





/* MOBILE */
@media(max-width:576px){

    .about-section{
        padding:80px 0;
    }

    .about-title{
        font-size:38px;
    }

    .about-main-img{
        height:460px;
    }

    .experience-box{
        left:15px;
        right:15px;
        bottom:15px;
        max-width:100%;
        padding:20px;
    }

    .experience-box h3{
        font-size:38px;
    }

    .about-text{
        font-size:15px;
        line-height:1.9;
    }

    .about-feature{
        padding:20px;
    }
}



    /* ================= TRIP CARD ================= */
    .trip-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        margin-bottom: 30px;
    }

    .trip-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .trip-image {
        position: relative;
        height: 360px;
        overflow: hidden;
    }

    .trip-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .trip-card:hover .trip-image img {
        transform: scale(1.08);
    }

    .heart-btn {
        position: absolute;
        top: 20px; left: 20px;
        width: 48px; height: 48px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #999;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 10;
    }

    .popular-badge {
        position: absolute;
        top: 20px; right: 20px;
        background: #fff;
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 12;
    }

    .price-tag {
        position: absolute;
        top: 78px; right: 20px;
        background: var(--primary);
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(216, 106, 66, 0.35);
        z-index: 11;
        min-width: 115px;
    }

    .trip-content { padding: 32px; }
    .trip-title { font-size: 1.85rem; line-height: 1.2; margin-bottom: 16px; color: var(--dark); }

    .trip-btn {
        background: var(--dark);
        color: white;
        border: none;
        padding: 16px 32px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.95rem;
        border-radius: 6px;
        width: 100%;
        transition: all 0.3s;
        text-decoration:none;
        display:inline-block;
    }

    .trip-btn:hover {
        background: #5c2f2f;
        transform: translateY(-2px);
        color: white;
    }

    .trip-btn.green { background: #4f6f31; }
    .trip-btn.green:hover { background: #3f5a25; }

    @media(max-width: 576px) {
        .trip-image { height: 300px; }
        .price-tag { top: 65px; padding: 10px 16px; }
    }

    /* Pagination Styles */
    .pagination {
        margin-top: 40px;
        text-align: center;
    }


}
/* ================= REVIEW SECTION ================= */

.review-section{
    background:#f5f5f5;
    padding:120px 0;
    overflow:hidden;
}

.main-title{
    text-align:center;
    color:#111;
    font-size:58px;
    font-weight:800;
    font-family:'Playfair Display', serif;
}

.sub-title{
    text-align:center;
    color:var(--primary);
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
    margin-top:12px;
    margin-bottom:70px;
}

/* CARD */

.review-card{
    background:rgba(0,0,0,0.04);
    backdrop-filter:blur(14px);
    border:1px solid rgba(0,0,0,0.06);
    border-radius:26px;
    padding:35px;
    color:#111;
    height:100%;
    transition:0.4s ease;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.10);
}

.review-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}

.review-top img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.review-name{
    font-size:22px;
    font-weight:700;
}

.review-date{
    font-size:13px;
    color:#666;
    margin-top:3px;
}

.stars{
    color:#f6c15c;
    font-size:20px;
    margin-bottom:18px;
    letter-spacing:2px;
}

.review-text{
    font-size:15px;
    line-height:1.9;
    color:#333;
}

.review-footer{
    margin-top:28px;
    font-size:14px;
    color:#666;
}

/* ARROWS */

.custom-review-arrow{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.custom-review-arrow span{
    font-size:22px;
    color:#111;
}

.carousel-control-prev{
    left:-25px;
}

.carousel-control-next{
    right:-25px;
}

/* MOBILE */

@media(max-width:576px){

.review-section{
    padding:80px 0;
}

.main-title{
    font-size:38px;
}

.sub-title{
    font-size:12px;
    margin-bottom:40px;
}

.review-card{
    padding:26px;
}

.review-name{
    font-size:20px;
}

.review-text{
    font-size:14px;
}

.custom-review-arrow{
    width:42px;
    height:42px;
}

.carousel-control-prev{
    left:0;
}

.carousel-control-next{
    right:0;
}

}
/* 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;
}


/* ================= RELATED SAFARIS PRO ================= */

.related-section{
    background:#fff;
    padding:120px 0;
    overflow:hidden;
}

/* SECTION TITLE */
.related-title{
    font-size:58px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
}

.related-subtitle{
    font-size:14px;
    letter-spacing:3px;
    color:var(--primary);
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:60px;
}

/* CARD */
.safari-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
    height:100%;
    margin:10px;
}

.safari-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.14);
}

/* IMAGE */
.safari-img{
    position:relative;
    overflow:hidden;
}

.safari-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.7s ease;
}

.safari-card:hover .safari-img img{
    transform:scale(1.08);
}

/* BADGE */
.safari-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:rgba(0,0,0,0.75);
    color:#fff;
    padding:7px 16px;
    font-size:11px;
    border-radius:30px;
    letter-spacing:1px;
    font-weight:600;
    backdrop-filter:blur(6px);
}

/* BODY */
.safari-body{
    padding:28px;
}

.safari-body h4{
    font-size:24px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:16px;
    line-height:1.4;
}

.safari-body p{
    font-size:15px;
    line-height:1.9;
    color:#666;
    margin-bottom:28px;
}

/* BUTTON */
.safari-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 26px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    transition:0.4s ease;
}

.safari-btn:hover{
    background:#6f6d30;
    transform:translateY(-2px);
    color:#fff;
}

/* CAROUSEL SPACING */
.carousel-inner{
    padding:15px 0 25px;
}

.carousel-item{
    padding:10px;
}

/* ARROWS */
.custom-arrow{
    width:52px;
    height:52px;
    background:#fff;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    opacity:1;
    transition:0.3s ease;
}

.custom-arrow:hover{
    background:var(--primary);
}

.custom-arrow:hover span{
    color:#fff;
}

.custom-arrow span{
    font-size:22px;
    color:var(--dark);
    transition:0.3s ease;
}

/* LEFT */
.carousel-control-prev{
    left:-25px;
}

/* RIGHT */
.carousel-control-next{
    right:-25px;
}

/* MOBILE */
@media(max-width:576px){

.related-section{
    padding:80px 0;
}

.related-title{
    font-size:38px;
}

.related-subtitle{
    margin-bottom:40px;
}

.safari-card{
    margin:0;
    border-radius:22px;
}

.safari-img img{
    height:220px;
}

.safari-body{
    padding:22px;
}

.safari-body h4{
    font-size:21px;
}

.safari-body p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:22px;
}

.safari-btn{
    width:100%;
    padding:14px;
}

.custom-arrow{
    width:40px;
    height:40px;
}

.carousel-control-prev{
    left:0;
}

.carousel-control-next{
    right:0;
}

}

/* ================= 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;
    }




