/* ============================================================
   MASSAGE FAÑABE — Ocean Blue Identity
   Direction: Luxury Coastal Wellness · Tenerife · Deep Ocean
   Palette: Extracted directly from the brand logo
   ============================================================ */

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

/* ---- Design Tokens ---- */
:root {
  /* ── Ocean Brand Palette (extracted from logo) ── */
  --navy-deep:      #112040;   /* Deepest ocean — logo frame, dark sections */
  --navy:           #1B3D7A;   /* Primary navy — main brand blue */
  --ocean:          #2461B0;   /* Ocean blue — buttons, interactive */
  --ocean-mid:      #3575C8;   /* Mid ocean — hover states */
  --sky:            #5898D4;   /* Sky reflection — accents */
  --sky-light:      #C2DDF2;   /* Sea foam — borders, dividers */
  --sky-pale:       #E8F3FC;   /* Morning sky — section alternates */

  /* ── Warm Accent (beach sand & golden sunset — from logo scene) ── */
  --gold:           #B89040;   /* Muted sand-gold — warm accent */
  --gold-deep:      #947020;   /* Deep gold */
  --gold-soft:      #DFCA80;   /* Soft highlight gold */
  --gold-pale:      #F5EDD0;   /* Gold wash — icon backgrounds */

  /* ── Premium Neutrals ── */
  --off-white:      #F7FAFB;   /* Main background — barely blue-tinted white */
  --warm-white:     #FBF8F5;   /* Warm section alternate */
  --stone:          #DCE9F2;   /* Light blue-grey — borders */
  --stone-mid:      #BDCEDC;   /* Mid stone — dividers */
  --charcoal:       #19222E;   /* Main text — deep blue-black */
  --charcoal-mid:   #3A4D62;   /* Secondary text */
  --charcoal-soft:  #647E96;   /* Tertiary text, captions */
  --white:          #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:       1240px;
  --content-narrow:  680px;
  --content-reading: 58ch;
  --gutter:          36px;

  /* Spacing */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  96px;

  /* Shape */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-pill:  999px;

  /* Borders */
  --border-soft:  1px solid rgba(27,61,122,0.1);
  --border-sky:   1px solid var(--sky-light);

  /* Shadows — ocean-tinted */
  --shadow-xs:    0 2px 8px rgba(18,32,64,0.05);
  --shadow-sm:    0 4px 18px rgba(18,32,64,0.07);
  --shadow:       0 8px 32px rgba(18,32,64,0.10);
  --shadow-hover: 0 20px 52px rgba(18,32,64,0.15);
  --shadow-md:    0 14px 42px rgba(18,32,64,0.12);
  --shadow-soft:  0 8px 28px rgba(27,61,122,0.12);

  --transition: all 0.28s ease;
  --section-py: 108px;
  --btn-height: 54px;
  --radius-xl: 28px;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.76;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
p  { max-width: var(--content-reading); }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Section header ---- */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  font-weight: 500;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
}
.section-label::before { background: linear-gradient(90deg, transparent, var(--gold)); opacity: 0.75; }
.section-label::after  { background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.75; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
.btn-outline,
.btn-service,
.btn-wa,
.btn-wa-location,
.btn-directions,
.mobile-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-height);
  padding: 0 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.24s ease, background-color 0.24s ease,
              border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* Primary — solid ocean blue */
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  border: 2px solid var(--ocean);
  box-shadow: 0 10px 28px rgba(36,97,176,0.28);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(27,61,122,0.34);
}

/* Outline — on dark backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Large modifier */
.btn-lg {
  min-height: 58px;
  padding: 0 36px;
  font-size: 0.95rem;
}

/* Nav Book button */
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean);
  color: var(--white);
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(36,97,176,0.25);
}
.btn-nav:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(27,61,122,0.32);
}

/* Service book button */
.btn-service {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0 24px;
  min-height: 46px;
  box-shadow: none;
}
.btn-service:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36,97,176,0.22);
}

/* WhatsApp green — brand color stays */
.btn-wa {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  box-shadow: 0 12px 28px rgba(37,211,102,0.22);
}
.btn-wa:hover {
  background: #1DBE59;
  border-color: #1DBE59;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37,211,102,0.3);
}

