/* ═══════════════════════════════════════════════════════════════
   AAA Mobile Massage — shared stylesheet for the massage-type pages
   Mirrors the header, footer and typography of index.html.
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:     #1b3829;
  --forest-mid: #2a5040;
  --forest-lt:  #3d7560;
  --gold:       #c9a84c;
  --gold-lt:    #e8c97a;
  --gold-pale:  #f5e8c0;
  --cream:      #faf7f2;
  --cream-dk:   #f0e9dc;
  --sand:       #e8dcc8;
  --text:       #1e1e1e;
  --text-md:    #4a4a4a;
  --text-lt:    #7a7a7a;
  --white:      #ffffff;
  --r:          16px;
  --r-sm:       10px;
  --sh:         0 2px 20px rgba(0,0,0,.08);
  --sh-md:      0 6px 36px rgba(0,0,0,.12);
  --sh-lg:      0 12px 60px rgba(0,0,0,.16);
  --trans:      all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ──────────────────────────── HEADER (same as index) */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px;
  transition: var(--trans);
}
header.scrolled {
  background: rgba(27,56,41,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.promo-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  column-gap: 8px; row-gap: 2px;
  margin: 0 -32px;
  padding: 7px 18px;
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-lt) 45%, var(--gold) 100%);
  color: var(--forest);
  font-size: 13px; font-weight: 600; line-height: 1.45;
  text-align: center;
  box-shadow: 0 1px 12px rgba(0,0,0,.18);
  transition: var(--trans);
}
.promo-bar strong { font-weight: 800; letter-spacing: .2px; }
.promo-bar .promo-sep { opacity: .55; }
.promo-bar:hover { background: var(--gold-lt); }
@media (max-width: 600px) { .promo-bar .promo-sep { display: none; } }

.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-wrap { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800; color: var(--gold);
  letter-spacing: .3px; line-height: 1;
}
.logo-sub {
  font-size: 9.5px; font-weight: 500; color: rgba(255,255,255,.5);
  letter-spacing: 2.5px; text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: var(--trans);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  font-weight: 700 !important; padding: 9px 18px !important;
  border-radius: 9px !important; margin-left: 6px;
  box-shadow: 0 2px 12px rgba(201,168,76,.4);
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,168,76,.5) !important; }
.nav-calendly {
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 9px !important;
  cursor: pointer;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  transition: var(--trans);
}
.nav-calendly:hover { background: var(--gold) !important; color: var(--forest) !important; }

/* massages dropdown */
.nav-links .has-sub { position: relative; }
.nav-links .sub-toggle { display: inline-flex; align-items: center; gap: 6px; }
.caret { font-size: 9px; opacity: .7; transition: transform .2s; display: inline-block; }
.has-sub.open > .sub-toggle .caret { transform: rotate(180deg); }
.subnav {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  border-top: 10px solid transparent;
  background: rgba(27,56,41,.98); background-clip: padding-box;
  backdrop-filter: blur(16px);
  border-left: 1px solid rgba(201,168,76,.3); border-right: 1px solid rgba(201,168,76,.3); border-bottom: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.4));
  padding: 10px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 4px;
  min-width: 430px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.has-sub:hover .subnav, .has-sub.open .subnav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.subnav a { white-space: nowrap; font-size: 13px !important; display: block; }
.subnav a.current { color: var(--gold-lt) !important; font-weight: 700 !important; }
.subnav .all-link { grid-column: 1 / -1; margin-top: 6px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; color: var(--gold) !important; }

