/* ==========================================================================
   WOLU TOUR — GLOBAL STYLESHEET
   Design tokens, reset, typography, and reusable components.
   Shared across all pages. Page-specific rules live in css/<page>.css
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  /* Brand palette */
  --c-green-primary: #234334;
  --c-green-secondary: #2F5D45;
  --c-gold: #CEA92F;
  --c-gold-light: #E8D49A;
  --c-cyan: #95F7F3;
  --c-cream: #F5F1E6;
  --c-white: #FFFFFF;
  --c-dark: #1F2937;

  /* Semantic */
  --bg-body: var(--c-cream);
  --text-body: var(--c-dark);
  --text-on-dark: #EFEBDD;

  /* Type */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 45px -20px rgba(15, 61, 46, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(23, 34, 30, 0.35);

  --nav-height: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

section { position: relative; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--c-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--c-gold);
  display: inline-block;
}

.script {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
}

.section-heading { font-size: clamp(30px, 4vw, 44px); }
.section-lede {
  font-size: 16px;
  max-width: 640px;
  opacity: 0.85;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--c-green-secondary);
  color: var(--c-white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--c-green-primary); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-outline:hover { background: var(--c-gold); color: var(--c-dark); }

.btn-gold {
  background: var(--c-gold);
  color: var(--c-dark);
}
.btn-gold:hover { background: var(--c-gold-light); }

.btn-dark {
  background: var(--c-dark);
  color: var(--c-gold);
}
.btn-dark:hover { background: color-mix(in srgb, var(--c-green-primary) 85%, black); }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-green-secondary);
  height: var(--nav-height);
  transition: height 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}
.navbar.is-scrolled {
  height: calc(var(--nav-height) - 14px);
  box-shadow: 0 10px 30px -12px rgba(15, 20, 18, 0.35);
  border-radius: 0 0 18px 18px;
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}
.brand__mark span {
  width: 6px;
  background: var(--c-gold);
  border-radius: 2px;
}
.brand__mark span:nth-child(1) { height: 60%; }
.brand__mark span:nth-child(2) { height: 100%; }
.brand__mark span:nth-child(3) { height: 78%; }

.brand__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-white);
  letter-spacing: 0.01em;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 901px) {
  .nav-links { margin-left: auto; margin-right: 8px; }
}
.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-on-dark);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255,255,255,0.14);
  color: var(--c-white);
}
.nav-links a[aria-current="page"] {
  background: var(--c-gold);
  color: var(--c-dark);
}

.navbar__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    width: min(78vw, 320px);
    background: var(--c-green-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 16px; }
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 18, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: var(--text-on-dark);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__about p {
  margin-top: 14px;
  font-size: 14.5px;
  color: rgba(239,235,221,0.72);
  max-width: 320px;
}

.footer__brand .brand__text { color: var(--c-white); }

.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14.5px;
  color: rgba(239,235,221,0.78);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--c-gold-light); }

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(239,235,221,0.78);
  margin-bottom: 12px;
}
.footer__contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--c-gold); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.footer__social a:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-dark); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(239,235,221,0.55);
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(239,235,221,0.55); }
.footer__bottom a:hover { color: var(--c-gold-light); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- WhatsApp Floating Button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-green-secondary);
  color: var(--c-white);
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 14px 30px -10px rgba(15,61,46,0.55);
  transition: transform 0.2s ease, border-radius 0.2s ease, padding 0.2s ease;
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float span { display: none; font-weight: 700; font-size: 14px; white-space: nowrap; }
@media (min-width: 768px) {
  .wa-float:hover { border-radius: var(--radius-pill); padding: 14px 22px 14px 16px; }
  .wa-float:hover span { display: inline; }
}

/* ---------- Page Hero (shared pattern for inner pages) ---------- */
.page-hero {
  background: var(--c-green-primary);
  color: var(--text-on-dark);
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero .eyebrow { color: var(--c-gold-light); }
.page-hero h1 {
  color: var(--c-white);
  font-size: clamp(34px, 5vw, 54px);
  margin-top: 14px;
}
.page-hero p {
  margin-top: 18px;
  font-size: 17px;
  color: rgba(239,235,221,0.82);
  max-width: 560px;
}
.page-hero .btn { margin-top: 30px; }
.page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(239,235,221,0.6);
  margin-bottom: 6px;
}
.page-hero__breadcrumb a:hover { color: var(--c-gold-light); }