/* Location-specific WA button */
.btn-wa-location {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  width: 100%;
  box-shadow: 0 10px 24px rgba(37,211,102,0.18);
}
.btn-wa-location:hover {
  background: #1DBE59;
  border-color: #1DBE59;
  transform: translateY(-2px);
}

/* Directions button */
.btn-directions {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--stone-mid);
  width: 100%;
  text-align: center;
}
.btn-directions:hover {
  border-color: var(--ocean);
  background: var(--sky-pale);
  transform: translateY(-2px);
}

/* Active states */
.btn-primary:active,
.btn-outline:active,
.btn-service:active,
.btn-wa:active,
.btn-nav:active,
.btn-directions:active,
.btn-wa-location:active,
.mobile-sticky-btn:active { transform: translateY(0); }

/* Focus visible */
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-service:focus-visible,
.btn-wa:focus-visible,
.btn-nav:focus-visible,
.btn-directions:focus-visible,
.btn-wa-location:focus-visible,
.mobile-sticky-btn:focus-visible,
.lang-flag-btn:focus-visible,
.carousel-btn:focus-visible,
.dot:focus-visible {
  outline: 3px solid rgba(88,152,212,0.55);
  outline-offset: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: background 0.38s ease, box-shadow 0.38s ease, padding 0.38s ease;
}
.navbar.scrolled {
  background: rgba(247,250,251,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--sky-light), 0 8px 28px rgba(18,32,64,0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.38s ease, border-color 0.38s ease;
}
.navbar.scrolled .nav-inner {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.logo-link { flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.32));
  transition: filter 0.38s ease;
}
.navbar.scrolled .logo-img {
  filter: drop-shadow(0 2px 8px rgba(18,32,64,0.15));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.22s ease, background 0.22s ease;
}
.nav-link:hover {
  color: var(--gold-soft);
  background: rgba(255,255,255,0.08);
}
.navbar.scrolled .nav-link {
  color: var(--charcoal-mid);
}
.navbar.scrolled .nav-link:hover {
  color: var(--ocean);
  background: var(--sky-pale);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Language picker */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.lang-flag-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 5px;
  width: 34px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s, border-color 0.2s;
  overflow: hidden;
}
.lang-flag-btn .fi {
  width: 28px;
  height: 20px;
  border-radius: 2px;
  display: block;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.lang-flag-btn:hover { opacity: 1; transform: scale(1.1); }
.lang-flag-btn.active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,144,64,0.35);
  transform: scale(1.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("msf 5.webp");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(6,12,30,0.90) 0%,
    rgba(10,22,52,0.58) 38%,
    rgba(12,26,58,0.48) 62%,
    rgba(4,10,28,0.96) 100%
  );
}

/* Ocean depth glow at bottom */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(88,152,212,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 180px 48px 140px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  max-width: 13ch;
  margin: 0 auto var(--space-4);
  text-shadow: 0 6px 32px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}

/* Elegant divider under hero title */
.hero-title + .hero-sub::before {
  content: '';
  display: block;
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 0 auto var(--space-4);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto var(--space-5);
  line-height: 1.88;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-4);
}
.hero-btns > a { min-width: 200px; }

/* Hero CTA — warm gold against ocean blue overlay */
.hero-btns .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(184,144,64,0.35);
}
.hero-btns .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(148,112,32,0.42);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.56);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-trust::before,
.hero-trust::after { display: none; }

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-down svg { width: 26px; height: 26px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* Hero stagger */
.hero-content .reveal                  { transition-delay: 0.06s; }
.hero-content .reveal:nth-child(2)     { transition-delay: 0.18s; }
.hero-content .reveal:nth-child(3)     { transition-delay: 0.32s; }
.hero-content .reveal:nth-child(4)     { transition-delay: 0.46s; }
.hero-content .reveal:nth-child(5)     { transition-delay: 0.58s; }
.hero-content .reveal:nth-child(6)     { transition-delay: 0.68s; }
.hero-content .reveal:nth-child(7)     { transition-delay: 0.76s; }

/* ============================================================
   TAGLINE STRIP
   ============================================================ */
.tagline-strip {
  background: var(--navy-deep);
  padding: 52px 0;
  text-align: center;
  position: relative;
}

/* Subtle gold top edge */
.tagline-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.4), transparent);
}

