/* Kilimanjaro Page Styles */

/* Hero Section */
.hero, .hero-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*background: #1A2A44;  Deep base color as fallback */
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  /* Remove background-image override to respect inline style */
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 10%;
  height: 10%;
  /*object-fit: cover;  Ensures image fits if used as <img> in future */
  /* No filter or background-color override to preserve inline style */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 42, 68, 0.4) 0%, rgba(216, 169, 3, 0.2) 40%, rgba(26, 42, 68, 0.5) 100%); /* Blend of deep blue and yellow-ochre */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #F9F4E8; /* Light tan for contrast, matching theme */
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  margin-bottom: 0.7rem;
  line-height: 0.9;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #D8A903; /* Yellow-ochre for title */
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 1.0rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: #A68A64; /* Earthy brown from theme */
}

.hero-cta {
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #D8A903, #A68A64); /* Yellow-ochre to brown gradient */
  color: #F9F4E8;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(216, 169, 3, 0.5); /* Yellow-ochre border */
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(216, 169, 3, 0.4); /* Yellow-ochre shadow */
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 65vh;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}

/* Slider Support (if multiple slides added later) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* Introduction Section */

.intro-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), #f9f4e8);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(216, 169, 3, 0.2);
}

.intro-brief {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.intro-brief .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.intro-brief .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--giraffe-gold);
  border-radius: 2px;
}

.intro-brief .lead {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 2.5rem;
}

.intro-nav-bar {
  text-align: center;
  margin-bottom: 4rem;
}

.route-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.route-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(216, 169, 3, 0.25);
}

.route-item {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: var(--earth-brown);
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  border-radius: 0.6rem;
}

.route-item:hover,
.route-item.active {
  color: #fff;
  background: var(--giraffe-gold);
  transform: scale(1.05);
}

.route-content {
  max-width: 1050px;
  margin: 0 auto;
}

.route-description {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.route-description.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.route-description {
  opacity: 0;
  transform: translateY(20px);
}

.route-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.route-hero img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-hero:hover img {
  transform: scale(1.1);
}

.route-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.route-brief {
  margin-bottom: 2.5rem;
}

.route-brief p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.route-packages {
  margin-top: 2.5rem;
}

.packages-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--earth-brown);
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 400px; /* Maintained increased height */
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover img {
  transform: scale(1.1);
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.2); /* Highly transparent overlay */
}

.package-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; /* Reduced text size */
  margin-bottom: 0.3rem;
  color: #9ACD32;
}

.package-content p {
  font-size: 1.2rem; /* Reduced text size */
  margin-bottom: 0.8rem;
  color: #fff;
}

.package-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.package-cta {
  font-size: 1rem; /* Reduced text size */
  color: var(--giraffe-gold); /* Clear text color */
  text-decoration: none;
  border: 2px solid var(--giraffe-gold); /* Simple border design */
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  transition: color 0.4s ease, border-color 0.4s ease;
  background: transparent; /* Removed fill */
}

.package-cta:hover {
  color: #fff; /* Text changes on hover */
  border-color: #fff; /* Border changes on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .intro-section {
    padding: 3.5rem 0;
  }
  .intro-brief {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  .intro-brief .section-heading {
    font-size: 2.2rem;
  }
  .intro-brief .lead {
    font-size: 1.1rem;
  }
  .intro-nav-bar {
    margin-bottom: 3rem;
  }
  .route-nav {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }
  .route-item {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
  .route-hero img {
    height: 200px;
  }
  .route-title {
    font-size: 1.8rem;
  }
  .route-brief p {
    font-size: 1.1rem;
  }
  .packages-heading {
    font-size: 1.7rem;
  }
  .package-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .package-card {
    height: 350px; /* Adjusted for mobile */
  }
  .package-content h5 {
    font-size: 1.3rem;
  }
  .package-content p {
    font-size: 1.1rem;
  }
  .package-cta {
    font-size: 0.9rem;
  }
}


/* Trekking Routes Section */
.trekking-routes-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  position: relative;
  overflow: hidden;
}

.trekking-routes-section .container {
  text-align: center;
}

.trekking-routes-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; /* Matches FAQ */
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.trekking-routes-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--giraffe-gold);
  border-radius: 1px;
}

.trekking-routes-section .lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem; /* Matches FAQ */
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.routes-table-container {
  overflow-x: auto;
  padding: 0 0.5rem;
}

.routes-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.7rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

.routes-table th,
.routes-table td {
  padding: 0.85rem 1rem; /* Slightly reduced padding */
  text-align: center;
  font-size: 0.85rem; /* Reduced from 1rem to improve compactness */
  border-bottom: 1px solid rgba(218, 185, 143, 0.2);
}