/* ==========================================================================
   HERO — shared component (Home, Travel, Charter, Wisata)
   Layout/spacing/typography stay identical across pages; only title,
   description, feature image/card content, and CTA text change.
   ========================================================================== */
.hero {
  background: var(--c-green-primary);
  padding: 40px 0 0;
}

.hero__panel {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.hero__content .eyebrow { margin-bottom: 14px; color: var(--c-green-secondary); }
.hero__content .eyebrow::before { background: var(--c-gold); }

.hero__content h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 13ch;
}

.hero__content p {
  margin-top: 20px;
  font-size: 16px;
  max-width: 46ch;
  opacity: 0.82;
}

.hero__content .btn { margin-top: 26px; }

.hero__feature {
  background: var(--c-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--c-white);
}
.hero__feature-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hero__feature-media img { width: 100%; height: 100%; object-fit: cover; }
.hero__feature-body { padding: 18px 20px 20px; }
.hero__feature-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
}
.hero__feature-body p {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
}
.hero__feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.hero__feature-tags {
  display: flex;
  gap: 12px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
}
.hero__feature-tags span { display: inline-flex; align-items: center; gap: 5px; }

@media (max-width: 860px) {
  .hero__panel { grid-template-columns: 1fr; }
  .hero__feature { max-width: 360px; }
}

/* ==========================================================================
   CARA PESAN — shared component (Travel, Charter, Wisata, Home-ringkas)
   ========================================================================== */
.how-to {
  padding: 88px 0;
  background: var(--c-cream);
}
.how-to__head { max-width: 640px; margin-bottom: 40px; }
.how-to__head .eyebrow { color: var(--c-green-secondary); }
.how-to__head h2 { margin-top: 10px; }

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-to-step {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.how-to-step__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--c-gold);
  line-height: 1;
}
.how-to-step h3 {
  margin-top: 14px;
  font-size: 16.5px;
  font-weight: 600;
}
.how-to-step p {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.72;
}

@media (max-width: 960px) {
  .how-to-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .how-to-grid { grid-template-columns: 1fr; }
}

/* Compact variant — used on Home as a condensed summary */
.how-to--compact { padding: 70px 0; }
.how-to--compact .how-to-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.how-to--compact .how-to-step { padding: 20px 16px; }
.how-to--compact .how-to-step__number { font-size: 22px; }
.how-to--compact .how-to-step h3 { margin-top: 10px; font-size: 14.5px; }
.how-to--compact .how-to-step p { font-size: 12.5px; }
@media (max-width: 960px) {
  .how-to--compact .how-to-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 560px) {
  .how-to--compact .how-to-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   SERVICE NAVIGATION — floating fixed-bottom bar
   Only rendered on Travel, Charter, Wisata (not Home). Different from the
   top .navbar: this one navigates sections WITHIN the current page.
   ========================================================================== */
.service-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 120;
  max-width: calc(100vw - 32px);
  background: rgba(35, 67, 52, 0.96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px -14px rgba(15, 20, 18, 0.5);
  padding: 6px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
}

.service-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.service-nav__list::-webkit-scrollbar { display: none; }

.service-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(239,235,221,0.78);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.service-nav__list a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
}
.service-nav__list a.is-active {
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 600;
}
.service-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.service-nav__list a.is-active .service-nav__dot { opacity: 1; }

/* Content shouldn't be hidden behind the floating bar */
body.has-service-nav main { padding-bottom: 96px; }
/* Keep the WhatsApp floating button clear of the service nav bar */
body.has-service-nav .wa-float { bottom: 84px; }

@media (max-width: 560px) {
  .service-nav { left: 10px; right: 10px; bottom: 10px; transform: none; max-width: none; }
  .service-nav__list a { padding: 10px 14px; font-size: 13px; }
  body.has-service-nav main { padding-bottom: 88px; }
  body.has-service-nav .wa-float { bottom: 76px; right: 14px; }
}