.tagline-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.18rem, 2.5vw, 1.52rem);
  color: var(--gold-soft);
  margin: 0 auto var(--space-4);
  max-width: 28ch;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(88,152,212,0.22);
  border-radius: 40px;
  padding: 7px 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.badge:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(88,152,212,0.42);
}
.badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.badge-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--sky-pale) 100%);
  padding: var(--section-py) 0;
  position: relative;
}
.services .section-header h2 { color: var(--charcoal); }

.services-category { margin-bottom: 3.5rem; }
.services-cat-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1.5px solid rgba(184,144,64,0.4);
  display: inline-block;
  letter-spacing: 0.01em;
  position: relative;
}
.services-cat-title::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
}

.services-grid,
.services-grid-legacy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-sky);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky-light);
}

/* Ocean blue top accent on hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--ocean) 50%, var(--sky) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card:hover::before { opacity: 1; }
/* Subtle inner glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(36,97,176,0.05) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* Icon area */
.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: var(--space-4) var(--space-4) var(--space-2);
  background: none !important;
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--ocean);
  display: block;
  padding: 17px;
  background: linear-gradient(135deg, var(--sky-pale) 0%, rgba(194,221,242,0.72) 100%);
  border-radius: var(--radius-sm);
  box-sizing: content-box;
  box-shadow: 0 4px 18px rgba(36,97,176,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(194,221,242,0.95) 0%, var(--sky-pale) 100%);
  box-shadow: 0 8px 24px rgba(36,97,176,0.16);
  transform: scale(1.05);
}

.icon-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body {
  padding: var(--space-2) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.24;
  margin: 0;
  letter-spacing: -0.01em;
}
.service-body p {
  color: var(--charcoal-soft);
  font-size: 0.91rem;
  line-height: 1.78;
  flex: 1;
  margin: 0;
  font-weight: 300;
}

.service-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(194,221,242,0.55);
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--charcoal-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.duration-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.service-footer .btn-service { width: 100%; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--warm-white);
  padding: var(--section-py) 0;
}
.about .section-header h2 { color: var(--charcoal); }

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
  margin-bottom: var(--space-6);
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: block;
}

/* Ocean frame accent */
.about-img-accent {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 64%;
  height: 64%;
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.95;
  background: linear-gradient(135deg, rgba(232,243,252,0.55) 0%, transparent 60%);
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.about-text .section-label {
  margin-bottom: 0;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.18;
  margin: 0;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0;
  font-weight: 400;
}

.about-body {
  color: var(--charcoal-mid);
  line-height: 1.84;
  font-size: 1.02rem;
  margin: 0;
  max-width: 48ch;
  font-weight: 300;
}

.about-text .btn-primary { margin-top: var(--space-1); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #1E4585 100%);
  border-radius: var(--radius);
  padding: 48px var(--space-5);
  gap: 0;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

/* Ocean shimmer on stats */
.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(88,152,212,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: linear-gradient(160deg, rgba(194,221,242,0.5) 0%, var(--sky-pale) 35%, var(--off-white) 100%);
  padding: var(--section-py) 0;
}
.gallery .section-header h2 { color: var(--charcoal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,32,64,0.55) 0%, rgba(17,32,64,0.06) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  z-index: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--warm-white) 100%);
  padding: var(--section-py) 0;
}
.why .section-header h2 { color: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px 44px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: var(--border-sky);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md, var(--shadow-hover));
  border-color: var(--sky-light);
}

