@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap");

/* ============================================================
   Bali Real Vacation — shared stylesheet (modernized)
   Brand DNA kept (ocean blue + coral) and enriched with a fresh
   aqua accent + warm sand neutral. Type updated to Plus Jakarta
   Sans (an Indonesian-designed face) for headings.
   ============================================================ */
:root {
  --primary-color: #00557f; /* refined ocean blue */
  --secondary-color: #ff6b4a; /* punchier coral CTA */
  --aqua: #13b5a6; /* fresh tropical accent */
  --ocean-deep: #04293e; /* dark sections / footer */
  --text-dark: #1f2a30;
  --text-light: #ffffff;
  --bg-light: #fbf8f3; /* warm sand */
  --sand-2: #f3ece0;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-sm: 0 4px 14px rgba(4, 41, 62, 0.06);
  --shadow: 0 14px 40px rgba(4, 41, 62, 0.12);
  --radius: 18px;
}

/* Modernized Color Palette & Typography */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  font-family: var(--font-body);
}
h1,
h2,
h3,
h4,
.logo-text,
.btn {
  font-family: var(--font-heading);
}
/* Navbar */
header {
  background-color: #fff;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}
.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.logo:hover .logo-text {
  color: var(--secondary-color);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: var(--secondary-color);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.mobile-menu-btn:hover {
  color: var(--secondary-color);
}
/* Hero Section */
/* Generic hero shell — NO background here, so each page controls its own.
   (A background set here would override every page's hero via the cascade.) */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
/* Homepage hero ONLY — vibrant ocean→aqua gradient (preview v1 look) */
#home {
  min-height: 88vh;
  background: linear-gradient(135deg, #00557f 0%, #0a6e85 55%, #13b5a6 100%);
}
#home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 80% 10%,
    rgba(255, 127, 80, 0.28),
    transparent 60%
  );
  pointer-events: none;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}