/* mobile nav */
#nav-toggle { display: none; }
.burger { display: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; display: block; }
.nav-book-mobile { display: none; }
@media (max-width: 860px) {
  header { padding: 0 16px; }
  .promo-bar { margin: 0 -16px; font-size: 12px; padding: 6px 12px; column-gap: 6px; }
  .burger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(27,56,41,.98); backdrop-filter: blur(16px);
    padding: 8px 16px 20px; border-top: 1px solid rgba(201,168,76,.2);
  }
  #nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-book-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--forest);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(201,168,76,.45);
    flex-shrink: 0;
  }
  .nav-links .nav-calendly,
  .nav-links .nav-cta { display: none; }
  /* dropdown becomes an inline expandable list */
  .nav-links .has-sub { width: 100%; }
  .nav-links .sub-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .subnav {
    position: static; transform: none; min-width: 0;
    grid-template-columns: 1fr;
    border: none; filter: none;
    background: rgba(255,255,255,.05); border-radius: 10px;
    padding: 4px 8px; margin: 2px 0 6px 12px;
    display: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .has-sub.open .subnav { display: grid; }
  /* beat the desktop open-state transform (higher specificity) — without this the
     panel is shifted half off-screen left when opened on mobile */
  .nav-links .has-sub:hover .subnav,
  .nav-links .has-sub.open .subnav { transform: none; }
  .subnav a { white-space: normal; }
}

/* ──────────────────────────── FLOATING WHATSAPP (same as index) */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(37,211,102,.55);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(37,211,102,.7);
  color: #fff;
  animation: none;
}
.wa-float svg { flex-shrink: 0; }
.wa-float-label { white-space: nowrap; }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (max-width: 600px) {
  .wa-float { bottom: 20px; right: 20px; font-size: 14px; }
  .wa-float-label { display: none; }
  .wa-float { border-radius: 50%; width: 58px; height: 58px; justify-content: center; padding: 0; }
}

/* ──────────────────────────── SECTIONS */
section { padding: 76px 32px; }
.container { max-width: 1240px; margin: 0 auto; }
.wrap { max-width: 900px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--forest-lt);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--forest); line-height: 1.15; margin-bottom: 16px;
}
.section-desc {
  font-size: 17px; color: var(--text-md);
  max-width: 640px; line-height: 1.75; margin-bottom: 44px;
  font-weight: 300;
}
.title-accent { position: relative; display: inline-block; }
.title-accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ──────────────────────────── SERVICE HERO */
.svc-hero {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(61,117,96,.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,.15) 0%, transparent 50%),
    linear-gradient(160deg, #0e2419 0%, #1b3829 45%, #0f2218 100%);
  padding: 165px 32px 70px;
  color: #fff;
}
.svc-hero .wrap { max-width: 900px; }
.crumbs { font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--gold-lt); }
.svc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 52px); font-weight: 800;
  line-height: 1.12; margin-bottom: 18px;
}
.svc-hero h1 .accent { color: var(--gold); }
.svc-hero .lede {
  font-size: 17.5px; font-weight: 300; color: rgba(255,255,255,.78);
  line-height: 1.75; max-width: 640px; margin-bottom: 24px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero-badges span {
  border: 1px solid rgba(201,168,76,.5); color: var(--gold-lt);
  font-size: 12.5px; font-weight: 600; letter-spacing: .4px;
  padding: 7px 15px; border-radius: 50px;
  background: rgba(201,168,76,.08);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 26px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--trans);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-cal {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 13px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: var(--trans);
}
.btn-cal:hover { background: var(--gold); color: var(--forest); }

/* ──────────────────────────── ABOUT / PROSE */
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: var(--forest);
  margin: 30px 0 10px;
}
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 15.5px; color: var(--text-md); line-height: 1.85; }
.tick-list { list-style: none; margin-top: 12px; }
.tick-list li {
  font-size: 15px; color: var(--text-md); line-height: 1.7;
  padding: 7px 0 7px 30px; position: relative;
}
.tick-list li::before { content: '✅'; position: absolute; left: 0; font-size: 14px; }

