body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
}
/* Top Info Bar */
.top-info {
  background: #44170e; /* green */
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.top-info i {
  margin-right: 6px;
  color: #f49e3f; /* gold accent */
}
.language-switcher button {
  background: transparent;
  border: none;
  color: white;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  cursor: pointer; 
  gap: 6px;
  padding: 4px 8px;
}
.language-switcher img {
  width: 20px;
  margin-right: 5px;
  border-radius: 4px;  
}

/* ===== Header ===== */
.header {
  background: #6d2a1d;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  height: 60px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px; /* space between logo and text */
}
.logo-container2 {
  display: flex;
  align-items: center;
  gap: 15px; /* space between logo and text */
  padding-left: 150px;
}

.logo{
     border-radius: 50px;
}
.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header nav a:hover {
  color: #f49e3f;
}
.branding h1 {
  font-size: 22px;
  color: #fff;
}
.branding p {
  font-size: 14px;
  color: #f4f1e9;
}


/**/
/* ===== Dropdown Styles ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #f49e3f;
}

.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Dropdown menu content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #6d2a1d;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 100;
  top: 28px;
  left: 0;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #fff;
  color: #f49e3f;
}

/* Show dropdown on active */
.dropdown.show .dropdown-content {
  display: block;
}

/* Rotate arrow when open */
.dropdown.show .arrow {
  transform: rotate(180deg);
}
/**/


/*first section*/

.intro-section {
  position: relative;
  text-align: center;
  padding: 0;
  margin: 0;
}

.hero-banner {
  background-image: linear-gradient(rgba(0,0,0,0.5),#242525),url(img/serengeti/img9.jpg);
  position: relative;
  background-size: cover;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/*.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}*/

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero-text h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}


.cta-button {
  background-color: #6d2a1d;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  /*margin-top: 20px;*/
}

.cta-button:hover {
  background-color: #f49e3f;
}

/*second section*/

.travel-guide-section {
  background-color: #f9f7f4;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.guide-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.guide-container h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
  color: #2c2c2c;
}

.guide-container h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: #555;
}

.guide-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.guide-image {
  display: block;
  width: 100%;
  max-width: 600px;
  /*padding-right: 400px;*/
  height: auto;
  /*margin: 30px auto 0;*/
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/*third section*/

.national-parks-section {
  background-color: #fff;
  padding: 80px 20px;
  border-top: 4px solid #e6b800; /* Separation from previous section */
}

.parks-header h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  color: #2c2c2c;
}

.parks-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.park-card {
  background-color: #f9f7f4;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 280px;
  text-align: center;
  padding: 20px;
}

.park-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.park-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.discover-button {
  background-color: #6d2a1d;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.discover-button:hover {
  background-color: #f49e3f;
}
.section-divider {
  border-top: 1px solid white;
  /*border: none;
  margin: 0;*/
}

/*fourth section*/

.full-safari-section {
  position: relative;
  background-image: url('img/parks/full-safari1.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  margin: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.safari-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.safari-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.safari-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}

.callback-button {
  background-color: #6d2a1d;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.callback-button:hover {
  background-color: #f49e3f;
}

/*fif section*/

.visit-time-section {
  background-color: #f4f2ef;
  padding: 60px 0;
}

.visit-time-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.visit-time-image {
  flex: 1 1 50%;
  background-image: url('img/parks/img1.jpg'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.visit-time-text {
  flex: 1 1 50%;
  background-color: #fff;
  padding: 40px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.visit-time-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
  color: #2c2c2c;
}

.visit-time-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.view-packages-button {
  text-align: center;
  margin-top: 30px;
}

.packages-link {
  background-color: #6d2a1d;
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.packages-link:hover {
  background-color: #f49e3f;
}



/*six Section*/
/* Safari Packages Section */
.safari-packages {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.safari-packages h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.safari-packages p {
  font-size: 1em;
  margin-bottom: 40px;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.package-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}
*/
/* General section styling */
.safari-packages {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1100px;
  margin: 40px auto;
  font-family: system-ui, sans-serif;
  color: #fff;
}

.safari-packages h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  color: #f49e3f;
  margin-bottom: 10px;
}

.safari-packages > p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: #ddd;
}

/* Paragraph styling for p1 */
.safari-packages .p1 p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 20px;
  color: #eee;
}

/* Box styling for p2 */
.safari-packages .p2 {
  background: rgba(255, 255, 255, 0.08); /* Slightly different shade */
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.safari-packages .p2 p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fdfdfd;
}

/* Button container */
.button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Buttons style */
.button-row a {
  padding: 12px 24px;
  background: #f4c842;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.button-row a:hover {
  background: #ddb631;
  transform: translateY(-3px);
}

.button-row a:active {
  transform: translateY(0);
}


.package-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.package-card h3 {
  margin-top: 15px;
  font-size: 1.2em;
}

.package-card p {
  font-size: 0.95em;
  margin: 8px 0;
}

.itinerary-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #6d2a1d;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.itinerary-button:hover {
  background-color: #f49e3f;
}

#zanzibar{
  background-color: #f9f7f4;
}
#zanzibar h3{
  color: #2c2c2c;
}
#zanzibar p{
  color: #2c2c2c;
}

