/* =============================== RESET & VARIABLES ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #0a5c45;
  --blue: #0e7490;
  --dark: #0f172a;
  --light: #ffffff;
  --muted: #6b7280;
  --bg: #f7f9fb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2933;
  background: var(--bg);
  line-height: 1.7;
}

/* =============================== GLOBAL CONTAINER ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================== TOP CONTACT BAR ================================ */
.top-ticker {
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: white;
  font-size: 14px;
  padding: 6px 0;
  text-align: center;
}

/* =============================== NAVBAR ================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 100px; /* slightly taller navbar */
  
  /* Gradient: dark sides, light center for logo */
  background: linear-gradient(
    90deg,
    var(--green) 0%,       /* left side dark */
    #e0f0ea 50%,           /* start light center */
    #e0f0ea 50%,           /* end light center */
    var(--blue) 100%        /* right side dark */
  );
  position: relative;
}

/* Left text */
.navbar-left {
  font-weight: 600;
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  margin-left: 20px;

  /* Gradient text */
  background: linear-gradient(90deg, #ff4d6d, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Center logo */
.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3; /* ensure logo stays above gradient */
}

.logo-img {
  height: 90px; /* slightly larger logo */
  width: auto;
  display: block;
}

/* Right menu */
.navbar-right {
  display: flex;
  gap: 20px;
  z-index: 2;
}

.navbar-right a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 15px;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-right {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 12px;
    border-radius: 0 0 10px 10px;
    z-index: 2;
  }

  .navbar-right.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* =============================== HERO ================================ */
.page-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.page-hero-content {
  position: relative;
  max-width: 1000px;
  background: rgba(0, 0, 0, 0.55);
  padding: 30px 40px;
  border-radius: 14px;
  color: white;
  margin-left: 40px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 12px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.page-hero-content p {
  font-size: 18px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

/* =============================== SECTIONS ================================ */
.section-white {
  background: white;
  padding: 80px 0;
}

.section-light {
  background: var(--bg);
  padding: 80px 0;
}

.section-white p,
.section-light p {
  font-size: 16.5px;
  color: #374151;
}

/* =============================== CARD GRID ================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* =============================== CARD ================================ */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 14.5px;
  color: #4b5563;
}

/* =============================== READ MORE ================================ */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.read-more-content.open {
  max-height: 500px;
}

.read-more-btn {
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
}

/* =============================== ABOUT PAGE (FINAL – CENTERED) ================================ */
.about-intro {
  padding-top: 10px;
  padding-bottom: 0;
  text-align: center;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  color: #111;
}

.about-section {
  padding: 60px 0 80px;
}

.about-container {
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 900px;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

.about-highlight {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  color: var(--green);
}

/* =============================== ITINERARY ================================ */
.timeline {
  border-left: 3px solid var(--green);
  padding-left: 30px;
  margin-top: 40px;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
}

/* =============================== Google form ================================ */
/* Google Form Embed */
.google-form-wrapper {
  max-width: 700px;
  margin: 30px auto 0;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* =============================== CUSTOM PACKAGE CARD ================================ */
.custom-package {
  background: linear-gradient(135deg, #0f2a44, #143a5c);
  color: white;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-package:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* =============================== Floating buttons ================================ */
.floating-btn {
  position: fixed;
  bottom: 24px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* WhatsApp Button (Green) */
.whatsapp-btn {
  right: 24px;
  background: #25d366;
  color: white;
}

/* Book Now Button (Blue / Theme color) */
.booknow-btn {
  right: 24px;
  bottom: 90px; /* above WhatsApp button */
  background: #0e7490; /* match theme blue */
  color: white;
}


/* =============================== FOOTER ================================ */
.footer {
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: white;
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    margin: 0 16px;
    padding: 24px;
  }

  nav {
    display: none;
  }

  nav.active {
    display: flex;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }
}

/* =============================== HERO SLIDER ================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-slide {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

/* =============================== DESTINATION CAROUSEL (SCROLL) ================================ */
.destination-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  overflow-x: auto;
  gap: 24px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.destination-carousel .card {
  scroll-snap-align: start;
}

/* =============================== FAQ ================================ */
.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
}

.faq-question.active::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 16px;
  color: #4b5563;
  margin-top: 10px;
}

/* GLOBAL SPACING FIX */
.section-white,
.section-light {
  padding: 28px 0;
}

.compact-section {
  padding: 24px 0;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: #374151;
}

.center-text {
  text-align: center;
}

.left-text {
  text-align: left;
}

/* FAQ ACCORDION */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 16px;
  color: #374151;
  line-height: 1.7;
}

/* Hide brand text on mobile to prevent overlap */
@media (max-width: 768px) {
  .navbar-left {
    display: none;
  }
}

.brand-link {
  text-decoration: none;
  color: inherit;
}