/* ──────────────────────────── PRICES */
.prices-section { background: var(--white); }
.price-card {
  background: var(--cream); border: 1px solid var(--cream-dk);
  border-radius: var(--r); padding: 30px 32px;
  box-shadow: var(--sh);
}
.price-card h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--forest); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.price-card h3 .badge {
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 700;
  background: var(--gold); color: var(--forest);
  padding: 5px 14px; border-radius: 50px; letter-spacing: .4px;
}
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-bottom: 1px dashed var(--sand);
}
.price-row:last-child { border-bottom: none; }
.price-row .dur { font-size: 15px; font-weight: 600; color: var(--text); }
.price-row .amt { text-align: right; }
.price-row .usd { display: block; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--forest); line-height: 1.2; }
.price-row .crc { display: block; font-size: 12.5px; color: var(--text-lt); }
.price-note {
  margin-top: 18px; font-size: 13.5px; color: var(--text-md);
  background: var(--cream); border: 1px solid var(--cream-dk);
  border-radius: var(--r-sm); padding: 13px 17px; line-height: 1.7;
}
.price-note a { color: var(--forest); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(27,56,41,.3); }
.price-note a:hover { color: var(--forest-lt); }

/* ──────────────────────────── DARK PANEL / INCLUDED */
.panel-dark {
  background: linear-gradient(160deg, #0e2419 0%, #1b3829 55%, #0f2218 100%);
  color: #fff;
}
.panel-dark .section-eyebrow { color: var(--gold-lt); }
.panel-dark .section-title { color: #fff; }
.panel-dark .section-desc { color: rgba(255,255,255,.65); }
.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.mini-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--r-sm); padding: 20px 22px;
}
.mini-card b { display: block; font-size: 15px; color: var(--gold-lt); margin-bottom: 6px; }
.mini-card span { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ──────────────────────────── FAQ */
.faq-list { display: grid; gap: 14px; }
.faq-item-static {
  background: var(--white); border: 1px solid var(--cream-dk);
  border-radius: var(--r-sm); padding: 22px 26px; box-shadow: var(--sh);
}
.faq-item-static h3 { font-size: 16.5px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.faq-item-static p { font-size: 14.5px; color: var(--text-md); line-height: 1.75; }

/* ──────────────────────────── OTHER MASSAGES */
.other-section { background: var(--white); }
.other-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.other-grid a {
  background: var(--cream); border: 1px solid var(--cream-dk);
  border-radius: var(--r-sm); padding: 18px 20px;
  font-weight: 700; font-size: 15px; color: var(--forest);
  transition: var(--trans);
}
.other-grid a small { display: block; font-weight: 400; font-size: 12.5px; color: var(--text-lt); margin-top: 4px; }
.other-grid a:hover { border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-3px); }

/* ──────────────────────────── CTA STRIP */
.cta-strip { text-align: center; }
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.cta-strip h2 em { color: var(--gold); font-style: normal; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 30px; }
.cta-strip .hero-cta-row { justify-content: center; }
.btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 13px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  transition: var(--trans);
}
.btn-call:hover { border-color: var(--gold); background: rgba(201,168,76,.12); }

/* ──────────────────────────── FOOTER (same as index) */
footer {
  background: #0a1810; color: rgba(255,255,255,.5);
  padding: 56px 32px 32px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand .fb-logo {
  font-family: 'Playfair Display', serif; font-size: 22px;
  color: var(--gold); font-weight: 800; display: block; margin-bottom: 6px;
}
.footer-brand .fb-tag { font-size: 13px; color: rgba(255,255,255,.4); font-style: italic; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.45); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-brand .fb-legal { font-size: 11.5px; color: rgba(255,255,255,.3); margin-top: 14px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a, .footer-col span {
  display: block; font-size: 13.5px; color: rgba(255,255,255,.5);
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-copy {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-seo { font-size: 11px; color: rgba(255,255,255,.2); text-align: center; margin-top: 20px; }

@media (max-width: 760px) {
  section { padding: 56px 20px; }
  .svc-hero { padding: 175px 20px 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