/* Ocean blue top accent on hover */
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ocean), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--sky-pale) 0%, rgba(194,221,242,0.6) 100%);
  border-radius: 20px;
  color: var(--ocean);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(36,97,176,0.09);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--sky-pale) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(36,97,176,0.18);
}
.why-icon .icon-svg { width: 28px; height: 28px; }

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}
.why-card p {
  color: var(--charcoal-soft);
  font-size: 0.91rem;
  line-height: 1.74;
  max-width: 28ch;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(145deg, #0D1A38 0%, #122040 60%, #0A1630 100%);
  padding: var(--section-py) 0;
  position: relative;
}

/* Subtle gold top border */
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.4), transparent);
}

.testimonials .section-header h2  { color: var(--white); }
.testimonials .section-sub        { color: rgba(255,255,255,0.55); }
.testimonials .section-label      { color: var(--gold); }
.testimonials .section-label::before,
.testimonials .section-label::after { background: var(--gold); }

.carousel-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 72px;
}
.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel {
  display: flex;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 6px;
}

.testimonial-card {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(88,152,212,0.26);
  border-radius: var(--radius);
  padding: 58px 62px 54px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 52px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Elegant decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 38px;
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  color: var(--sky);
  opacity: 0.12;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.stars {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: var(--space-3);
  opacity: 1;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  margin: 0 auto var(--space-4);
  max-width: 44ch;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.testimonial-author strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.testimonial-author span {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.testimonial-verified {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  font-size: 0.64rem !important;
  color: rgba(255,255,255,0.3) !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 400 !important;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: var(--space-4);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--warm-white);
  padding: var(--section-py) 0;
}
.location .section-header h2 { color: var(--charcoal); }

.location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.88fr);
  gap: var(--space-4);
  align-items: stretch;
}
.map-box {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--white);
  border: var(--border-sky);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 44px 36px;
}

.info-block {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--stone);
}
.info-block:last-of-type {
  margin-bottom: var(--space-2);
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-icon .icon-svg { width: 20px; height: 20px; }

.info-block strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.info-block p {
  color: var(--charcoal-mid);
  line-height: 1.72;
  font-size: 0.94rem;
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url("ms 3.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.13) saturate(0.85);
}
/* Deep ocean overlay on top */
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,32,64,0.55) 0%, rgba(10,18,42,0.65) 100%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  padding: 88px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.contact-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}
.contact-inner h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  margin: 0;
  line-height: 1.78;
  font-weight: 300;
}
.contact .btn-wa {
  min-width: 280px;
  margin-top: var(--space-1);
  background: var(--ocean);
  border-color: var(--ocean);
  box-shadow: 0 12px 38px rgba(36,97,176,0.42);
}
.contact .btn-wa:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 18px 48px rgba(27,61,122,0.50);
}
.contact-note {
  margin-top: 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.35), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: var(--space-6);
  padding: 68px var(--gutter) 52px;
  align-items: start;
}

.footer-logo {
  height: 58px;
  width: auto;
  max-width: 196px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.28));
}
.footer-brand p {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 26ch;
}

.footer-links-heading,
.footer-contact strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sky); }

.footer-contact p {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 8px;
}
.footer-contact p:last-of-type { margin-bottom: 0; }

.footer-bottom {
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.footer-bottom a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

.footer-wa-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--sky);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-wa-link:hover { color: var(--sky-light); }

.footer-fb-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--sky);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-fb-link:hover { color: var(--sky-light); }

/* ============================================================
   WAVE SEPARATORS
   ============================================================ */
.wave-sep {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: auto;
}
.wave-sep--dark-to-light {
  background: linear-gradient(145deg, #0D1A38 0%, #0A1630 100%);
}

/* ============================================================
   Utility: prevent max-width on certain paragraphs */
.hero-trust,
.contact-note,
.info-block p,
.footer-brand p,
.footer-contact p { max-width: none; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.48);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.62);
}

