/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* TOP CONTACT BAR */
.top-contact {
  background-color: #007b3e;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.95rem;
}

.top-contact a {
  color: #ffc107;
  text-decoration: none;
}

/* HEADER & NAVIGATION */
.landing-menu {
  background-color: #004225;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 60px;
  margin: auto;
  position: relative;
}

.logo img {
  height: 40px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-links {
  display: flex;
  gap: 20px;
}

.menu-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.menu-links a:hover {
  color: #ffc107;
}

.cta-button {
  background-color: #ffc107;
  color: #004225;
  /* padding: 10px 20px; */
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #007b3e;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #004225;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: none; /* default hidden */
  }

  .menu-links.active {
    display: flex;
  }

  .menu-links a {
    margin-bottom: 12px;
    font-size: 1rem;
  }
} 

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.3);
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 20px 40px;
  text-align: left;
  margin-top: 70px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.2;
}

.hero-price {
  display: block;
  font-size: 1.2rem; /* Smaller than the title */
  font-weight: 400;
  color: #f0f0f0;
  margin-bottom: 20px;
  font-style: italic; /* <-- This makes the text italic */
}

.cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #003f2d;
  font-weight: bold;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #007b3e;
  color: white;
}

/* WhatsApp CTA style aligned with main CTA */
.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.whatsapp-inline img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Description Section Below Hero */
.hero-description {
  background: #f9f9f9;
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
  color: #004225;
  line-height: 1.6;
  font-style: italic; /* <-- This makes the text italic */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-container {
    height: 56px;
    padding: 10px 16px;
  }

  .hero-section {
    height: 50vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px 0;
  }

  .hero-text {
    padding: 0 16px;
    max-width: 100%;
    text-align: left !important;
    align-self: flex-start;
  }

  .hero-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 3;       
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  } 

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
  }

  .hero-description {
    font-size: 1rem;
    padding: 24px 16px;
  }
} 

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-price {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
} 

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  color: #004225;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* ========== Tour Details Section ========== */
.tour-details {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tour-details .section-title {
  font-size: 2rem;
  text-align: center;
  color: #004225;
  margin-bottom: 40px;
}

.tab-container details {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.tab-summary {
  padding: 18px 24px;
  background-color: #e9f7f2;
  cursor: pointer;
  font-weight: bold;
  color: #004225;
  font-size: 1.1rem;
  position: relative;
}

.tab-summary::after {
  content: '\25BC';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

details[open] > .tab-summary::after {
  transform: rotate(180deg);
}

.tab-content {
  padding: 20px 28px;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.itinerary-day {
  padding: 16px 0;
  border-bottom: 1px dashed #ccc;
}

.itinerary-day h3 span {
  color: #007b3e;
  font-weight: bold;
  margin-right: 6px;
}

.map-under-tour iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: 0;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========== Safari Information Section ========== */
.safari-info {
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.safari-info .section-title {
  font-size: 2rem;
  color: #004225;
  text-align: center;
  margin-bottom: 40px;
}

.info-block {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}

.info-block h3 {
  font-size: 1.25rem;
  color: #007b3e;
  border-left: 4px solid #007b3e;
  padding-left: 12px;
  margin-bottom: 16px;
  position: relative;
}

.info-block ul {
  padding-left: 20px;
  color: #333;
  line-height: 1.7;
  list-style: disc;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}

.info-table th,
.info-table td {
  border: 1px solid #ccc;
  padding: 14px 16px;
  text-align: left;
}

.info-table th {
  background-color: #e1f2ed;
  color: #004225;
  font-weight: 600;
}

.info-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.info-columns .info-block {
  flex: 1 1 48%;
  min-width: 280px;
}

.cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  background-color: #ffc107;
  color: #003f2d;
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #007b3e;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tab-summary {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .tab-content,
  .info-block {
    padding: 20px;
  }

  .info-columns {
    flex-direction: column;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* FAQ Section Styling */
.faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 60px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #004225;
  margin-bottom: 40px;
}

.faq-container details {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004225;
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  background-color: #e9f7f2;
  position: relative;
}

.faq-question::after {
  content: "\25BC";
  position: absolute;
  right: 24px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

details[open] > .faq-question::after {
  transform: rotate(180deg);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 20px 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s ease-in;
}

.faq-answer ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.faq-answer li {
  margin-bottom: 8px;
}

/* CTA inside FAQ */
.faq-section .cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.faq-section .cta-button {
  background-color: #ffc107;
  color: #003f2d;
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-section .cta-button:hover {
  background-color: #007b3e;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .faq-answer {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-section .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Top Related Tours Section */
.related-tours {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 60px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.related-tours .section-title {
  text-align: center;
  font-size: 2rem;
  color: #004225;
  margin-bottom: 40px;
}

/* Grid for Cards */
.related-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

/* Individual Card */
.related-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-6px);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.related-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-card-body h3 {
  font-size: 1.2rem;
  color: #007b3e;
  margin-bottom: 10px;
}

.related-card-body p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

.related-card-body p span {
  font-weight: 600;
  color: #004225;
}

/* Card CTA Button */
.related-card .card-button {
  align-self: flex-start;
  background-color: #ffc107;
  color: #004225;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: auto;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.related-card .card-button:hover {
  background-color: #007b3e;
  color: white;
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
  .related-tours {
    padding: 40px 16px;
  }

  .related-card-body h3 {
    font-size: 1.1rem;
  }

  .related-card-body p {
    font-size: 0.9rem;
  }

  .related-card .card-button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.contact-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #004225;
  margin-bottom: 20px;
}

.contact-description {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #004225;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.contact-form button.cta-button {
  background-color: #ffc107;
  color: #004225;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 50%;
}

.contact-form button.cta-button:hover {
  background-color: #007b3e;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 16px;
  }

  .contact-section .section-title {
    font-size: 1.6rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button.cta-button {
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

/* Footer Styling */
.landing-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: flex-start;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
  overflow: visible;
}

.footer-brand img {
  max-width: 140px;
}

.footer-links h4,
.footer-contact h4,
.footer-reviews h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #ffc107;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

.footer-contact p,
.footer-contact a {
  color: #ccc;
  margin: 6px 0;
  text-decoration: none;
}

.footer-reviews img {
  max-width: 140px;
  margin-top: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 20px;
  }

  .footer-links a,
  .footer-contact p,
  .footer-contact a {
    text-align: center;
  }

  .footer-reviews img {
    margin: 10px auto;
  }
}

/* Fix: Review widget spacing in footer */
.footer-reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 768px) {
  .footer-reviews {
    align-items: center;
    margin-top: 20px;
  }
}



/* .whatsapp-chat {
  position: fixed;
  margin-bottom: 50px; 
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

/* @media screen and (max-width: 768px) {
  .whatsapp-chat {
    bottom: 100px;
    right: 15px;
  }
} */
