/* ==========================================================================
   Bali Fast Track — Shared Hero Styling
   Brings the photo heroes on interior pages (/contact/, lounge, transfer,
   police-escort) in line with the homepage hero. front-page.php keeps its own
   higher-specificity #hero inline block, so the homepage is unaffected; these
   .hero rules fill in the same look everywhere else. No markup changes needed.
   ========================================================================== */

.hero { position: relative; }

/* Dark gradient + soft gold accent over each page's photo.
   (.hero-overlay is an empty div already present in these templates.) */
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 85% at 80% 16%, rgba(205, 184, 126, 0.16) 0%, rgba(205, 184, 126, 0) 44%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.78) 0%, rgba(10, 14, 26, 0.52) 45%, rgba(10, 14, 26, 0.94) 100%);
}
/* Centered, width-capped container — matches the homepage hero (was full-bleed).
   Uses #hero (like front-page.php) to outrank main.css's `.hero .container{width:100%}`. */
#hero.hero .container,
.hero .container {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}

/* Badge — frosted glass pill */
.hero .hero-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(205, 184, 126, 0.35);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

/* Title — clean white sans (matches the revamped homepage hero: no gold, no italic).
   Covers both the homepage markup (.hero-title-sub) and the interior-page markup
   (<h1> … <span class="gold">). */
.hero .hero-title-main { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.hero .hero-title-sub,
.hero h1 .gold {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

/* CTA — compact pills, gradient, glow + sheen (never stretch full width) */
.hero .hero-ctas { max-width: 480px; gap: 14px; margin-bottom: 14px; }
.hero .hero-ctas .btn-primary,
.hero .hero-ctas .btn-whatsapp {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
}
.hero .hero-ctas .btn-primary {
  border-radius: 999px;
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.hero .hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}
.hero .hero-ctas .btn-primary svg { transition: transform 0.25s var(--ease-out); }
.hero .hero-ctas .btn-primary:hover svg { transform: translateX(4px); }
.hero .hero-ctas .btn-whatsapp {
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.hero .hero-ctas .btn-whatsapp:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

/* Stats — glass cards with hover lift */
.hero .hero-stats { gap: 14px; border-top: 1px solid rgba(205, 184, 126, 0.18); }
.hero .hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 120px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
@media (hover: hover) {
  .hero .hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(205, 184, 126, 0.4);
    background: rgba(255, 255, 255, 0.06);
  }
}
.hero .hero-stat .number { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4); }

/* Mobile / tablet — tighten spacing, top-align */
@media (max-width: 820px) {
  .hero { min-height: auto; align-items: flex-start; padding-top: 96px; padding-bottom: 48px; }
  .hero .hero-badge { font-size: 0.68rem; padding: 0.4rem 1rem; letter-spacing: 0.8px; margin-bottom: 1.1rem; }
  .hero .hero-badge svg { width: 14px; height: 14px; }
  .hero .hero-ctas { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding-top: 88px; padding-bottom: 40px; }
  .hero .hero-stat { padding: 12px 10px; min-width: 0; border-radius: 14px; }
  .hero .hero-stat .number { font-size: 20px; }
}

/* ==========================================================================
   Interior TEXT heroes (.service-hero-layout grid) — match the revamped
   homepage hero CTAs: white pill (primary) + ghost pill (WhatsApp).
   Scoped to .service-hero-layout so Pricing / CTA buttons stay gold.
   ========================================================================== */
/* Hero title is <h1 class="section-title">, but .section-title is centered
   globally — in this left-aligned hero it must align left like the rest. */
.service-hero-layout .section-title { text-align: left; }
.service-hero-layout .btn-primary {
  background: #fff;
  color: var(--navy-950);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.service-hero-layout .btn-primary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}
.service-hero-layout .btn-whatsapp {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: none;
}
.service-hero-layout .btn-whatsapp:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

/* ==========================================================================
   Showcase / interior photo heroes — cap width on desktop so large photos
   don't dominate the layout; always centered. Targets the standard pattern
   of an <img> (optionally wrapped in <figure>) sitting directly in .container.
   Mobile is unaffected: the container is already narrower than the cap.
   ========================================================================== */
.container > img,
.container > figure > img {
  display: block;
  max-width: 880px;
  height: auto;
  margin-inline: auto;
}