.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.65; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 10px 16px;
  background: rgba(17,32,64,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(88,152,212,0.12);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.28);
}
.mobile-sticky-btn {
  background: #25D366;
  color: var(--white);
  width: 100%;
  border: none;
}
.mobile-sticky-btn:hover { background: #1DBE59; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
    --gutter: 24px;
    --space-7: 72px;
  }

  .nav-link { display: none; }

  .services-grid,
  .services-grid-legacy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-img { min-height: 400px; }
  .about-text { max-width: none; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:first-child,
  .gallery-wide { grid-column: span 2; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 32px;
  }
  .stat-item { border-right: none; padding: 16px 8px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .location-inner { grid-template-columns: 1fr; }
  .map-box,
  .map-box iframe { min-height: 440px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .carousel-wrapper { padding: 0 60px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 58px;
    --gutter: 20px;
    --space-7: 60px;
  }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 50;
    padding: 80px 24px 40px;
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 10px 20px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0;
  }
  .btn-nav { font-size: 1rem; padding: 14px 36px; }
  .lang-flags { order: 10; gap: 2px; }
  .lang-flag-btn { width: 30px; height: 23px; }
  .lang-flag-btn .fi { width: 24px; height: 18px; }

  /* Hero */
  .hero { background-attachment: scroll; }
  .hero-content { padding: 108px 20px 80px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.6rem); max-width: 13ch; }
  .hero-sub { margin-bottom: var(--space-4); max-width: 36ch; }
  .hero-badge { font-size: 0.62rem; gap: 12px; }
  .hero-badge::before,
  .hero-badge::after { width: 24px; }
  .btn-lg { min-height: 54px; padding: 0 26px; font-size: 0.9rem; }

  /* Tagline */
  .tagline-strip { padding: 40px 0; }
  .badge-row { gap: 8px 10px; }
  .badge { padding: 6px 14px; font-size: 0.68rem; }

  /* Services */
  .section-header { margin-bottom: 44px; }
  .services-grid,
  .services-grid-legacy { grid-template-columns: 1fr; gap: 18px; }
  .service-body h3 { font-size: 1.15rem; }
  .service-card { border-radius: var(--radius-sm); }
  .btn-service { min-height: 50px; font-size: 0.85rem; }

  /* About */
  .about-inner { gap: 36px; }
  .about-img { min-height: 360px; aspect-ratio: auto; }
  .about .btn-primary { width: 100%; }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 20px;
  }
  .stat-item { padding: 14px 8px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item:first-child,
  .gallery-wide { grid-column: span 2; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-card { padding: 34px 28px; flex-direction: row; text-align: left; gap: var(--space-3); align-items: flex-start; }
  .why-icon { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
  .why-card p { max-width: none; }

  /* Testimonials */
  .testimonial-card { padding: 40px 28px 36px; }
  .testimonial-card::before { font-size: 3.5rem; left: 18px; top: 10px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 1.3rem; }
  .carousel-wrapper { padding: 0 46px; }
  .stars { font-size: 1.1rem; }

  /* Location */
  .location-info { padding: 36px 28px; }

  /* Contact */
  .contact-inner { padding: 56px 32px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }

  /* WA float up */
  .whatsapp-float { width: 52px; height: 52px; bottom: 90px; right: 16px; }

  /* Mobile sticky on */
  .mobile-sticky-cta { display: block; }
  .footer { padding-bottom: 80px; }
  .mobile-sticky-cta { padding: 10px 20px 12px; }
  .mobile-sticky-btn { min-height: 52px; font-size: 0.92rem; border-radius: var(--radius-pill); }
}

/* ============================================================
   RESPONSIVE — Small mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 10px 12px; border-radius: 24px; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .hero-btns > a { min-width: 0; width: 100%; }
  .hero-trust { gap: 8px; font-size: 0.66rem; }

  .stats-row { padding: 28px 16px; }
  .stat-item { padding: 12px 4px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item:first-child,
  .gallery-wide { grid-column: span 1; aspect-ratio: 16 / 10; }
  .gallery-item { aspect-ratio: 4 / 3; }

  .why-card { flex-direction: column; text-align: center; align-items: center; }
  .why-card p { max-width: 36ch; }

  .contact-inner { padding: 44px 22px; }
  .contact .btn-wa,
  .btn-wa-location,
  .btn-directions { width: 100%; }

  .carousel-wrapper { padding: 0 36px; }
  .carousel-btn { width: 34px; height: 34px; font-size: 1.1rem; }
  .testimonial-text { max-width: 34ch; font-size: 0.97rem; }
  .testimonial-card { padding: 32px 20px 28px; }
  .testimonial-card::before { display: none; }
  .stars { font-size: 1rem; letter-spacing: 2px; }

  .footer-inner { padding: 52px var(--gutter) 36px; }
  .footer-links { flex-direction: column; }
}

/* ============================================================
   HERO STARS + URGENCY (premium social proof in hero)
   ============================================================ */
.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-3);
}
.hero-star-fill {
  font-size: 1.28rem;
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
}
.hero-star-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero-urgency {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  max-width: none;
}

