/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= TOP BAR ================= */
.top-bar {
  width: 100%;
  background: sandybrown;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  font-size: 0.9rem;
}

/* LEFT */
.top-bar .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* RIGHT ICONS */
.top-bar .right {
  display: flex;
  gap: 12px;
}

.top-bar .right i {
  cursor: pointer;
  transition: 0.3s;
}

.top-bar .right i:hover {
  color: #4f8cff;
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 9999; /* 🔥 VERY IMPORTANT */
}

/* REMOVE ALL UNDERLINES */
.navbar a,
.nav a {
  text-decoration: none;
  color: white;
}

/* NAV */
.nav {
  background: sandybrown;
  padding: 15px;
  position: relative;
  z-index: 9999; /* 🔥 FIXED (was 0 ❌) */
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  color: saddlebrown;
  font-weight: 500;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: sandybrown;
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  border-radius: 5px;
  z-index: 10000; /* 🔥 ABOVE EVERYTHING */
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li:hover {
  background: saddlebrown;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* ================= NAV LINKS ================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li {
  color: white;
  cursor: pointer;
  font-size: 0.95rem;
  position: relative;
}

/* HOVER LINE */
.nav-links li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #4f8cff;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links li:hover::after {
  width: 100%;
}

.nav-links li:hover {
  color: #4f8cff;
}

/* BUTTON */
.btn-primary {
  background: #4f8cff;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #356de0;
}

/* ================= HERO FIX ================= */
.hero {
  position: relative;
  z-index: 1; /* 🔥 KEEP BELOW NAV */
}

/* ================= RESPONSIVE ================= */

/* LARGE TABLET */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 30px;
  }

  .nav-links {
    gap: 20px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .btn-primary {
    width: 200px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo {
    flex-direction: column;
    text-align: center;
    font-size: 1rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links li {
    font-size: 0.85rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 180px;
  }
}

/* BUTTON */
.btn-primary {
  background: #4f8cff;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #356de0;
}

/* ================= RESPONSIVE ================= */

/* LARGE TABLET */
@media (max-width: 992px) {
  .top-bar {
    padding: 8px 30px;
  }

  .navbar {
    padding: 15px 30px;
  }

  .nav-links {
    gap: 20px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .btn-primary {
    width: 200px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .top-bar {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo {
    flex-direction: column;
    text-align: center;
    font-size: 1rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links li {
    font-size: 0.85rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 180px;
  }
}

/* Optional: Mobile Menu (Hamburger) */
@media (max-width: 992px) {
  .navbar {
    justify-content: space-between;
  }
}

/* You can add a hamburger menu later if you want. For now this is clean. */

.btn-primary {
  background: sandybrown;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
   text-decoration: none;
}
.hero1 {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background Image 1 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://s3.amazonaws.com/cdn.micato.com/wp-content/uploads/2018/09/07230312/serengeti-national-park-1.jpg");
  background-size: cover;
  background-position: center;
  z-index: -3;
  animation: fade1 24s infinite ease-in-out;
}

/* Background Image 2 */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://africanscenicsafaris.com/assests/images/serengeti-national-park-1.webp");
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: fade2 24s infinite ease-in-out;
}

/* Background Image 3 - added as a div */
.hero .bg3 {
  position: absolute;
  inset: 0;
  background-image: url("https://www.tanzaniatourism.com/images/uploads/Serengeti_Migration_P103.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: fade3 24s infinite ease-in-out;
}
.hero .bg3 {
  position: absolute;
  inset: 0;
  background-image: url("https://www.tanzaniatourism.com/images/uploads/Serengeti_Migration_P103.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: fade3 24s infinite ease-in-out;
}

.hero .bg3 {
  position: absolute;
  inset: 0;
  background-image: url("https://www.tanzaniatourism.com/images/uploads/Serengeti_Migration_P103.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: fade3 24s infinite ease-in-out;
}

.hero .bg3 {
  position: absolute;
  inset: 0;
  background-image: url("https://www.tanzaniatourism.com/images/uploads/Serengeti_Migration_P103.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: fade3 24s infinite ease-in-out;
}


/* Overlay for darkening (you already have .overlay) */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);   /* adjust darkness as needed */
  z-index: -1;
}

/* Animation for smooth crossfade */
@keyframes fade1 {
  0%    { opacity: 1; }
  33%   { opacity: 0; }
  66%   { opacity: 0; }
  100%  { opacity: 1; }
}

@keyframes fade2 {
  0%    { opacity: 0; }
  33%   { opacity: 1; }
  66%   { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes fade3 {
  0%    { opacity: 0; }
  33%   { opacity: 0; }
  66%   { opacity: 1; }
  100%  { opacity: 0; }
}
@keyframes fade3 {
  0%    { opacity: 0; }
  33%   { opacity: 0; }
  66%   { opacity: 1; }
  100%  { opacity: 0; }
}

@keyframes fade3 {
  0%    { opacity: 0; }
  33%   { opacity: 0; }
  66%   { opacity: 1; }
  100%  { opacity: 0; }
}
@keyframes fade3 {
  0%    { opacity: 0; }
  33%   { opacity: 0; }
  66%   { opacity: 1; }
  100%  { opacity: 0; }
}


/* Optional: subtle zoom (Ken Burns style) */
.hero::before,
.hero::after,
.hero .bg3 {
  transition: transform 24s ease-in-out;
}

.hero::before { animation: fade1 24s infinite; }
.hero::after  { animation: fade2 24s infinite; }
.hero .bg3    { animation: fade3 24s infinite; }

/* Content styling */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button styles - customize as you like */
.btn-primary, .btn-outline {
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #e67e22;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #d35400;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #222;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
  font-weight: bold;
}

.hero p {
  margin: 20px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    width: 90%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .nav-links {
    display: none; /* You can later add hamburger menu */
  }

  .logo {
    font-size: 18px;
  }

  img {
    width: 40px;
    height: 40px;
  }

  .buttons {
    flex-direction: column;
  }

  .booking-btn {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .btn-primary,
  .btn-outline {
    padding: 8px 15px;
  }
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.booking-section {
  background: sandybrown; /* blue background */
  padding: 40px 20px;
}

.booking-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
}

/* Labels */
.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.form-group label {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Inputs */
.form-group input {
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* Button */
.button-group {
  flex: 0.8;
}

.button-group button {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.button-group button:hover {
  background: white;
  color: #4f74b8;
}

/* ====================== DESTINATIONS SECTION ====================== */
/* ================= DESTINATIONS SECTION ================= */
.destinations {
  padding: 80px 20px;
  text-align: center;
  background: #f7f7f7;

}

.sub-title {
  color: #4e7cff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.destinations h2 {
  font-size: 36px;
  margin: 10px 0 15px;
  color: #222;
}

.desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  line-height: 1.6;
}

.destinations .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ================= HORIZONTAL SCROLL GRID ================= */
.destination-grid {
  display: flex;                 /* 🔥 IMPORTANT */
  gap: 25px;
            /* enables scroll */
  scroll-behavior: smooth;
  padding: 10px 5px 20px;


  overflow-x: hidden;  /* hide native scroll for loop */
 
}

/* Optional: hide scrollbar */
.destination-grid::-webkit-scrollbar {
  height: 6px;
}
.destination-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* ================= CARD ================= */
.card {
  position: relative;
  min-width: 300px;              /* 🔥 controls width */
  max-width: 300px;
  flex: 0 0 auto;                /* 🔥 prevents shrinking */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
   min-width: 300px;
 
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ================= IMAGE ================= */
.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* ================= CLICKABLE OVERLAY ================= */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  text-decoration: none;
}

/* ================= CARD CONTENT ================= */
.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.country {
  font-size: 16px;
  color: #e67e22;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* ================= STARS ================= */
.stars {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #e67e22;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .destinations {
    padding: 60px 15px;
  }

  .destinations h2 {
    font-size: 28px;
  }

  .card {
    min-width: 260px;
    max-width: 260px;
  }

  .card img {
    height: 280px;
  }

  .card-content {
    padding: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .destination-grid {
    gap: 15px;
  }
}
/* Extra safety for very small screens */
@media (max-width: 480px) {
  .destination-grid {
    gap: 20px;
  }
}

/* Wrapper */
.slider-wrapper {
  position: relative;
}

/* Buttons container */
.scroll-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons style */
.scroll-buttons button {
  background: #e67e22;
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.scroll-buttons button:hover {
  background: #cf711f;
  transform: scale(1.1);
}


/* PACKAGES SECTION */
.packages {
  padding: 60px 20px;
  background: #f8f9fa;
}

.packages-header {
  text-align: center;
  margin-bottom: 40px;
}

.more-btn {
  background: sandybrown;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  margin-top: 35px;
  cursor: pointer;
}

.packages-header h2 {
  font-size: 2.5rem;
  margin: 10px 0;
}

.packages-header .subtitle {
  color: #4a6fb5;
  font-weight: bold;
}

.packages-header .desc {
  max-width: 600px;
  margin: auto;
  color: #666;
}

/* CARD LAYOUT */
.package-card {
  display: flex;
  align-items: center;
  background: #fff;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* IMAGE */
.package-img img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.package-content {
  padding: 20px;
  flex: 1;
}

.package-content h3 {
  margin-bottom: 10px;
}

.package-info span {
  margin-right: 15px;
  font-size: 14px;
  color: #666;
}

/* PRICE BOX */
.package-price {
  background: sandybrown;
  color: #fff;
  padding: 30px;
  text-align: center;
  min-width: 200px;
}

.package-price h2 {
  font-size: 2rem;
  margin: 10px 0;
}

.package-price button {
  margin-top: 10px;
  padding: 10px 20px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}

.package-price button:hover {
  background: #fff;
  color: #4a6fb5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .package-card {
    flex-direction: column;
  }

  .package-img img {
    width: 100%;
  }

  .package-price {
    width: 100%;
  }
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
    }

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; }

    .hero2 {
  width: 100%;
  height: 70vh; /* FULL SCREEN HEIGHT */
  
  background: url("https://www.easytravel.co.tz/wp-content/uploads/2023/07/Groups-of-wildebeest-thundering-across-the-plains-of-Serengeti-National-Park-Easy-Travel-Tanzania-scaled-1.jpg") no-repeat center center/cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Dark overlay for better visibility */
.hero2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}



   

    .play-button {
      width: 82px;
      height: 82px;
      background: sandybrown;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 2;
    }

    .play-button:hover {
      transform: scale(1.1);
      background: saddlebrown;
    }

    .play-button::after {
      content: '';
      width: 0; height: 0;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-left: 23px solid white;
      margin-left: 6px;
    }

    .hero-content {
      max-width: 860px;
      padding: 0 20px;
      z-index: 2;
    }

    .hero h1 {
      font-size: 4.4rem;
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 20px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    }

    .hero p {
      font-size: 1.25rem;
      max-width: 680px;
      margin: 0 auto 45px;
      line-height: 1.6;
    }

    .buttons {
      display: flex;
      gap: 22px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 36px;
      font-size: 1.12rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
    }

    .btn-blue {
      background: sandybrown;
      color: white;
      border: none;
    }

    .btn-blue:hover {
      background: saddlebrown;
      transform: translateY(-4px);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-outline:hover {
      background: white;
      color: saddlebrown;
    }

    .stats {
      background: white;
      color: #1e3a8a;
      padding: 32px 0;
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
      position: relative;
      z-index: 3;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: #0f172a;
    }

    .stat-label {
      font-size: 1.05rem;
      font-weight: 500;
      color: #64748b;
      margin-top: 8px;
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2.9rem; }
      .hero p { font-size: 1.1rem; }
      .stats { gap: 40px; padding: 25px 0; }
      .stat-number { font-size: 2.4rem; }
    }

    .special-packages {
      padding: 80px 20px;
      background: #f8f9fa;
    }

    .sp-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .sp-offer-label {
      color: #6b7280;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .sp-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #1f2937;
      margin: 12px 0 16px 0;
    }

    .sp-subtitle {
      max-width: 680px;
      margin: 0 auto;
      color: #6b7280;
      line-height: 1.6;
    }

    .sp-packages-wrapper {
      display: flex;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    /* Card Styles */
    .sp-package-card {
      width: 100%;
      max-width: 480px;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      position: relative;
      transition: transform 0.3s ease;
    }

    .sp-package-card:hover {
      transform: translateY(-8px);
    }

    .sp-package-image {
      height: 320px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .sp-discount-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: sandybrown;
      color: white;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 7px 20px;
      border-radius: 50px;
    }

    .sp-package-body {
      padding: 28px 30px 32px;
      background: white;
      position: relative;
      margin-top: -50px;
      border-radius: 20px 20px 0 0;
    }

    .sp-trip-meta {
      display: flex;
      gap: 16px;
      color: #6b7280;
      font-size: 0.9rem;
      margin-bottom: 16px;
    }

    .sp-trip-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .sp-trip-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 12px;
    }

    .sp-trip-desc {
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .sp-price {
      font-size: 1.35rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 24px;
    }

    .sp-price .sp-old-price {
      color: #9ca3af;
      text-decoration: line-through;
      font-weight: 500;
      margin-right: 8px;
    }

    .sp-book-btn {
      display: block;
      width: 40%;
      background: sandybrown;
      color: white;
      text-align: center;
      padding: 14px 0;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
    }

    .sp-book-btn:hover {
      background: saddlebrown;
      transform: translateY(-2px);
    }
    /* View All Packages Button */
.sp-view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.sp-view-all-btn {
  display: inline-block;
  background: sandybrown;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.sp-view-all-btn:hover {
  background: saddlebrown;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

    /* Responsive */
    @media (max-width: 768px) {
      .sp-packages-wrapper {
        gap: 40px;
      }
      .sp-title {
        font-size: 2.3rem;
      }
    }


    /* ====================== PHOTO'S FROM TRAVELLERS SECTION ====================== */
.pt-travellers-section {
  padding: 80px 20px;
  background: #ffffff;
}

.pt-header {
  text-align: center;
  margin-bottom: 50px;
}

.pt-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.pt-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #6b7280;
  line-height: 1.6;
  font-size: 1.05rem;
}

.pt-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pt-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.pt-photo-card:hover {
  transform: scale(1.04);
}

.pt-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox Styles */
.pt-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.pt-lightbox.show {
  display: flex;
}

.pt-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.pt-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}

.pt-close:hover {
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .pt-title {
    font-size: 2.3rem;
  }
}


/* ====================== DISCOUNT OFFER SECTION ====================== */
.do-discount-section {
  position: relative;
  height: 580px;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
              url('https://kibopalacehotel.com/wp-content/uploads/2022/06/OGS4329-scaled.jpeg') center/cover no-repeat;
  background-attachment: fixed;   /* This makes background not move while scrolling */
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.do-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.do-left {
  flex: 1;
  min-width: 300px;
}

.do-offer-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.do-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 15px 0 20px;
}

.do-desc {
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 30px;
}

.do-signup-btn {
  display: inline-block;
  background: sandybrown;
  color: white;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.do-signup-btn:hover {
  background: saddlebrown;
  transform: translateY(-3px);
}

.do-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 40px;
  flex: 1;
  min-width: 320px;
  justify-items: center;
}

.do-logo-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* Makes logos white */
  opacity: 0.95;
  transition: all 0.3s;
}

.do-logo-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
  .do-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .do-title {
    font-size: 2.6rem;
  }
  .do-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .do-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


* ====================== RECENT BLOG SECTION ====================== */
.rb-blog-section {
  padding: 80px 20px;
  background: #ffffff;
}

.rb-header {
  text-align: center;
  margin-bottom: 50px;
}

.rb-label {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rb-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin: 12px 0 16px;
}

.rb-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: #6b7280;
  line-height: 1.6;
}

.rb-posts-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.rb-post-card {
  width: 100%;
  max-width: 520px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.rb-post-card:hover {
  transform: translateY(-8px);
}

.rb-image {
  height: 280px;
  overflow: hidden;
}

.rb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rb-post-card:hover .rb-image img {
  transform: scale(1.08);
}

.rb-content {
  padding: 28px 30px 30px;
}

.rb-category {
  display: inline-block;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.rb-post-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 14px;
}

.rb-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.rb-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rb-read-more {
  color: sandybrown;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.rb-read-more:hover {
  color: saddlebrown;
}

.rb-comments {
  color: #94a3b8;
  font-size: 0.95rem;
}

.rb-view-all {
  text-align: center;
  margin-top: 50px;
}

.rb-view-all-btn {
  display: inline-block;
  background: sandybrown;
  color: white;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.rb-view-all-btn:hover {
  background: saddlebrown;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .rb-title {
    font-size: 2.3rem;
  }
  .rb-posts-wrapper {
    gap: 25px;
  }
}


/* ====================== TESTIMONIAL SECTION ====================== */
.tt-testimonial-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.tt-header {
  text-align: center;
  margin-bottom: 60px;
}

.tt-label {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tt-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin: 12px 0 16px;
}

.tt-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: #6b7280;
  line-height: 1.6;
}

.tt-testimonials-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.tt-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.tt-card:hover {
  transform: translateY(-8px);
}

.tt-stars {
  color: #facc15;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.tt-review {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tt-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.tt-author strong {
  display: block;
  color: #1f2937;
  font-size: 1.05rem;
}

.tt-author span {
  color: #64748b;
  font-size: 0.85rem;
}

.tt-quote {
  position: absolute;
  bottom: 25px;
  right: 28px;
  font-size: 4rem;
  color: #e2e8f0;
  line-height: 1;
  opacity: 0.7;
}

/* Dots */
.tt-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.tt-dot {
  width: 10px;
  height: 10px;
  background: sandybrown;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.tt-dot.active {
  background: #2563eb;
  width: 28px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .tt-testimonials-wrapper {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .tt-title {
    font-size: 2.3rem;
  }
}

/* ====================== CALL TO ACTION SECTION ====================== */
.cta-section {
  background: sandybrown;           /* Nice vibrant blue */
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-left {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.cta-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-desc {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.95;
}

.cta-right {
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 42px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background: white;
  color: #2563eb;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    text-align: center;
    justify-content: center;
  }
  
  .cta-left {
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.3rem;
  }
  
  .cta-button {
    padding: 16px 36px;
  }
}

/* ================= FOOTER ================= */
.ft-footer {
  background: #2c3e50;
  color: #cfd8dc;
  padding: 70px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* CONTAINER */
.ft-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.ft-logo-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.ft-logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}

/* DESCRIPTION */
.ft-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* TITLES */
.ft-column-title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
}

.ft-column-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #4f8cff;
  display: block;
  margin-top: 6px;
}

/* RECENT POSTS */
.ft-recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.ft-recent-post img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.ft-post-title {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
}

.ft-post-title:hover {
  color: #4f8cff;
}

.ft-date {
  font-size: 0.8rem;
  color: #90a4ae;
}

/* CONTACT */
.ft-contact-text {
  margin-bottom: 10px;
}

.ft-contact-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* GALLERY */
.ft-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ft-gallery img {
  width: 100%;
  height: 65px;
  border-radius: 10px;
  object-fit: cover;
}

/* NEWSLETTER */
.ft-newsletter {
  max-width: 1200px;
  margin: 40px auto;
  border-top: 1px solid #3d566e;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ft-newsletter-text {
  font-size: 0.95rem;
}

/* FORM */
.ft-subscribe-form {
  display: flex;
  gap: 10px;
}

.ft-email-input {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  width: 260px;
}

.ft-subscribe-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.ft-subscribe-btn:hover {
  background: white;
  color: #2c3e50;
}

/* BOTTOM BAR */
.ft-bottom {
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
  border-top: 1px solid #3d566e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* SOCIAL ICONS */
.ft-social {
  display: flex;
  gap: 10px;
}

.ft-social-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #90a4ae;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd8dc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.ft-social-icon:hover {
  background: #4f8cff;
  border-color: #4f8cff;
  color: white;
}

/* LINKS */
.ft-links {
  font-size: 0.9rem;
}

.ft-links a {
  color: #cfd8dc;
  text-decoration: none;
  margin: 0 5px;
}

.ft-links a:hover {
  color: white;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .ft-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-newsletter {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .ft-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ft-logo {
    justify-content: center;
  }

  .ft-subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .ft-email-input {
    width: 100%;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}