.btn {
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #e68a00;
}
/* Section Titles */
.section-title {
  text-align: center;
  margin: 60px 0 40px;
  font-size: 2.5rem;
  color: var(--primary-color);
}
/* Packages Section */
.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 50px 60px;
}
.package-card {
  background: #fff;
  width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.package-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.package-content {
  padding: 20px;
}
.package-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.package-details {
  list-style: none;
  margin-bottom: 20px;
}
.package-details li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.package-details li i {
  color: var(--primary-color);
  margin-right: 10px;
}
.tour-pricing {
  margin: 15px 0;
  padding: 15px;
  background-color: var(--bg-light);
  border-radius: 8px;
  text-align: left;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.price-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tier-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.usd-price {
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.idr-price {
  color: #555;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
}
.per-pax-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}
/* About Us Section - Fixed Layout */
.about-section {
  padding: 80px 50px;
  background-color: #fff;
}
.about-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}
.about-image {
  flex: 1;
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-height: 400px;
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  z-index: 5;
}
.about-content {
  flex: 1;
}
.about-content h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05rem;
}
.about-features {
  list-style: none;
  margin-top: 25px;
}
.about-features li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about-features li i {
  color: #25d366;
  margin-right: 10px;
}
/* Crew Section */
.crew-section {
  padding: 60px 50px 80px;
  background-color: var(--bg-light);
  text-align: center;
}
.crew-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
}
.crew-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.crew-card {
  background: #fff;
  width: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  text-align: left;
}
.crew-card:hover {
  transform: translateY(-8px);
}
.crew-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.crew-info {
  padding: 25px;
}
.crew-info h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.crew-role {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.crew-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
/* Guides Section */
.guides-section {
  background-color: var(--bg-light);
  padding: 40px 50px 0;
}
.guides-intro {
  text-align: center;
  margin-bottom: 40px;
}
.guides-intro p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Testimonials Section - Upgraded to Grid */
.testimonials {
  padding: 40px 50px 80px;
  background-color: #fff;
}
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 20px;
}
.stars {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}
.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.reviewer h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}
.reviewer span {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
}
/* Booking Form Section */
.booking-section {
  padding: 60px 50px 80px;
  background-color: var(--bg-light);
}
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
}
.submit-btn {
  width: 100%;
  margin-top: 10px;
  font-size: 1.2rem;
  padding: 15px;
}
/* Footer & Social */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
}
.social-links {
  margin: 20px 0;
}
.social-links a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s;
}
.social-links a:hover {
  color: var(--secondary-color);
}
.footer-legal {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer-legal a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: var(--secondary-color);
}
.footer-legal .divider {
  color: #666;
  margin: 0 10px;
}
/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.float-btn:hover {
  transform: scale(1.1);
}
.wa-btn {
  background-color: #25d366;
}
.tg-btn {
  background-color: #0088cc;
}
/* Bridge Banner Section */
.bridge-banner {
  background: linear-gradient(135deg, var(--primary-color), #00365a);
  color: #fff;
  text-align: center;
  padding: 60px 40px;
  margin: 0 auto 80px;
  max-width: 1100px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 91, 150, 0.2);
}
.bridge-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.bridge-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f0ff;
}
.bridge-banner .btn-custom {
  background-color: #fff;
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.bridge-banner .btn-custom:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.4);
}
/* Universal Responsive Rules */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }
  .experience-badge {
    right: 20px;
  }
}
@media (max-width: 768px) {
  /* Hide the old floating circular buttons on mobile view */
  .floating-buttons {
    display: none !important;
  }

  /* Keep your scroll to top button visible but clear of the bar */
  #scrollTopBtn {
    bottom: 90px;
    right: 20px;
  }
  /* 1. Fix the Header and Logo sizes */
  header {
    padding: 15px 20px;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    align-items: center;
  }
  .logo img {
    height: 50px;
  }
  .logo-text {
    font-size: 24px;
  }
  /* Mobile Menu Logic (Keep your existing) */
  .mobile-menu-btn {
    display: block;
  }
  #navMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 99;
  }
  #navMenu.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
  }
  /* Typography Adjustments */
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .section-title {
    font-size: 1.8rem;
  }
  /* Adjust Container Paddings */
  .about-section,
  .crew-section,
  .testimonials,
  .booking-section {
    padding: 40px 20px;
  }
  .packages-container {
    padding: 0 20px 40px;
    gap: 20px;
  }
  .package-card,
  .crew-card {
    width: 100%;
    max-width: 380px;
  }
  /* 2. Fix the Overlapping Badge */
  .about-image {
    margin-bottom: 30px;
  } /* Adds space so the badge doesn't hit the text */
  .experience-badge {
    right: 10px;
    bottom: -15px;
    width: 90px;
    height: 90px;
    font-size: 0.8rem;
    padding: 10px;
  }
  .about-content h3 {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  /* Form Adjustments */
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .booking-container {
    padding: 25px;
  }
  /* 3. Clean up the Floating Buttons */
  /* Move them to a horizontal row, make them smaller, and push them up slightly to avoid OS navigation bars */
  .floating-buttons {
    bottom: 20px;
    left: 20px;
    gap: 10px;
    flex-direction: row;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  /* Guides section adjustments on mobile */
  .guides-section {
    padding: 20px 20px 0;
  }
  .guides-intro {
    margin-bottom: 30px;
  }
  .guides-intro p {
    font-size: 1rem;
    padding: 0 10px;
  } /* The padding here prevents text from hitting the screen edge */
  .guides-section > div[style*="grid"] {
    padding: 0 20px !important;
  }
  /* Hero Section Mobile Optimization */
  .hero {
    height: 65vh; /* Reduces the height slightly to reveal the next section */
    min-height: 400px; /* Ensures it never gets too squished on very short screens */
    background-position: center 30%; /* Shifts the focal point up slightly so the temple isn't cut off */
    padding: 0 15px;
  }
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    padding: 0 10px; /* Prevents the text from touching the screen edges */
  }
  /* Bridge Banner Mobile Fix */
  .bridge-banner {
    margin: 0 20px 60px;
    padding: 40px 20px;
  }
  .bridge-banner h2 {
    font-size: 1.8rem;
  }
}
/* Scroll to Top Button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1000;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    background-color 0.3s;
}
#scrollTopBtn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}
@media (max-width: 768px) {
  #scrollTopBtn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 90px;
    right: 20px;
  }
}
/* Top Destinations Grid */
.destinations-section {
  padding: 80px 50px;
  background-color: #fff;
  text-align: center;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.destination-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none; /* In case we wrap them in links */
}
.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  text-align: left;
  color: #fff;
}
.destination-card:hover .destination-img {
  transform: scale(1.1);
}
.destination-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.destination-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .destinations-section {
    padding: 50px 20px;
  }
}
/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px); /* Starts slightly lower */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change:
    opacity, transform; /* Hardware acceleration for smooth performance */
}
.reveal.active {
  opacity: 1;
  transform: translateY(0); /* Glides into place */
}
/* Optional: Staggered delays for items in a grid */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}

/* ============================================================
   MODERN REFRESH LAYER  (additive overrides on existing markup)
   ============================================================ */
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Sticky translucent, blurred navbar */
header {
  background: rgba(251, 248, 243, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4, 41, 62, 0.07);
  box-shadow: none;
  transition:
    box-shadow 0.3s,
    background 0.3s;
}
header.scrolled {
  box-shadow: 0 6px 24px rgba(4, 41, 62, 0.08);
}
.logo-text {
  letter-spacing: -0.02em;
}

/* Headings: tighter, more confident */
h1,
h2,
h3,
.section-title {
  letter-spacing: -0.025em;
}
.section-title {
  font-weight: 800;
}

/* Pill buttons with lift + coral shadow */
.btn,
.btn-custom,
.submit-btn {
  border-radius: 30px !important;
  font-family: var(--font-heading);
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.3s;
}
.btn:hover,
.btn-custom:hover,
.submit-btn:hover {
  transform: translateY(-3px);
}
.submit-btn,
.btn-custom {
  box-shadow: 0 12px 30px rgba(255, 107, 74, 0.32);
}

