/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Top Bar */
.top-bar {
  background-color: #ffffff;
  font-size: 14px;
  padding: 6px 0;
  z-index: 1;
}

.top-left a {
  margin-right: 15px;
}

.top-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-right a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

/* Separator Strip */
.thin-strip {
  background-color: #5c3d2e;
  height: 2px;
  width: 100%;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Container */
.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%; 
}

.logo img {
  height: 80px;       
  width: auto;
  max-width: 160px;   
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 70px;
    max-width: 140px;
  }
}

/* Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-icon {
  width: 25px;
  height: 2px;
  background-color: #000;
  display: block;
  position: relative;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  width: 25px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.toggle-icon::before {
  top: -8px;
}

.toggle-icon::after {
  top: 8px;
}

/* Nav Links */
.main-nav {
  flex-grow: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c9a14d;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px 15px;
  display: block;
  font-size: 12px;
  color: #000;
}

.dropdown-menu a:hover {
  background-color: #fdf5e6;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: static;
    width: 100%;
    background-color: #fff;
    display: none;
    flex-direction: column;
    box-shadow: none;
    margin-top: 10px;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}

.brown-strip {
  background-color: #5c3d2e;
  color: #ffffff;
  text-align: center;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.brown-strip p {
  margin: 0 auto;
  max-width: 1000px; /* keeps it readable on large screens */
  padding: 0 20px;    /* adds breathing room on all devices */
}


/* Hero Section */
.hero {
  margin-top: 0;
  padding-top: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 70vh;              
  min-height: 300px;         
  max-height: 600px;         
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Image Background */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay Content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hero-bold {
  font-style: normal;
  font-weight: 700;
  display: block;
}

.hero-subtext {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

/* CTA Button */
.hero-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: #5c3d2e;
}

/* Separator Line */
.separator-line {
  position: relative;
  z-index: 1;
  height: 1px;
  background-color: #ffffff;
  margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}



/* Tours Section */
.tours {
  background-color: #ffffff;
  padding: 80px 0;
}

.tours-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #000000;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.tour-row > .tour-card {
  width: 100%;
}

@media (min-width: 992px) {
  .tour-row > .tour-card {
    width: calc(33.333% - 20px); /* 3 per row with 30px gap */
  }
}


.tour-card {
  background-color: #fdf5e6;
  border: 1px solid #eee;
  border-radius: 16px;
  width: calc(33.333% - 20px);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.tour-card h3 {
  font-size: 18px;
  color: #c9a14d;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}

.tour-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.btn {
  display: inline-block;
  background-color: #5c3d2e;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-subtext {
    font-size: 18px;
  }

  .tour-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .tour-card {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .tour-card h3 {
    font-size: 16px;
  }

  .tour-card p {
    font-size: 14px;
  }

  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Discovery Section */
.discovery-section {
  padding: 80px 20px;
  background-color: #fff;
}

.discovery-title {
  text-align: center;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

.discovery-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  text-align: center;
}

/* Discovery Blocks */
.discovery-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1000px;   /* reduced for better look */
  margin: 0 auto 60px;
}

.discovery-block.reverse {
  flex-direction: row-reverse;
}

.discovery-image {
  flex: 0 0 45%;        /* fixed width ratio */
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.discovery-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.discovery-image:hover img {
  transform: scale(1.05);
}

.discovery-text {
  flex: 0 0 50%;        /* fixed width ratio */
  background-color: #fdf5e6;
  padding: 25px;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
}

.discovery-text h3 {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: #000;
  margin-bottom: 10px;
}

.discovery-text h4 {
  font-size: 16px;
  font-style: italic;
  color: #5c3d2e;
  margin-bottom: 15px;
}

.discovery-text p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive */
@media (max-width: 1024px) {
  .discovery-block {
    flex-direction: column;   /* stack on tablets/phones */
    gap: 20px;
    max-width: 90%;
  }

  .discovery-image,
  .discovery-text {
    flex: 1 1 100%;
    width: 100%;
  }

  .discovery-text {
    padding: 20px;
  }

  .discovery-title {
    font-size: 28px;
  }

  .discovery-text h3 { font-size: 20px; }
  .discovery-text h4 { font-size: 15px; }
  .discovery-text p { font-size: 14px; }
}

@media (max-width: 600px) {
  .discovery-section {
    padding: 50px 15px;
  }

  .discovery-title {
    font-size: 24px;
  }

  .discovery-intro {
    font-size: 14px;
    padding: 0 10px;
  }

  .discovery-text {
    padding: 15px;
  }

  .discovery-text h3 { font-size: 18px; }
  .discovery-text h4 { font-size: 14px; }
  .discovery-text p { font-size: 13px; }
}

/* GROUP TOURS SECTION */
.group-tours {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.group-title {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #000000;
  margin-bottom: 40px;
}

/* Grid Layout */
.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tour Card */
.group-card {
  background-color: #fdf5e6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.group-card:hover {
  transform: translateY(-5px);
}

.group-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.group-card:hover img {
  transform: scale(1.03);
}

.group-card h3 {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.group-card h3 span {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
}

.group-dates {
  font-size: 14px;
  color: #5c3d2e;
  margin-bottom: 5px;
}

.group-price {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

/* Buttons */
.group-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.group-btn {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.group-btn.primary {
  background-color: #c9a14d;
  color: white;
}

.group-btn.secondary {
  background-color: transparent;
  border: 2px solid #c9a14d;
  color: #c9a14d;
}

.group-btn.secondary:hover {
  background-color: #c9a14d;
  color: white;
}

/* Responsive Tweaks */
@media (max-width: 480px) {
  .group-title {
    font-size: 24px;
  }

  .group-card h3 {
    font-size: 15px;
  }

  .group-card h3 span {
    font-size: 13px;
  }

  .group-price {
    font-size: 14px;
  }

  .group-btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
}

.why-title {
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  margin-bottom: 40px;
}

/* Grid Layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Grid Item */
.why-item {
  background-color: #fdf5e6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }

  .why-item h3 {
    font-size: 15px;
  }

  .why-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 40px 15px;
  }

  .why-title {
    font-size: 24px;
  }

  .why-item {
    padding: 15px;
  }

  .why-item h3 {
    font-size: 14px;
  }

  .why-item p {
    font-size: 12.5px;
  }
}

/* Logo Slider Section */
.logo-slider-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.logo-title {
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  color: #000;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

/* Separator Line */
.section-separator.tight {
  height: 1px;
  background-color: #000000;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin: 30px 0;
}


/* Slider Container */
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Scrolling Track */
.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollLogos 20s linear infinite;
  width: max-content;
}

/* Logo Item */
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
}

/* Scroll Animation */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-title {
    font-size: 24px;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-item img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-title {
    font-size: 20px;
  }

  .logo-track {
    gap: 20px;
  }

  .logo-item img {
    height: 40px;
  }
}


/* Footer Base */
.footer {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Upper Section — Cream background, logo only */
.footer-upper {
  background-color: #fdf5e6;
  padding: 30px 20px;
  border-top: 1px solid #ccc;
}

.footer-upper-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 90px;
  width: auto;
}

/* Middle Section — Brown background */
.footer-middle {
  background-color: #2e1701;;
  padding: 40px 20px;
  color: #fff;
}

.footer-middle-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #eee;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #c9a14d;
}

.book-now-btn {
  display: inline-block;
  background-color: #c9a14d;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
}

/* Facebook iframe */
.footer-column iframe {
  width: 100%;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

/* Lower Section — Cream background */
.footer-lower {
  background-color: #fdf5e6;
  color: #333;
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-middle-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-upper-content {
    justify-content: center;
    text-align: center;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-middle-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-column h4 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }

  .book-now-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .footer-lower {
    font-size: 12px;
  }
}

/* Hero Section*/
.hero-section {
  width: 100%;
  min-height: 40vh; /* full screen height */
  background-image: url('your-hero-image.jpg'); /* replace with actual image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark layer */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 40px; }
  .hero-text p { font-size: 15px; }
}

@media (max-width: 768px) {
  .hero-section { height: 50vh; }
  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-section { height: 45vh; }
  .hero-text h1 { font-size: 26px; }
  .hero-text p { font-size: 13px; }
}


/* Kilimanjaro Grid Section */
.kilimanjaro-grid {
  background-color: #fff;
  padding: 60px 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two cards per row on large screens */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.kilimanjaro-card {
  background-color: #fffaf0; /* creamy background */
  border: 1px solid #e6d8b8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kilimanjaro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.kilimanjaro-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.kilimanjaro-card h3 {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding: 15px;
  flex-grow: 1;
}

/* Intro text inside Kilimanjaro cards */
.kilimanjaro-card p {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Attractive button inside Kilimanjaro cards */
.kilimanjaro-card .card-btn {
  display: inline-block;
  margin: 8px auto; 
  padding: 6px 14px;
  background: linear-gradient(135deg, #c9a14d, #9e4f04);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  cursor: hand;
  transition: all 0.3s ease;
}

.kilimanjaro-card .card-btn:hover {
  background: linear-gradient(135deg, #9e4f04, #7a3d03);
  transform: scale(1.06);
  box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* one card per row on small screens */
    gap: 28px;
  }

  .kilimanjaro-card img { height: 210px; }
  .kilimanjaro-card h3 { font-size: 16px; }
}

@media (max-width: 480px) {
  .kilimanjaro-card img { height: 190px; }
  .kilimanjaro-card h3 { font-size: 15px; padding: 12px; }
}

.kilimanjaro-itinerary {
  background-color: #fff;
  color: #333;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem
}


/* Layout container */
.kilimanjaro-itinerary .container {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem; /* ✅ Adds space between accordion and quote form */
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Accordion section */
.kilimanjaro-itinerary .accordion {
  flex: 2;
  min-width: 300px;
  max-width: 650px; /* ✅ Limits accordion width to create space */
}


/* Quote form wrapper */
.kilimanjaro-itinerary .price-table {
  flex: 1;
  min-width: 320px;
  max-width: 450px; /* ✅ Prevents it from growing too wide */
  background-color: #e9d7a7;
  border: 1px solid #f3dcbff6;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Title and price */
.kilimanjaro-itinerary .price-table h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #9b4907;
  border-bottom: 2px solid #995302;
  padding-bottom: 0.5rem;
}

.kilimanjaro-itinerary .price-table .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 1rem 0;
}

.kilimanjaro-itinerary .price-table ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.kilimanjaro-itinerary .price-table ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #444;
}

/* Quote form layout */
.kilimanjaro-itinerary .quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.kilimanjaro-itinerary .quote-form label {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.kilimanjaro-itinerary .quote-form input,
.kilimanjaro-itinerary .quote-form select,
.kilimanjaro-itinerary .quote-form textarea {
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.kilimanjaro-itinerary .quote-form textarea {
  resize: vertical;
}

/* Contact method styling */
.kilimanjaro-itinerary .quote-form fieldset {
  border: 1px;
  margin-top: 1rem;
  padding: 0;
}

.kilimanjaro-itinerary .quote-form fieldset legend {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.kilimanjaro-itinerary .quote-form .contact-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.kilimanjaro-itinerary .quote-form .contact-options label {
  background-color: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: hand;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.kilimanjaro-itinerary .quote-form input[type="radio"] {
  accent-color: #b95d12e7;
}

/* Submit button */
.kilimanjaro-itinerary .quote-form button {
  margin-top: 1rem;
  padding: 0.8rem;
  background-color: #b15906;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.kilimanjaro-itinerary .quote-form button:hover {
  background-color: #ce7b0f;
}


.kilimanjaro-itinerary .accordion {
  flex: 2;
  min-width: 300px;
}

.kilimanjaro-itinerary .acod-panel {
  border-bottom: 1px solid #ddd;
}

.kilimanjaro-itinerary .acod-head a {
  display: block;
  padding: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #2c3e50;
  position: relative;
  background-color: #f7f7f7;
  transition: background 0.3s;
}

.kilimanjaro-itinerary .acod-head a:hover {
  background-color: #eaeaea;
}


.kilimanjaro-itinerary .acod-body {
  display: none;
  padding: 1rem;
  background-color: #fafafa;
}

.kilimanjaro-itinerary .acod-body.active {
  display: block;
}

.kilimanjaro-itinerary .price-table {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #7a3d03;
  border-radius: 8px;
  padding: 1.5rem;
}

.kilimanjaro-itinerary .price-table h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #803f04;
  border-bottom: 2px solid #7a3d03;
  padding-bottom: 0.5rem;
}

.kilimanjaro-itinerary .price-table ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.kilimanjaro-itinerary .price-table li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.kilimanjaro-itinerary .price-table .price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2c3e50;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .kilimanjaro-itinerary .container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }

  .kilimanjaro-itinerary .accordion,
  .kilimanjaro-itinerary .price-table {
    max-width: 100%;
    width: 100%;
  }

  .kilimanjaro-itinerary .acod-head a {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .kilimanjaro-itinerary .acod-body {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .kilimanjaro-itinerary .price-table {
    padding: 1.5rem;
  }

  .kilimanjaro-itinerary .price-table h3 {
    font-size: 1.3rem;
  }

  .kilimanjaro-itinerary .price-table .price {
    font-size: 1.5rem;
  }

  .kilimanjaro-itinerary .price-table ul li {
    font-size: 0.95rem;
  }

  .kilimanjaro-itinerary .quote-form label {
    font-size: 0.9rem;
  }

  .kilimanjaro-itinerary .quote-form input,
  .kilimanjaro-itinerary .quote-form textarea {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  @media (max-width: 480px) {
  .kilimanjaro-itinerary .quote-form .contact-options {
    flex-direction: column;
  }

  .kilimanjaro-itinerary .quote-form .contact-options label {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
}

  .kilimanjaro-itinerary .quote-form button {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
}

@media (max-width: 480px) {
  .kilimanjaro-itinerary .container {
    padding: 1rem;
  }

  .kilimanjaro-itinerary .acod-head a {
    font-size: 0.95rem;
  }

  .kilimanjaro-itinerary .price-table h3 {
    font-size: 1.2rem;
  }

  .kilimanjaro-itinerary .price-table .price {
    font-size: 1.4rem;
  }

  .kilimanjaro-itinerary .quote-form button {
    font-size: 0.9rem;
  }
}


.consultation-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  border-radius: 8px;
}

.consultation-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.consultation-form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-methods {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.consultation-form button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #5c3d2e;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.consultation-form button:hover {
  background-color: #7a523d;
}

@media (max-width: 768px) {
  .consultation-form {
    padding: 15px;
  }

  .consultation-form h2 {
    font-size: 20px;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;   /* low on the screen */
  left: 20px;     /* left side */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;  /* stays above other elements */
  animation: pulse 2s infinite; /* add pulse animation */
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

/* Hover effect */
.whatsapp-float:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Pulse animation keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 15px;
    left: 15px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}


.gallery-section {
  padding: 40px 20px;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #5c3d2e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  padding: 10px;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    