/*////*/

.package-carousel-section {
  padding: 60px 20px;
  background-color: #f9f7f4;
  position: relative;
}

.carousel-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
  color: #2c2c2c;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 60px; /* 👈 Adds space for arrows outside content */
}

.package-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.package-card {
  flex: 0 0 auto;
  width: 280px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #6d2a1d;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.left-arrow {
  left: 10px; /* 👈 Outside the package cards */
}

.right-arrow {
  right: 10px; /* 👈 Outside the package cards */
}

.carousel-arrow:hover {
  background-color: #f49e3f;
}
/*
whatsaap
*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgba(37, 211, 102, 0.95); /* WhatsApp green semi-transparent */
  color: white;
  border-radius: 40px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.2s, background 0.3s;
}

.whatsapp-float i {
  font-size: 28px;
  margin-right: 10px;
}

.whatsapp-float span {
  white-space: nowrap; /* maneno yasikatike */
}

.whatsapp-float:hover {
  background-color: rgba(32, 185, 84, 0.95);
  transform: scale(1.05);
}



/*TZ DISCOVERTS*/
/*.arusha-section {
  background-color: #fff; /* Deep brown background 
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 40px;
}

.breadcrumb-bar {
  background-color: #2a1f1f;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: #f0e6d2;
}

.arusha-hero {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  border-bottom: 2px solid #fff;
}

.arusha-image {
  background-image: url('img/parks/clock-tower.jpg'); /* Replace with actual image path 
  background-size: cover;
  background-position: center;
  height: 500px;
  border-bottom: 4px solid #e6b800;
  border-radius: 10px;
}

.arusha-title {
  position: absolute;
  bottom: 20px;
  left: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 6px;
}

.arusha-title h2 {
  font-size: 2rem;
  margin: 0;
  font-family: 'Georgia', serif;
  color: #fff;
}
  */

  /* Hero */
.hero-section {margin: 0; padding: 0;}
.hero-title {background-color: rgba(0,0,0,0.7); padding: 10px 20px;}
.hero-title p, .hero-title h2 {margin: 0; line-height: 1.2;}
.hero-title p {font-size: 17px;}
.hero-title h2 {font-size: 1.7em;}
.img-background img {width: 100%; height: 100vh; object-fit: cover; border-radius: 10px;}

.custom-strike {
    position: relative;
    display: inline-block;
    font-size: 17px;
}
.custom-strike::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 150%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transform: translateY(-50%);
}

/* Section Divider Line */
.section-divider {
  border: none;
  border-top: 1px solid #d4a000;
  margin: 0;
}

/* FAQ Box */
.faq-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 15px 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Header */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background: #f4c842;
  font-weight: bold;
}

.faq-header:hover {
  background: #e5b930;
}

.toggle-icon {
  font-size: 20px;
  font-weight: bold;
}

/* Content (hidden by default) */
.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-content p {
  margin: 15px 0;
  line-height: 1.5;
}

/* Active (when open) */
.faq-box.active .faq-content {
  max-height: 500px; /* enough to show paragraphs */
  padding: 15px 20px;
}

.faq-box.active .toggle-icon {
  content: "-";
}


/****************************/
/* Floating Comment Preview */
.comment-preview {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  color: black;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
  width: 280px;
  display: none; /* ita-control na JS */
  animation: fadeInOut 0.5s ease;
}

.comment-preview .dp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4c842;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.comment-preview .stars {
  color: #ccc;
  margin: 5px 0;
}

.comment-preview .stars .filled {
  color: gold;
}