/* ---------- Generic section paddings ---------- */
.section-pad { padding: 88px 0; }
@media (max-width: 700px) {
  .section-pad { padding: 56px 0; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}


/* ==========================================================================
   ARMADA / FLEET CARDS — shared component (home + charter pages)
   ========================================================================== */
/* ---------- Armada / Fleet section ---------- */
.fleet {
  background: var(--c-green-primary);
  color: var(--text-on-dark);
  padding: 90px 0 100px;
}
.fleet__head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: end;
}
.fleet__head .eyebrow { color: var(--c-gold); }
.fleet__head h2 { color: var(--c-white); margin-top: 10px; }
.fleet__head h2 .script { color: var(--c-gold-light); display: block; font-size: 0.85em; }
.fleet__head p { margin-top: 16px; color: rgba(239,235,221,0.78); max-width: 48ch; }
.fleet__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--c-white);
}
.fleet__tag::before { content:""; width: 44px; height: 1px; background: var(--c-gold); }
.fleet__tag::after { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); }

.fleet-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fleet-card__media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/11; }
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card h3 {
  margin-top: 18px;
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.fleet-card p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(239,235,221,0.7);
}
.fleet-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.fleet-card__meta .tags {
  display: flex; gap: 12px;
  font-size: 12px; color: rgba(239,235,221,0.6);
}
.fleet-card__meta .tags span { display: inline-flex; align-items: center; gap: 5px; }

@media (max-width: 960px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet__head { grid-template-columns: 1fr; }
  .fleet__tag { justify-self: start; }
}
@media (max-width: 620px) {
  .fleet-grid { grid-template-columns: 1fr; }
}



/* PNG logo replacement */
.brand__logo {
  width: 48px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-left: 12px;
}

.navbar .brand__logo {
  max-height: 52px;
}


/* ==========================================================================
   HERO — Per-page card carousel
   ========================================================================== */
.hero-carousel {
  position: relative;
  min-width: 0;
  background: transparent;
  overflow: visible;
  color: var(--c-white);
}
.hero-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-dark);
}
.hero-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 360ms ease;
  will-change: transform;
}
.hero-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--c-dark);
  overflow: hidden;
}
.hero-carousel__slide .hero__feature-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hero-carousel__slide .hero__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel__slide .hero__feature-body {
  padding: 18px 20px 20px;
}
.hero-carousel__slide .hero__feature-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
}
.hero-carousel__slide .hero__feature-body p {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
}
.hero-carousel__slide .hero__feature-meta {
  margin-top: 14px;
}
.hero-carousel__slide .hero__feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
}
.hero-carousel__slide .hero__feature-tags b {
  font-weight: 400;
}
.hero-carousel__btn {
  position: absolute;
  top: 43%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(35,67,52,0.92);
  color: var(--c-white);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.hero-carousel__btn--prev { left: 12px; }
.hero-carousel__btn--next { right: 12px; }
.hero-carousel__btn:hover { transform: scale(1.05); }
.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 4;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(15,61,46,0.72);
  backdrop-filter: blur(6px);
}
.hero-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.hero-carousel__dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: var(--c-gold);
}
@media (max-width: 860px) {
  .hero-carousel__btn {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}


/* Google Reviews CTA */
.google-reviews-cta {
  margin: 28px auto 0;
  padding: 18px 20px;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(35, 67, 52, .14);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-sizing: border-box;
}
.google-reviews-cta__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-green, #234334);
  font-size: 14px;
  font-weight: 600;
}
.google-reviews-cta__stars {
  letter-spacing: 2px;
  font-size: 16px;
}
.google-reviews-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #234334;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease;
}
.google-reviews-cta__button:hover {
  transform: translateY(-1px);
  opacity: .92;
}
@media (max-width: 768px) {
  .google-reviews-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .google-reviews-cta__rating {
    justify-content: center;
  }
  .google-reviews-cta__button {
    width: 100%;
  }
}
