/* ===============================
   GREEN GLOBAL SAFARIS - GREEN DOMINANT
================================== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap");

:root {
  --green: #1f7a4d;
  --dark-green: #145c38;
  --black: #1b1b1b;
  --white: #ffffff;
  --light-grey: #f8f9fa;
  --grey: #6c757d;
  --shadow: 0 10px 30px rgba(31, 122, 77, 0.12);
  --shadow-lg: 0 20px 50px rgba(31, 122, 77, 0.22);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--grey);
  background: var(--white);
  line-height: 1.75;
}

/* Headings - Strong Green */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', sans-serif;
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
}

/* ====================== HEADER & NAVIGATION ====================== */
.header_area {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.header_area.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 30px rgba(31, 122, 77, 0.18);
}

.navbar {
  padding: 12px 0;
}

.navbar-brand img {
  max-height: 95px;           /* Bigger & more visible logo */
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: var(--black) !important;
  font-weight: 600;
  margin: 0 14px;
  position: relative;
  padding: 10px 0;
  font-size: 1.03rem;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--green);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
}

/* Green Dominant Button */
.button {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.06rem;
  box-shadow: 0 8px 25px rgba(31, 122, 77, 0.35);
  transition: all 0.4s ease;
  border: none;
}

.button:hover {
  background: var(--dark-green);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(31, 122, 77, 0.45);
  color: white;
}

/* ====================== HERO BANNER ====================== */
.hero-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(31, 122, 77, 0.78), rgba(20, 92, 56, 0.75)),
              url('../img/mili.jpg') center/cover no-repeat fixed;
  color: white;
  text-align: left;
  padding: 0 15px;
}

.hero-banner h1 {
  font-size: 3.9rem;
  line-height: 1.1;
  margin-bottom: 1.3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: white;
}

.hero-banner .lead {
  font-size: 1.28rem;
  max-width: 620px;
  margin-bottom: 2.2rem;
  opacity: 0.95;
}

/* ====================== SECTIONS ====================== */
.section-padding {
  padding: 110px 0;
}

.section-intro h2 {
  font-size: 2.85rem;
  color: var(--green);
  margin-bottom: 18px;
}

/* Cards - Green Accents */
.service-card, .tour-card, .card-blog {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.5s ease;
  border-top: 4px solid var(--green);
}

.service-card:hover, .tour-card:hover, .card-blog:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-lg);
}

/* Footer - Dark Green/Black */
.footer-area {
  background: var(--dark-green);
  color: #d1d5db;
  padding-top: 100px;
}

.footer-area h5 {
  color: white;
  margin-bottom: 25px;
}

.footer-area a:hover {
  color: var(--white);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 80px;
  }
  .hero-banner h1 {
    font-size: 2.9rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 70px;
  }
  .hero-banner h1 {
    font-size: 2.3rem;
  }
  .button {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* General Polish */
img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 95px;
}
/* ====================== PROFESSIONAL FOOTER ====================== */

.footer-area {
  background: linear-gradient(
    135deg,
    #0d1f17 0%,
    #123524 50%,
    #1f7a4d 100%
  );
  color: rgba(255,255,255,0.78);
  padding: 90px 0 25px;
  position: relative;
  overflow: hidden;
}

.footer-area::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.footer-area h5 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 28px;
  position: relative;
}

.footer-area h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 55px;
  height: 3px;
  background: #4ade80;
  border-radius: 10px;
}