/* Cards: softer, larger radius + hover lift */
.package-card,
.crew-card,
.destination-card,
.testimonial-card {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  overflow: hidden;
}
.package-card:hover,
.crew-card:hover,
.destination-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow) !important;
}

/* Image zoom inside cards */
.package-img,
.destination-img,
.crew-img {
  overflow: hidden;
}
.package-img img,
.destination-img img,
.crew-img img {
  transition: transform 0.5s ease;
}
.package-card:hover .package-img img,
.destination-card:hover .destination-img img {
  transform: scale(1.06);
}

/* Aqua accent for category / tier labels */
.tier-label,
.experience-badge {
  color: var(--aqua);
}

/* Accessibility: visible keyboard focus + motion preference */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   NEW COMPONENTS — mobile booking bar, trust bar, hero wave
   ============================================================ */
/* Mobile sticky "Book on WhatsApp" bar */
.mobile-book-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-book-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    align-items: center;
    gap: 12px;
    background: #fff;
    box-shadow: 0 -6px 24px rgba(4, 41, 62, 0.14);
    padding: 11px 16px;
  }
  .mobile-book-bar .mbb-label {
    flex: 1;
    font-size: 0.8rem;
    color: #5c6b73;
    line-height: 1.2;
  }
  .mobile-book-bar .mbb-label b {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ocean-deep);
    font-size: 0.98rem;
  }
  .mobile-book-bar .mbb-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
  }
  body {
    padding-bottom: 74px;
  }
  .floating-buttons {
    bottom: 84px;
  }
  #scrollTopBtn {
    bottom: 90px;
  }
}

/* Homepage trust bar (below hero) */
.trust-bar {
  max-width: 1180px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 18px;
  padding: 24px 30px;
}
.trust-bar .ti {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.trust-bar .ti i {
  font-size: 22px;
  color: var(--aqua);
}
.trust-bar .ti b {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ocean-deep);
  font-size: 1.04rem;
  line-height: 1.1;
}
.trust-bar .ti span {
  color: #5c6b73;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .trust-bar {
    margin: 20px;
    padding: 20px;
    gap: 14px;
  }
  .trust-bar .ti {
    width: 42%;
  }
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.hero h1,
.hero p,
.hero .btn,
.hero-cta {
  position: relative;
  z-index: 3;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: none !important;
}
.btn-ghost:hover {
  background: #fff !important;
  color: var(--primary-color) !important;
}

/* ============================================================
   HOMEPAGE V2 — match the approved preview (hero + tour cards)
   Card treatment is scoped with :has(.tour-pricing) so it only
   touches the 7 tour cards, never the season/essentials cards.
   ============================================================ */
/* Hero polish */
/* (Removed the old broken global hero background — the homepage hero is now
   handled by the #home rule above; other pages keep their own hero image.) */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bdf3ec;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem) !important;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 880px;
  margin-bottom: 18px !important;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Tour-card grid */
#packages .packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tour cards — image-led, flush top, category tag, price emphasis */
.package-card:has(.tour-pricing) {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}
.package-card:has(.tour-pricing) > .package-img {
  width: 100% !important;
  height: 210px !important;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
}
.package-card:has(.tour-pricing) > .package-title {
  margin: 22px 24px 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ocean-deep);
  letter-spacing: -0.02em;
}
.package-card:has(.tour-pricing) > .tour-pricing {
  margin: 14px 24px;
}
.package-card:has(.tour-pricing) > .package-details {
  margin: 0 24px 16px;
}
.package-card:has(.tour-pricing) > .btn {
  margin: auto 24px 22px !important;
  display: block;
  text-align: center;
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ocean-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 13px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(4, 41, 62, 0.12);
}
.card-tag i {
  color: var(--aqua);
}

/* Pricing tiers as a clean bordered list */
.tour-pricing .price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--sand-2);
  border-radius: 12px;
  overflow: hidden;
}
.tour-pricing .price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid var(--sand-2);
  margin: 0;
}
.tour-pricing .price-list li:last-child {
  border-bottom: none;
}
.tour-pricing .tier-label {
  font-size: 0.9rem;
  color: #5c6b73;
}
.tour-pricing .price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tour-pricing .usd-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ocean);
  font-size: 1.15rem;
}
.tour-pricing .idr-price {
  font-size: 0.78rem;
  color: #5c6b73;
}
.tour-pricing .per-pax-note {
  font-size: 0.76rem;
  color: #5c6b73;
  margin: 8px 0 0;
  text-align: right;
}

/* Highlights as a fact list with aqua pins */
.package-card:has(.tour-pricing) .package-details {
  list-style: none;
  padding: 0;
}
.package-card:has(.tour-pricing) .package-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5c6b73;
  font-size: 0.92rem;
  margin-bottom: 7px;
}
.package-card:has(.tour-pricing) .package-details li i {
  color: var(--aqua);
  width: 16px;
  text-align: center;
}

/* Guide cards: image flush to top too */
.package-card:has(.package-content) {
  padding: 0 !important;
  overflow: hidden;
}
.package-card:has(.package-content) > .package-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 !important;
  border-radius: 0 !important;
}
/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on answer length */
}