.routes-table th {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem; /* Reduced from 1.3rem for consistency */
  color: var(--earth-brown);
  background: rgba(92, 58, 33, 0.05);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.routes-table td {
  color: var(--muted);
  transition: background 0.3s ease;
}

.routes-table tr:hover td {
  background: rgba(216, 169, 3, 0.08); /* Retained hover effect */
}

.routes-table tr:last-child td {
  border-bottom: none;
}

.routes-table td:nth-child(5) {
  font-style: italic;
  color: var(--earth-brown);
  max-width: 250px;
  word-wrap: break-word;
  font-size: 0.9rem; /* Reduced from 0.95rem for prose */
}

/* Responsive */
@media (max-width: 768px) {
  .trekking-routes-section {
    padding: 3rem 0;
  }
  .trekking-routes-section .section-heading {
    font-size: 1.6rem;
  }
  .trekking-routes-section .lead {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .routes-table th,
  .routes-table td {
    padding: 0.7rem 0.7rem; /* Further reduced for mobile */
    font-size: 0.85rem; /* Reduced from 0.9rem */
  }
  .routes-table th {
    font-size: 1rem; /* Reduced from 1.1rem */
  }
  .routes-table td:nth-child(5) {
    max-width: 150px;
  }
}

/* Travel Tips Section */
.travel-tips-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #C1E1C5, #E8F5E9); /* Richer green gradient */
  position: relative;
  overflow: hidden;
}

.travel-tips-section .container {
  text-align: center;
}

.travel-tips-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; /* Matches FAQ */
  color: #9ACD32;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(154, 205, 50, 0.25);
  position: relative;
}
.travel-tips-section h2 {
  color: var(--giraffe-gold);
}

.travel-tips-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #9ACD32;
  border-radius: 1px;
}

.travel-tips-section .lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem; /* Matches FAQ */
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.7rem;
  padding: 1.2rem;
  box-shadow: 0 6px 20px rgba(154, 205, 50, 0.15); /* Deeper shadow */
  border: 1px solid rgba(154, 205, 50, 0.2); /* Enhanced green border */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(216, 169, 3, 0.3); /* Subtle gold accent */
  transition: opacity 0.5s ease;
  opacity: 0;
}

.tip-card:hover::before {
  opacity: 1;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(154, 205, 50, 0.25);
}

.tip-card i {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.tip-card:hover i {
  transform: scale(1.15);
  color: #7CFC00; /* Lighter green for hover */
}

.tip-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; /* Matches FAQ questions */
  color: #9ACD32;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tip-card p {
  font-size: 1rem; /* Matches FAQ */
  color: var(--muted);
  line-height: 1.6;
  padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .travel-tips-section {
    padding: 3rem 0;
  }
  .travel-tips-section .section-heading {
    font-size: 1.6rem;
  }
  .travel-tips-section .lead {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .tips-grid {
    gap: 1rem;
    padding: 0;
  }
  .tip-card {
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .tip-card i {
    font-size: 2rem;
  }
  .tip-card h3 {
    font-size: 1.1rem;
  }
  .tip-card p {
    font-size: 0.9rem;
  }
}

/* Cultural Highlights Section */
.cultural-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  position: relative;
  overflow: hidden;
}

.cultural-section .container {
  text-align: center;
}

.cultural-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.cultural-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--giraffe-gold);
  border-radius: 1.5px;
}

.cultural-section .lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.cultural-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cultural-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cultural-card img {
  width: 100%;
  height: 370px; /* Increased from 280px */
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cultural-card:hover img {
  transform: scale(1.05);
}

.cultural-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(216, 169, 3, 0.2);
}

.cultural-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(154, 205, 50, 0.7), transparent); /* #9ACD32 with 70% opacity */
  color: #fff;
  padding: 2rem;
  transition: transform 0.4s ease;
  transform: translateY(100%);
}

.cultural-card:hover .cultural-overlay {
  transform: translateY(0);
}

.cultural-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  color: #9ACD32;
}

.cultural-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.cultural-cta {
  font-size: 1rem;
  color: var(--giraffe-gold);
  text-decoration: none;
  border: 1px solid var(--giraffe-gold);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-top: 0.8rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.cultural-cta:hover {
  background: var(--giraffe-gold);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cultural-section {
    padding: 3rem 0;
  }
  .cultural-section .section-heading {
    font-size: 2rem;
  }
  .cultural-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .cultural-grid {
    gap: 1.5rem;
  }
  .cultural-card img {
    height: 250px; /* Adjusted for mobile */
  }
  .cultural-overlay h3 {
    font-size: 1.4rem;
  }
  .cultural-overlay p {
    font-size: 1rem;
  }
  .cultural-cta {
    font-size: 0.9rem;
  }
}


/* Booking Options Section */
.booking-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F9EDE3, #F5E2B3);
  position: relative;
  overflow: hidden;
}

.booking-section .container {
  text-align: center;
}

.booking-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; /* Aligned with FAQ */
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.booking-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--giraffe-gold);
  border-radius: 1px;
}

.booking-section .lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem; /* Aligned with FAQ */
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
  font-weight: 300;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Smaller cards */
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.8rem; /* Smaller radius */
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(216, 169, 3, 0.15); /* Subtle gold border */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  backdrop-filter: blur(8px); /* Lighter blur */
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(216, 169, 3, 0.2);
}