.footer-text {
  line-height: 1.9;
  font-size: 1rem;
  max-width: 360px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.footer-contact i {
  margin-right: 12px;
  color: #4ade80;
  font-size: 1rem;
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.footer-social a:hover {
  background: #4ade80;
  transform: translateY(-6px);
  color: #0d1f17;
}

.footer-btn {
  display: inline-block;
  background: #4ade80;
  color: #0d1f17;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.footer-btn:hover {
  background: white;
  color: #145c38;
  transform: translateY(-4px);
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-area {
    text-align: center;
  }

  .footer-area h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-text {
    margin: auto;
  }
}

/* ================= TOUR DETAILS PAGE ================= */

/* ================= TOUR DETAILS PAGE ================= */

.tour-details-area{
    padding:100px 0;
    background:#f5f7f6;
}

.tour-hero{
    height:550px;
    background:url('../img/crater.jpg') center center/cover no-repeat;
    border-radius:25px;
    overflow:hidden;
    margin-bottom:60px;
    position:relative;
    box-shadow:0 15px 40px rgba(1, 119, 37, 0.068);
}

.tour-overlay{
    background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.6));
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.tour-hero-content{
    max-width:700px;
    padding:60px;
    color:#fff;
}

.tour-tag{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;
}

.tour-hero-content h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.tour-hero-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

.primary-btn{
    display:inline-block;
    padding:14px 35px;
    background:#2e7d32;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.primary-btn:hover{
    background:#1b5e20;
    color:#fff;
}

.section-title{
    margin-bottom:35px;
}

.section-title h2{
    font-size:38px;
    color:#222;
    font-weight:700;
    position:relative;
    padding-bottom:15px;
}

.section-title h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#2e7d32;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

.tour-content-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.tour-content-box p{
    color:#555;
    line-height:2;
    font-size:16px;
}

.tour-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:35px;
}