/* ============================================================
   GOOGLE RATING BANNER (testimonials section)
   ============================================================ */
.google-rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(88,152,212,0.22);
  border-radius: var(--radius);
  padding: 28px 40px;
  margin: 0 auto 60px;
  max-width: 520px;
  position: relative;
}

.grb-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
}
.grb-icon svg { width: 36px; height: 36px; display: block; }

.grb-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.grb-score-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.grb-score {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.grb-stars {
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}
.grb-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 500;
}

.grb-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

.grb-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.65);
  max-width: 18ch;
  line-height: 1.5;
}

/* ============================================================
   SERVICE BENEFIT LINE
   ============================================================ */
.service-benefit {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--ocean);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
  flex: none;
}

/* ============================================================
   SERVICE POPULAR BADGE
   ============================================================ */
.service-card--popular {
  border-color: rgba(184,144,64,0.35);
}
.service-card--popular::before { opacity: 1; }

.service-popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border: 1px solid rgba(184,144,64,0.4);
  border-radius: var(--radius-pill);
  padding: 4px 11px;
  white-space: nowrap;
  z-index: 2;
}

/* ============================================================
   MID-CTA BAND (between services and why)
   ============================================================ */
.mid-cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.mid-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.35), transparent);
}
.mid-cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.2), transparent);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mid-cta-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mid-cta-text p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--white);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  max-width: none;
}
.mid-cta-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.58);
  max-width: none;
}

.mid-cta-btn {
  flex-shrink: 0;
  min-width: 220px;
}

/* ============================================================
   RESPONSIVE — New components
   ============================================================ */
@media (max-width: 768px) {
  .hero-stars { gap: 10px; margin-bottom: var(--space-2); }
  .hero-star-fill { font-size: 1.1rem; letter-spacing: 3px; }
  .hero-star-label { font-size: 0.68rem; }
  .hero-urgency { font-size: 0.7rem; }

  .google-rating-banner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 28px;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
  }
  .grb-divider { display: none; }
  .grb-quote { max-width: 24ch; font-size: 0.95rem; text-align: center; }
  .grb-score-row { justify-content: center; }
  .grb-label { text-align: center; }

  .mid-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .mid-cta-btn { width: 100%; }

  .service-popular-badge { font-size: 0.55rem; top: 10px; right: 10px; }
}

@media (max-width: 480px) {
  .hero-stars { flex-direction: column; gap: 6px; }
  .google-rating-banner { padding: 18px 20px; }
  .grb-score { font-size: 1.8rem; }
  .mid-cta-band { padding: 40px 0; }
  .mid-cta-text p { font-size: 1.2rem; }
}

/* =====================================================
   TREATMENTS HUB (home page internal linking section)
   ===================================================== */
.treatments-hub {
  padding: 96px 0;
  background: var(--sky-pale, #E8F3FC);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(36,97,176,0.12);
  border-radius: 14px;
  padding: 28px 22px 22px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hub-card:hover {
  box-shadow: 0 8px 32px rgba(17,32,64,0.12);
  transform: translateY(-4px);
  border-color: var(--ocean, #2461B0);
}
.hub-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy, #1B3D7A), var(--ocean, #2461B0));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.hub-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep, #112040);
  margin: 0;
  line-height: 1.3;
}
.hub-card p {
  font-size: 0.88rem;
  color: #5a6e8a;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.hub-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean, #2461B0);
  letter-spacing: 0.01em;
}
@media (max-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hub-grid { grid-template-columns: 1fr; gap: 14px; }
  .treatments-hub { padding: 64px 0; }
}