.option-card i {
  font-size: 2.5rem; /* Reduced icon size */
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.option-card:hover i {
  transform: scale(1.05); /* Subtle scale */
}

.option-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; /* Reduced to match FAQ */
  color: var(--earth-brown);
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.option-card p {
  font-size: 1rem; /* Aligned with FAQ */
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  padding: 0;
}

.option-card .btn-primary {
  padding: 0.8rem 1.5rem; /* Reduced size */
  font-size: 1rem; /* Aligned with FAQ */
  border-radius: 0.5rem; /* Smaller radius */
  background: linear-gradient(90deg, #D8A903, #F0E68C);
  color: var(--earth-brown);
  text-decoration: none; /* Remove underline */
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(216, 169, 3, 0.3); /* Thinner border */
  display: inline-block; /* Ensure no underline from anchor */
}

.option-card .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(216, 169, 3, 0.3);
  background: linear-gradient(90deg, #F0E68C, #D8A903);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-section {
    padding: 3rem 0;
  }
  .booking-section .section-heading {
    font-size: 1.6rem;
  }
  .booking-section .lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .booking-options {
    gap: 1rem;
    padding: 0;
  }
  .option-card {
    padding: 1.2rem;
    border-radius: 0.6rem;
  }
  .option-card i {
    font-size: 2.2rem;
  }
  .option-card h3 {
    font-size: 1.2rem;
  }
  .option-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .option-card .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* FAQs Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5e2b3, #f9f1e0);
  position: relative;
  overflow: hidden;
}

.faq-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; /* Reduced for FAQ consistency */
  color: var(--earth-brown);
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.2rem;
  position: relative;
}

.faq-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--giraffe-gold);
  border-radius: 1px;
}

.faq-section .lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem; /* Reduced for FAQ consistency */
  color: var(--muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
  font-weight: 300;
}

.faq-layout {
  display: flex;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.faq-sidebar {
  flex: 1;
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 2rem;
  height: fit-content;
  transition: transform 0.3s ease;
}

.faq-sidebar:hover {
  transform: translateY(-4px);
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; /* Reduced for FAQ consistency */
  color: var(--earth-brown);
  margin-bottom: 1.2rem;
  text-align: center;
  border-bottom: 2px solid var(--giraffe-gold);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem; /* Reduced for FAQ consistency */
  color: var(--muted);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
  text-align: left;
  border-radius: 0.4rem;
}

.nav-item:hover,
.nav-item.active {
  color: var(--giraffe-gold);
  background: rgba(216, 169, 3, 0.12);
}

.faq-content {
  flex: 3;
  padding: 0.5rem 0;
}

.faq-default,
.faq-section-content {
  display: none;
}

.faq-default.active,
.faq-section-content.active {
  display: block;
}

.default-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; /* Reduced for FAQ consistency */
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
}

.default-title::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1.5px;
  background: var(--giraffe-gold);
}

.default-text {
  font-size: 1rem; /* Reduced for FAQ consistency */
  color: var(--muted);
  line-height: 1.6;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.default-text p {
  margin: 0.6rem 0;
  text-align: center;
  max-width: 80%;
}

.default-text em {
  font-style: italic;
  color: var(--giraffe-gold);
  font-weight: 500;
}

.default-text strong {
  font-weight: 700;
  color: var(--earth-brown);
  background: rgba(216, 169, 3, 0.15);
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  line-height: 2.4rem;
  font-size: 2.05rem;
}

.accordion-item {
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.accordion-item:hover {
  transform: translateY(-6px);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: rgba(139, 69, 19, 0.06);
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(139, 69, 19, 0.12);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; /* Reduced for FAQ consistency */
  color: var(--earth-brown);
  margin: 0;
  transition: color 0.3s ease;
}

.accordion-header:hover .faq-question {
  color: var(--giraffe-gold);
}

.accordion-icon {
  font-size: 1.5rem; /* Reduced for FAQ consistency */
  color: var(--giraffe-gold);
  transition: transform 0.4s ease;
}

.accordion-content {
  padding: 0 1.5rem 1rem;
  color: var(--muted);
  font-size: 1rem; /* Reduced for FAQ consistency */
  line-height: 1.6;
  display: none;
  transition: padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  display: block;
  padding: 1rem 1.5rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  .faq-sidebar {
    position: static;
    width: 100%;
    padding: 1rem;
  }
  .sidebar-title {
    font-size: 1.3rem;
  }
  .nav-item {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .default-title {
    font-size: 1.4rem;
  }
  .default-text {
    font-size: 0.9rem;
    padding: 1rem;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .accordion-icon {
    font-size: 1.3rem;
  }
  .accordion-content {
    font-size: 0.9rem;
    padding: 0 1rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .intro-section, .routes-section, .tips-section, .cultural-section, .booking-section, .faq-section {
    padding: 3rem 0;
  }
  .routes-table, .tips-grid, .cultural-grid, .booking-options, .faq-grid {
    grid-template-columns: 1fr;
  }
}