.feature-item{
    background:#f8faf8;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

.feature-item i{
    font-size:30px;
    color:#2e7d32;
    margin-bottom:15px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:50px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

.tour-list{
    padding-left:0;
    list-style:none;
}

.tour-list li{
    margin-bottom:18px;
    font-size:17px;
    color:#444;
    line-height:1.8;
}

.itinerary-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background:#fff;
    margin-bottom:50px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.itinerary-box.reverse{
    direction:rtl;
}

.itinerary-box.reverse .itinerary-content{
    direction:ltr;
}

.itinerary-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:500px;
}

.itinerary-content{
    padding:50px;
}

.day-badge{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.itinerary-content h3{
    font-size:36px;
    margin-bottom:20px;
    color:#222;
}

.itinerary-content p{
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.meal-plan{
    background:#f4f8f4;
    padding:18px 25px;
    border-left:5px solid #2e7d32;
    border-radius:10px;
    font-weight:600;
    color:#333;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-box{
    background:#f8faf8;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box i{
    font-size:40px;
    color:#2e7d32;
    margin-bottom:20px;
}

.transport-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
}

.transport-box img{
    width:100%;
    border-radius:20px;
}

.transport-content h3{
    font-size:32px;
    margin-bottom:20px;
}

.transport-content p{
    line-height:2;
}

.price-box{
    background:linear-gradient(135deg,#1b5e20,#2e7d32);
    padding:70px 40px;
    text-align:center;
    border-radius:25px;
    color:#fff;
    margin-top:40px;
}

.price-box h2{
    font-size:45px;
    margin-bottom:15px;
}

.price-box h3{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.available-months{
    margin:25px 0;
    font-size:18px;
    line-height:1.8;
}

@media(max-width:991px){

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

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

    .itinerary-box.reverse{
        direction:ltr;
    }

    .tour-hero{
        height:auto;
    }

    .tour-hero-content{
        padding:40px 30px;
    }
}

@media(max-width:768px){

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

    .section-title h2{
        font-size:30px;
    }

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

    .price-box h3{
        font-size:42px;
    }
}


/* ================= LAKE NATRON SAFARI PAGE ================= */

.lake-natron-area{
    background:#f5f7f8;
    padding:100px 0;
}

.natron-hero{
    height:600px;
    background:url('../img/flamii.jpg') center center/cover no-repeat;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.natron-overlay{
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.6));
    display:flex;
    align-items:center;
}

.natron-content{
    max-width:700px;
    padding:60px;
    color:#fff;
}

.tour-badge{
    display:inline-block;
    background:#c49b63;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}

.natron-content h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.natron-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.main-btn{
    background:#c49b63;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    transition:0.4s;
}

.main-btn:hover{
    background:#b1844c;
    color:#fff;
}

.outline-btn{
    border:2px solid #fff;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    display:inline-block;
    transition:0.4s;
}

.outline-btn:hover{
    background:#fff;
    color:#000;
}

.info-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.section-title{
    margin-bottom:30px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#222;
    position:relative;
    padding-bottom:15px;
}

.section-title h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#c49b63;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

.quick-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.quick-box{
    background:#faf8f4;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.quick-box i{
    font-size:35px;
    color:#c49b63;
    margin-bottom:15px;
}

.quick-box h4{
    margin-bottom:10px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

.itinerary-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.itinerary-card.reverse{
    direction:rtl;
}

.itinerary-card.reverse .itinerary-text{
    direction:ltr;
}

.itinerary-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:500px;
}

.itinerary-text{
    padding:50px;
}

.day-label{
    display:inline-block;
    background:#c49b63;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.itinerary-text h2{
    font-size:38px;
    margin-bottom:25px;
}

.itinerary-text p{
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.meal-box{
    background:#faf8f4;
    padding:18px 25px;
    border-left:5px solid #c49b63;
    border-radius:12px;
    margin-top:25px;
}

.accommodation-box,
.transport-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:center;
}

.accommodation-image img,
.transport-image img{
    width:100%;
    border-radius:25px;
}

.accommodation-content h3,
.transport-text h3{
    font-size:34px;
    margin-bottom:20px;
}

.accommodation-content ul{
    margin-top:20px;
    padding-left:0;
    list-style:none;
}

.accommodation-content ul li{
    margin-bottom:15px;
    color:#444;
}

.include-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-bottom:60px;
}

.include-box,
.exclude-box{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.include-box h2,
.exclude-box h2{
    margin-bottom:25px;
}

.include-box ul,
.exclude-box ul{
    padding-left:0;
    list-style:none;
}

.include-box ul li,
.exclude-box ul li{
    margin-bottom:16px;
    line-height:1.8;
    color:#444;
}

.price-section{
    background:linear-gradient(135deg,#b1844c,#c49b63);
    padding:70px 40px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.price-section h2{
    font-size:45px;
    margin-bottom:15px;
}

.price-section h3{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.months{
    margin:30px 0;
    font-size:18px;
    line-height:1.8;
}

@media(max-width:991px){

    .natron-content h1{
        font-size:42px;
    }

    .itinerary-card,
    .accommodation-box,
    .transport-grid,
    .include-grid{
        grid-template-columns:1fr;
    }

    .itinerary-card.reverse{
        direction:ltr;
    }
}

@media(max-width:768px){

    .natron-content{
        padding:35px;
    }

    .natron-content h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:30px;
    }

    .price-section h3{
        font-size:42px;
    }
}
/* ===================== 3 DAYS SAFARI PAGE ===================== */

.three-days-safari{
    background:#f6f8f7;
    padding:100px 0;
}

/* HERO SECTION */

.safari-hero{
    height:620px;
    background:url('../img/images.jpeg') center center/cover no-repeat;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.hero-overlay{
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.65));
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:700px;
    padding:60px;
    color:#fff;
}

.hero-badge{
    display:inline-block;
    background:#a66b2d;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}

.hero-content h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#a66b2d;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    transition:0.4s;
}

.primary-btn:hover{
    background:#8d5722;
    color:#fff;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    transition:0.4s;
}

.secondary-btn:hover{
    background:#fff;
    color:#000;
}

/* CONTENT BOX */

.content-box{
    background:#fff;
    padding:50px;
    border-radius:25px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.section-title{
    margin-bottom:35px;
}

.section-title h2{
    font-size:40px;
    color:#222;
    font-weight:700;
    position:relative;
    padding-bottom:15px;
}

.section-title h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#a66b2d;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

/* OVERVIEW */

.overview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.overview-item{
    background:#faf7f3;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.overview-item i{
    font-size:35px;
    color:#a66b2d;
    margin-bottom:15px;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* HIGHLIGHTS */

.highlight-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.highlight-item{
    background:#faf7f3;
    padding:20px;
    border-radius:15px;
    font-weight:500;
}

/* ITINERARY */

.itinerary-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.itinerary-box.reverse{
    direction:rtl;
}

.itinerary-box.reverse .itinerary-content{
    direction:ltr;
}

.itinerary-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:500px;
}

.itinerary-content{
    padding:50px;
}

.day-tag{
    display:inline-block;
    background:#a66b2d;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.itinerary-content h2{
    font-size:38px;
    margin-bottom:25px;
}

.itinerary-content p{
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.meal-box{
    background:#faf7f3;
    padding:18px 25px;
    border-left:5px solid #a66b2d;
    border-radius:12px;
}

/* ACCOMMODATION */

.accommodation-grid,
.transport-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:center;
}

.accommodation-image img,
.transport-image img{
    width:100%;
    border-radius:25px;
}

.accommodation-content h3,
.transport-content h3{
    font-size:34px;
    margin-bottom:20px;
}

.accommodation-content ul{
    list-style:none;
    padding-left:0;
    margin-top:20px;
}

.accommodation-content ul li{
    margin-bottom:15px;
}

/* INFO GRID */

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.info-item{
    background:#faf7f3;
    padding:30px;
    border-radius:20px;
}

.info-item h4{
    margin-bottom:15px;
    color:#222;
}

/* PRICE */

.price-box{
    background:linear-gradient(135deg,#8d5722,#a66b2d);
    padding:70px 40px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.price-box h2{
    font-size:45px;
    margin-bottom:15px;
}

.price-box h3{
    font-size:60px;
    margin-bottom:20px;
}

.include-exclude-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin:40px 0;
    text-align:left;
}

.include-box,
.exclude-box{
    background:rgba(255,255,255,0.12);
    padding:35px;
    border-radius:20px;
}

.include-box h4,
.exclude-box h4{
    margin-bottom:20px;
}

.include-box ul,
.exclude-box ul{
    list-style:none;
    padding-left:0;
}

.include-box ul li,
.exclude-box ul li{
    margin-bottom:15px;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

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

    .itinerary-box,
    .accommodation-grid,
    .transport-grid,
    .include-exclude-grid{
        grid-template-columns:1fr;
    }

    .itinerary-box.reverse{
        direction:ltr;
    }
}

@media(max-width:768px){

    .hero-content{
        padding:35px;
    }

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

    .section-title h2{
        font-size:30px;
    }

    .price-box h3{
        font-size:42px;
    }
}
/* ===================== 6 DAYS SAFARI PAGE ===================== */

.luxury-safari-area{
    background:#f5f7f6;
    padding:100px 0;
}

/* HERO */

.luxury-hero{
    height:650px;
    background:url('../img/twiga.jpg') center center/cover no-repeat;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.luxury-overlay{
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.65));
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:750px;
    padding:60px;
    color:#fff;
}

.hero-label{
    display:inline-block;
    background:#9c6a2f;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:600;
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    background:#9c6a2f;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    display:inline-block;
}

.hero-btn:hover{
    background:#7c5222;
    color:#fff;
}

.hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    transition:0.4s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#000;
}

/* INFO CARD */

.info-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.section-title{
    margin-bottom:35px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    font-weight:700;
    position:relative;
    padding-bottom:15px;
}

.section-title h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#9c6a2f;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

/* OVERVIEW */

.overview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.overview-item{
    background:#faf7f2;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.overview-item i{
    font-size:35px;
    color:#9c6a2f;
    margin-bottom:15px;
}

/* HIGHLIGHTS */

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.highlight-item{
    background:#faf7f2;
    padding:20px;
    border-radius:15px;
    font-weight:500;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* ITINERARY */

.itinerary-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.itinerary-card.reverse{
    direction:rtl;
}

.itinerary-card.reverse .itinerary-content{
    direction:ltr;
}

.itinerary-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:500px;
}

.itinerary-content{
    padding:50px;
}

.day-tag{
    display:inline-block;
    background:#9c6a2f;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.itinerary-content h2{
    font-size:38px;
    margin-bottom:25px;
}

.itinerary-content p{
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.meal-box{
    background:#faf7f2;
    padding:18px 25px;
    border-left:5px solid #9c6a2f;
    border-radius:12px;
}

/* DEPARTURE */

.departure-box{
    background:linear-gradient(135deg,#9c6a2f,#c38a46);
    padding:70px 50px;
    border-radius:30px;
    color:#fff;
    margin-bottom:60px;
    text-align:center;
}

.departure-box h2{
    font-size:48px;
    margin-bottom:25px;
}

.departure-box p{
    font-size:18px;
    line-height:1.9;
}

/* ACCOMMODATION */

.accommodation-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.accommodation-item{
    background:#faf7f2;
    border-radius:25px;
    overflow:hidden;
    text-align:center;
}

.accommodation-item img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.accommodation-item h3{
    padding:25px;
}

/* TRANSPORT */

.transport-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:center;
}

.transport-image img{
    width:100%;
    border-radius:25px;
}

.transport-content h3{
    font-size:36px;
    margin-bottom:20px;
}

.transport-content p{
    line-height:2;
    margin-bottom:20px;
}

/* PRICE */

.price-section{
    background:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

.price-section h2{
    font-size:45px;
    margin-bottom:40px;
}

.price-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-bottom:40px;
}

.price-box{
    background:#faf7f2;
    padding:40px;
    border-radius:25px;
    text-align:left;
}

.price-box h3{
    margin-bottom:25px;
    color:#9c6a2f;
}

.price-box ul{
    list-style:none;
    padding-left:0;
}

.price-box ul li{
    margin-bottom:16px;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

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

    .itinerary-card,
    .transport-grid,
    .price-grid{
        grid-template-columns:1fr;
    }

    .itinerary-card.reverse{
        direction:ltr;
    }
}

@media(max-width:768px){

    .hero-content{
        padding:35px;
    }

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

    .section-title h2{
        font-size:30px;
    }

    .departure-box h2{
        font-size:34px;
    }
}

/* PRICE SECTION IMPROVED */

.price-section{
    background:#ffffff;
    padding:70px 60px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    text-align:center;
}

.price-section h2{
    font-size:48px;
    margin-bottom:50px;
    color:#1f1f1f;
    font-weight:700;
}

.price-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-bottom:45px;
}

/* INCLUDED BOX */

.price-box{
    padding:45px 40px;
    border-radius:25px;
    text-align:left;
    position:relative;
    overflow:hidden;
    transition:0.4s;
}

.price-box:hover{
    transform:translateY(-8px);
}

/* INCLUDED STYLE */

.price-box:first-child{
    background:linear-gradient(135deg,#1d7a46,#2ea866);
    color:#fff;
    box-shadow:0 15px 35px rgba(46,168,102,0.25);
}

/* NOT INCLUDED STYLE */

.price-box:last-child{
    background:linear-gradient(135deg,#a12626,#d84b4b);
    color:#fff;
    box-shadow:0 15px 35px rgba(216,75,75,0.25);
}

.price-box h3{
    font-size:32px;
    margin-bottom:30px;
    font-weight:700;
    color:#fff;
    position:relative;
    padding-bottom:15px;
}

.price-box h3::after{
    content:"";
    width:70px;
    height:4px;
    background:rgba(255,255,255,0.5);
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

.price-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.price-box ul li{
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-weight:500;
}

.price-box ul li span{
    font-size:20px;
    margin-top:2px;
}

/* OPTIONAL ICON COLORS */

.price-box:first-child ul li span{
    color:#d4ffe8;
}

.price-box:last-child ul li span{
    color:#ffe0e0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .price-section{
        padding:50px 25px;
    }

    .price-section h2{
        font-size:34px;
    }

    .price-box{
        padding:35px 25px;
    }

    .price-box h3{
        font-size:28px;
    }
}

/* ===================== ZANZIBAR PAGE ===================== */

.zanzibar-tour-area{
    background:#f4f8fb;
    padding:100px 0;
}

/* HERO */

.zanzibar-hero{
    height:650px;
    background:url('../img/zanzi.jpg') center center/cover no-repeat;
    border-radius:35px;
    overflow:hidden;
    margin-bottom:50px;
    box-shadow:0 15px 45px rgba(0,0,0,0.15);
}

.zanzibar-overlay{
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.65));
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:760px;
    padding:60px;
    color:#fff;
}

.hero-badge{
    background:#00a6a6;
    padding:10px 24px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:25px;
    font-weight:600;
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#00a6a6;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    display:inline-block;
}

.primary-btn:hover{
    background:#008484;
    color:#fff;
}

.outline-btn{
    border:2px solid #fff;
    color:#fff;
    padding:13px 35px;
    border-radius:50px;
    transition:0.4s;
}

.outline-btn:hover{
    background:#fff;
    color:#000;
}

/* CONTACT BAR */

.contact-bar{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-bottom:50px;
}

.contact-item{
    background:#fff;
    padding:22px;
    border-radius:18px;
    text-align:center;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-item i{
    color:#00a6a6;
    margin-right:10px;
}

/* CARDS */

.glass-card{
    background:#fff;
    padding:50px;
    border-radius:30px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.section-title{
    margin-bottom:30px;
}

.section-title h2{
    font-size:42px;
    position:relative;
    padding-bottom:15px;
}

.section-title h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#00a6a6;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

/* HIGHLIGHTS */

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.highlight-box{
    background:#f4fbfb;
    padding:22px;
    border-radius:18px;
    font-weight:600;
    border-left:5px solid #00a6a6;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:25px;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.04);
}

/* TOUR DAY */

.tour-day-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.tour-day-card.reverse{
    direction:rtl;
}

.tour-day-card.reverse .tour-content{
    direction:ltr;
}

.tour-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
}

.tour-content{
    padding:50px;
}

.day-number{
    background:#00a6a6;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.tour-content h2{
    font-size:38px;
    margin-bottom:25px;
}

.tour-content p{
    line-height:2;
    margin-bottom:20px;
    color:#555;
}

.meal-info{
    background:#f4fbfb;
    padding:18px 24px;
    border-left:5px solid #00a6a6;
    border-radius:15px;
    font-weight:600;
}

/* ACCOMMODATION */

.accommodation-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.accommodation-image img{
    width:100%;
    border-radius:25px;
}

.accommodation-content h3{
    font-size:36px;
    margin-bottom:25px;
}

.accommodation-content ul{
    list-style:none;
    padding:0;
}

.accommodation-content ul li{
    margin-bottom:16px;
    font-size:17px;
}

/* PRICING */

.pricing-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    margin:60px 0;
}

.pricing-box{
    padding:50px 40px;
    border-radius:30px;
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.included-box{
    background:linear-gradient(135deg,#138d5d,#27b36d);
}

.excluded-box{
    background:linear-gradient(135deg,#b12828,#dd5050);
}

.pricing-box h2{
    font-size:34px;
    margin-bottom:30px;
    padding-bottom:15px;
    border-bottom:2px solid rgba(255,255,255,0.3);
}

.pricing-box ul{
    list-style:none;
    padding:0;
}

.pricing-box ul li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:18px;
    line-height:1.8;
    font-size:17px;
    font-weight:500;
}

.pricing-box ul li span{
    font-size:20px;
}

/* CTA */

.cta-box{
    background:linear-gradient(135deg,#00a6a6,#008484);
    color:#fff;
    padding:70px 50px;
    border-radius:35px;
    text-align:center;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:30px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .tour-day-card,
    .accommodation-box,
    .pricing-wrapper{
        grid-template-columns:1fr;
    }

    .tour-day-card.reverse{
        direction:ltr;
    }

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

@media(max-width:768px){

    .hero-content{
        padding:35px;
    }

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

    .section-title h2{
        font-size:30px;
    }

    .cta-box h2{
        font-size:34px;
    }

    .glass-card{
        padding:35px 25px;
    }

    .tour-content{
        padding:35px 25px;
    }

    .pricing-box{
        padding:35px 25px;
    }
}
/* ====================== SAFARIS DROPDOWN ====================== */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  content: "";
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
}

.dropdown-menu {
  background: white;
  border: none;
  box-shadow: 0 10px 30px rgba(31, 122, 77, 0.2);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 280px;
  z-index: 1000;
}

.dropdown-item {
  padding: 10px 24px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f8fff9;
  color: var(--green);
  padding-left: 30px;
}

/* Active state for current page */
.dropdown-item.active {
  background: #e8f5ed;
  color: var(--green);
  font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .dropdown-menu {
    background: #f8f9fa;
    box-shadow: none;
    padding: 8px 0;
  }
  
  .dropdown-item {
    padding: 12px 20px;
  }
}
/* ====================== CONTACT PAGE ====================== */

.contact-hero {
  min-height: 480px;
  background: linear-gradient(rgba(31, 122, 76, 0), rgba(20, 92, 56, 0.85)),
              url('../img/ba.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.contact-info-card {
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(31, 122, 77, 0.25) !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Form Styling */
.form-control {
  border-radius: 12px;
  padding: 14px 20px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(31, 122, 77, 0.25);
}

.hover-green:hover {
  color: var(--green) !important;
}

/* Make sure section-title works if needed */
.section-title h2:after {
  background: var(--green);
}