/* Modal */
/* Reuse modal style */
.comment-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.comment-modal .modal-content {
  background: white;
  color: black;
  width: 400px;
  max-width: 90%;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.comment-modal .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.comment-form input,
.comment-form textarea,
.comment-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.comment-form button {
  background: #f4c842;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.comment-form button:hover {
  background: #ddb631;
}


.modal-content {
  background: white;
  color: black;
  width: 500px;
  max-width: 90%;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  text-align: center;
}

.modal-content .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.nav-arrows {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 24px;
  cursor: pointer;
}

.add-comment-btn {
  background: #f4c842;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.add-comment-btn:hover {
  background: #ddb631;
}

@keyframes fadeInOut {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
/* Floating comment message truncate */
.comment-preview p {
  max-height: 40px;        /* inabaki kama mistari ~2 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* maximum 2 lines */
  -webkit-box-orient: vertical;
  margin: 5px 0 0;
  font-size: 14px;
  color: #333;
}

/* Modal comment text scrollable */
.modal-comment-text {
  max-height: 200px;       /* max height in px */
  overflow-y: auto;
  margin-top: 10px;
  text-align: left;
  line-height: 1.4;
}
.faq-content li{
  margin-left: 50px;
  margin-bottom: 10px;
}


/* ============================= */
/* Responsive Design (max-width: 770px) */
/* ============================= */
@media screen and (max-width: 770px) {

  body, html {
    font-size: 14px;
  }

  /* Top Info */
  .top-info {
    flex-direction: column;
    gap: 8px;
    font-size: 0.8em;
    text-align: center;
  }

  /* Header */
  .header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .logo {
    width: 120px;
    height: 120px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Hero */
  .hero-banner {
    height: 60vh;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  /* Travel Guide */
  .guide-container {
    padding: 0 10px;
    text-align: center;
  }

  .guide-image {
    max-width: 100%;
    margin-top: 20px;
  }

  /* Parks */
  .parks-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .park-card {
    max-width: 90%;
  }

  /* Full Safari */
  .full-safari-section {
    height: 60vh;
    margin: 20px;
  }

  .safari-overlay {
    padding: 20px;
  }

  .safari-overlay h2 {
    font-size: 1.8rem;
  }

  .safari-overlay p {
    font-size: 1rem;
  }

  /* Visit Time */
  .visit-time-container {
    flex-direction: column;
  }

  .visit-time-image,
  .visit-time-text {
    flex: 1 1 100%;
  }

  .visit-time-text {
    padding: 20px;
    text-align: center;
  }

  /* Safari Packages */
  .package-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .package-card {
    max-width: 90%;
  }

  .button-row {
    flex-direction: column;
    gap: 15px;
  }

  /* Carousel */
  .carousel-wrapper {
    padding: 0 30px;
  }

  .carousel-arrow {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  /* FAQ */
  .faq-header {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .faq-content {
    font-size: 0.9rem;
  }

  /* Floating Buttons */
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
    padding: 8px 14px;
  }

  .whatsapp-float i {
    font-size: 22px;
  }

  .comment-preview {
    width: 220px;
    bottom: 15px;
    right: 15px;
    font-size: 13px;
  }

  .modal-content {
    width: 95%;
    padding: 15px;
  }
}


/* ============================= */
/* Responsive Design (max-width: 480px) */
/* ============================= */
@media screen and (max-width: 480px) {

  body, html {
    font-size: 13px;
  }

  /* Header */
  .header {
    gap: 10px;
    padding: 15px 10px;
  }

  .logo {
    width: 90px;
    height: 90px;
  }

  nav {
    flex-direction: column;
    gap: 8px;
  }

  nav a {
    font-size: 0.9em;
  }

  /* Hero */
  .hero-banner {
    height: 50vh;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  /* Guide */
  .guide-container h2 {
    font-size: 1.5rem;
  }

  .guide-container h3 {
    font-size: 1.2rem;
  }

  .guide-container p {
    font-size: 0.9rem;
  }

  /* Parks */
  .parks-header h2 {
    font-size: 1.5rem;
  }

  .park-card {
    padding: 15px;
  }

  /* Full Safari */
  .full-safari-section {
    height: 50vh;
    margin: 15px;
  }

  .safari-overlay h2 {
    font-size: 1.4rem;
  }

  .safari-overlay p {
    font-size: 0.9rem;
  }

  /* Visit Time */
  .visit-time-text h2 {
    font-size: 1.4rem;
  }

  .visit-time-text p {
    font-size: 0.9rem;
  }

  .packages-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Safari Packages */
  .safari-packages h2 {
    font-size: 1.6rem;
  }

  .safari-packages > p {
    font-size: 0.9rem;
  }

  .package-card {
    padding: 15px;
  }

  .button-row {
    gap: 10px;
  }

  /* Carousel */
  .carousel-title {
    font-size: 1.4rem;
  }

  .carousel-wrapper {
    padding: 0 20px;
  }

  .package-card {
    width: 240px;
    padding: 15px;
  }

  .carousel-arrow {
    font-size: 1.2rem;
    padding: 6px 10px;
  }

  /* FAQ */
  .faq-header {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .faq-content {
    font-size: 0.85rem;
  }

  /* Floating Buttons */
  .whatsapp-float {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 30px;
  }

  .whatsapp-float i {
    font-size: 20px;
  }

  .comment-preview {
    width: 200px;
    font-size: 12px;
    padding: 10px;
  }

  .modal-content {
    width: 92%;
    padding: 12px;
  }

  .modal-comment-text {
    max-height: 150px;
  }
}



/* ============================= */
/* Responsive Design (max-width: 770px) */
/* ============================= */
@media screen and (max-width: 770px) {

  /* Top Info */
  .top-info {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 13px;
  }

  /* Header */
  .header {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }
  .logo-container2 {
    padding-left: 0;
  }
  .logo {
    width: 120px;
    height: 120px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Hero */
  .hero-banner {
    height: 60vh;
  }
  .hero-text h2 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }

  /* Travel Guide */
  .guide-container {
    padding: 0 10px;
    text-align: center;
  }
  .guide-image {
    max-width: 100%;
    margin-top: 20px;
  }

  /* Parks */
  .parks-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .park-card {
    max-width: 90%;
  }

  /* Full Safari */
  .full-safari-section {
    height: 60vh;
    margin: 20px;
  }
  .safari-overlay {
    padding: 20px;
  }
  .safari-overlay h2 {
    font-size: 1.8rem;
  }
  .safari-overlay p {
    font-size: 1rem;
  }

  /* Visit Time */
  .visit-time-container {
    flex-direction: column;
  }
  .visit-time-text {
    padding: 20px;
    text-align: center;
  }

  /* Safari Packages */
  .package-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .package-card {
    max-width: 90%;
  }
  .button-row {
    flex-direction: column;
    gap: 15px;
  }

  /* Carousel */
  .carousel-wrapper {
    padding: 0 30px;
  }
  .carousel-arrow {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  /* FAQ */
  .faq-header {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
  .faq-content {
    font-size: 0.9rem;
  }

  /* Floating Elements */
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
    padding: 8px 14px;
  }
  .whatsapp-float i {
    font-size: 22px;
  }
  .comment-preview {
    width: 220px;
    bottom: 15px;
    right: 15px;
    font-size: 13px;
  }
  .modal-content {
    width: 95%;
    padding: 15px;
  }
}


/* ============================= */
/* Responsive Design (max-width: 480px) */
/* ============================= */
@media screen and (max-width: 480px) {

  /* Top Info */
  .top-info {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Header */
  .header {
    gap: 10px;
    padding: 15px 10px;
  }
  .logo {
    width: 90px;
    height: 90px;
  }
  nav {
    flex-direction: column;
    gap: 8px;
  }
  nav a {
    font-size: 0.9em;
  }

  /* Hero */
  .hero-banner {
    height: 50vh;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }

  /* Travel Guide */
  .guide-container h2 {
    font-size: 1.5rem;
  }
  .guide-container h3 {
    font-size: 1.2rem;
  }
  .guide-container p {
    font-size: 0.9rem;
  }

  /* Parks */
  .parks-header h2 {
    font-size: 1.5rem;
  }
  .park-card {
    padding: 15px;
  }

  /* Full Safari */
  .full-safari-section {
    height: 50vh;
    margin: 15px;
  }
  .safari-overlay h2 {
    font-size: 1.4rem;
  }
  .safari-overlay p {
    font-size: 0.9rem;
  }

  /* Visit Time */
  .visit-time-text h2 {
    font-size: 1.4rem;
  }
  .visit-time-text p {
    font-size: 0.9rem;
  }
  .packages-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Safari Packages */
  .safari-packages h2 {
    font-size: 1.6rem;
  }
  .safari-packages > p {
    font-size: 0.9rem;
  }
  .package-card {
    padding: 15px;
  }
  .button-row {
    gap: 10px;
  }

  /* Carousel */
  .carousel-title {
    font-size: 1.4rem;
  }
  .carousel-wrapper {
    padding: 0 20px;
  }
  .package-card {
    width: 240px;
    padding: 15px;
  }
  .carousel-arrow {
    font-size: 1.2rem;
    padding: 6px 10px;
  }

  /* FAQ */
  .faq-header {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  .faq-content {
    font-size: 0.85rem;
  }

  /* Floating Elements */
  .whatsapp-float {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 30px;
  }
  .whatsapp-float i {
    font-size: 20px;
  }
  .comment-preview {
    width: 200px;
    font-size: 12px;
    padding: 10px;
  }
  .modal-content {
    width: 92%;
    padding: 12px;
  }
  .modal-comment-text {
    max-height: 150px;
  }
}
