/* ============================================================
   NIRVANA INTERNATIONAL SPA — Custom Styles
   (Used alongside Tailwind CDN)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
  --bg:          hsl(0, 0%, 8%);
  --bg-2:        hsl(0, 0%, 10%);
  --bg-3:        hsl(0, 0%, 4%);
  --primary:     hsl(43, 74%, 77%);
  --primary-fg:  hsl(0, 0%, 8%);
  --secondary:   hsl(160, 84%, 20%);
  --secondary-fg:#fafafa;
  --fg:          hsl(43, 74%, 85%);
  --fg-muted:    hsl(43, 20%, 55%);
  --border:      rgba(255,255,255,0.08);
  --whatsapp:    #25D366;
  --font-sans:   'Plus Jakarta Sans', sans-serif;
  --font-serif:  'Cinzel', serif;
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-sm { max-width: 900px; }
.container-md { max-width: 1100px; }

.section-pad   { padding: 4rem 0; }
.section-pad-lg { padding: 6rem 0; }

@media (min-width: 768px) {
  .section-pad   { padding: 6rem 0; }
  .section-pad-lg { padding: 8rem 0; }
}

/* ---------- Colors / Backgrounds ---------- */
.bg-primary   { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-dark      { background: var(--bg); }
.bg-dark2     { background: var(--bg-2); }
.bg-dark3     { background: var(--bg-3); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }

/* ---------- Typography Helpers ---------- */
.font-serif   { font-family: var(--font-serif); }
.font-sans    { font-family: var(--font-sans); }
.label-tag    { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.section-title{ font-size: clamp(1.8rem, 5vw, 3.5rem); color: #fff; }
.section-desc { color: var(--fg-muted); font-weight: 300; font-size: 0.95rem; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--primary); color: var(--primary-fg); }
.btn-secondary { background: var(--secondary); color: var(--secondary-fg); }
.btn-whatsapp  { background: var(--whatsapp); color: #fff; }
.btn-outline   { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn-ghost     { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.btn:hover     { opacity: 0.88; }
.btn-full      { width: 100%; }

/* ---------- Announcement Bar ---------- */
#announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--secondary);
  color: var(--secondary-fg);
  padding: 0.55rem 0;
  overflow: hidden;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
}
.marquee-dot { color: var(--primary); opacity: 0.8; }

/* ---------- Header ---------- */
#site-header {
  position: fixed;
  top: 2.1rem; /* below announcement bar */
  left: 0; right: 0;
  z-index: 90;
  transition: background 0.3s, padding 0.3s, border 0.3s;
  padding: 1.25rem 0;
}

#site-header.scrolled {
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark  { font-family: var(--font-serif); font-size: 1.25rem; color: var(--primary); letter-spacing: 0.15em; font-weight: 700; display: block; }
.logo-sub   { font-size: 0.55rem; letter-spacing: 0.28em; color: rgba(255,255,255,0.6); text-transform: uppercase; display: block; }

.nav-links { display: none; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.05em; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

.header-ctas { display: none; align-items: center; gap: 0.5rem; }

.header-phone {
  font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s, border-color 0.2s;
}
.header-phone:hover { color: var(--primary); border-color: rgba(184,147,61,0.5); }

.header-map-btn {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center;
  transition: color 0.2s, border-color 0.2s;
}
.header-map-btn:hover { color: var(--primary); border-color: rgba(184,147,61,0.5); }

.menu-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--fg); padding: 0.25rem;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(20,20,20,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a   { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.2s; }
#mobile-menu a:hover { color: var(--primary); }

.mobile-ctas {
  display: flex; gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-ctas a {
  flex: 1; padding: 0.75rem 0.5rem;
  text-align: center; font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55; mix-blend-mode: overlay;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.8) 0%, rgba(20,20,20,0.35) 50%, rgba(20,20,20,1) 100%);
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: 2rem 1rem;
}

.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--primary);
  font-weight: 600; margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 8vw, 5rem);
  color: #fff; font-weight: 700;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-title .italic { color: var(--primary); font-style: italic; }

.hero-desc {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.8); font-weight: 300;
  line-height: 1.7; margin-bottom: 0.75rem;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

.hero-address {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.hero-address a { text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.hero-address a:hover { color: var(--primary); }

.hero-btns {
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px) {
  .hero-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.stat-val  { font-family: var(--font-serif); font-size: 1.4rem; color: var(--primary); margin-bottom: 0.2rem; }
.stat-label{ font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }
.stat-sub  { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.75); }

/* ---------- Phone Bar ---------- */
#phone-bar {
  background: var(--primary);
  padding: 1rem 0;
}
.phone-bar-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .phone-bar-inner { flex-direction: row; justify-content: space-between; }
}
.phone-bar-title { font-weight: 600; font-size: 1rem; color: var(--primary-fg); }
.phone-bar-sub   { font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(0,0,0,0.5); }
.phone-bar-btns  { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.phone-bar-btns a {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.25rem; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.phone-bar-btns a:hover { opacity: 0.85; }

/* ---------- Live Availability ---------- */
#live-avail {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.avail-box {
  display: flex; flex-direction: column; gap: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--primary-rgb, 200,170,100), 0.2);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .avail-box { flex-direction: row; align-items: center; justify-content: space-between; padding: 2rem; }
}
.avail-indicator {
  display: inline-block; width: 0.5rem; height: 0.5rem;
  background: #22c55e; border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  margin-right: 0.75rem;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.avail-title { font-family: var(--font-serif); font-size: 1.15rem; color: #fff; display: flex; align-items: center; margin-bottom: 0.3rem; }
.avail-sub   { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.slot-grid   { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot-btn {
  padding: 0.4rem 1rem;
  background: rgba(var(--primary-rgb,200,170,100),0.08);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb,200,170,100),0.3);
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.slot-btn:hover { background: var(--primary); color: var(--primary-fg); }

/* ---------- Features ---------- */
#features { padding: 4rem 0; }
@media (min-width: 768px) { #features { padding: 6rem 0; } }
.features-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.015);
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.035); }
.feature-icon { color: var(--primary); margin-bottom: 0.85rem; }
.feature-title { font-family: var(--font-serif); font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.feature-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; font-weight: 300; }

/* ---------- Conversion Strip ---------- */
.conv-strip {
  padding: 1.75rem 0;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.conv-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 768px) {
  .conv-inner { flex-direction: row; justify-content: space-between; }
  .conv-label { text-align: left; }
}
.conv-label {
  font-family: var(--font-serif); font-size: 1.1rem; color: rgba(255,255,255,0.8);
  text-align: center;
}
.conv-btns  { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

/* ---------- Offers ---------- */
#offers { padding: 4rem 0; }
@media (min-width: 768px) { #offers { padding: 6rem 0; } }
.offers-grid {
  display: grid; gap: 1rem; margin-bottom: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

.offer-card {
  padding: 1.5rem;
  border: 1px solid rgba(var(--primary-rgb,200,170,100),0.2);
  background: var(--bg);
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.offer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, rgba(var(--primary-rgb,200,170,100),0.5), rgba(8,94,65,0.5));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.offer-card:hover { border-color: rgba(var(--primary-rgb,200,170,100),0.5); }
.offer-card:hover::before { transform: scaleX(1); }

.offer-tag   { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.75rem; }
.offer-title { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.offer-desc  { color: rgba(255,255,255,0.55); font-size: 0.82rem; font-weight: 300; margin-bottom: 1.5rem; min-height: 2.5rem; }
.offer-btns  { display: flex; flex-direction: column; gap: 0.5rem; }

/* Countdown */
.countdown-box {
  background: linear-gradient(to right, rgba(8,94,65,0.15), transparent, rgba(8,94,65,0.15));
  border: 1px solid rgba(8,94,65,0.3);
  padding: 2rem; text-align: center;
  max-width: 800px; margin: 0 auto;
}
@media (min-width: 768px) { .countdown-box { padding: 3rem; } }
.countdown-title { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; margin-bottom: 1.5rem; }
.countdown-digits {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem;
}
.cd-unit  { text-align: center; }
.cd-num   { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); line-height: 1; }
@media (min-width: 640px) { .cd-num { font-size: 3.5rem; } }
.cd-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); }
.cd-sep   { font-size: 2rem; color: rgba(var(--primary-rgb,200,170,100),0.4); margin-bottom: 1.2rem; }
.countdown-desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 300; max-width: 520px; margin: 0 auto 1.5rem; }

/* ---------- Therapies ---------- */
#therapies { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
@media (min-width: 768px) { #therapies { padding: 6rem 0; } }
.therapy-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .therapy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .therapy-grid { grid-template-columns: repeat(3, 1fr); } }

.therapy-card { cursor: pointer; }
.therapy-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.25rem;
}
.therapy-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.therapy-card:hover .therapy-img-wrap img { transform: scale(1.05); }
.therapy-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.15) 50%, transparent 100%);
  opacity: 0.85;
}
.therapy-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: rgba(var(--primary-rgb,200,170,100),0.9);
  color: var(--primary-fg);
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}
.therapy-meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.25rem;
}
.therapy-duration {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.4rem;
}
.therapy-name { font-family: var(--font-serif); font-size: 1.35rem; color: #fff; }
.therapy-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 0.5rem; }
.therapy-best { font-size: 0.72rem; font-weight: 600; color: var(--primary); letter-spacing: 0.05em; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.3rem; }
.therapy-btns { display: flex; gap: 0.5rem; }
.therapy-btns a { flex: 1; padding: 0.55rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.3rem; transition: background 0.2s, color 0.2s; }
.therapy-btns .t-call    { border: 1px solid var(--primary); color: var(--primary); }
.therapy-btns .t-call:hover { background: var(--primary); color: var(--primary-fg); }
.therapy-btns .t-wa      { background: var(--secondary); color: #fff; }
.therapy-btns .t-wa:hover { opacity: 0.88; }
.therapy-btns .t-map     { border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); flex: 0 0 auto; padding: 0.55rem 0.7rem; }
.therapy-btns .t-map:hover { background: rgba(255,255,255,0.05); }

/* ---------- Gallery ---------- */
#gallery { padding: 4rem 0; background: #050505; }
@media (min-width: 768px) { #gallery { padding: 6rem 0; } }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }
  .gal-1 { grid-column: span 2; grid-row: span 2; }
  .gal-4 { grid-row: span 2; }
}
.gal-item {
  position: relative; overflow: hidden;
  cursor: pointer; min-height: 180px;
}
@media (min-width: 768px) { .gal-item { min-height: unset; } }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gal-item:hover img { transform: scale(1.1); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { font-family: var(--font-serif); color: #fff; font-size: 1rem; letter-spacing: 0.08em; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.96); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border: 1px solid rgba(255,255,255,0.08); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer; color: #fff; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--primary); }

/* ---------- Reviews ---------- */
#reviews { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
@media (min-width: 768px) { #reviews { padding: 6rem 0; } }
.review-carousel {
  overflow: hidden; cursor: grab; user-select: none; margin-bottom: 3rem;
}
.review-carousel.dragging { cursor: grabbing; }
.review-track { display: flex; gap: 0.75rem; transition: transform 0.4s ease; }
.review-card {
  flex: 0 0 85%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(var(--primary-rgb,200,170,100),0.2); }
@media (min-width: 640px)  { .review-card { flex: 0 0 55%; } }
@media (min-width: 768px)  { .review-card { flex: 0 0 calc(50% - 0.375rem); } }
@media (min-width: 1024px) { .review-card { flex: 0 0 calc(33.333% - 0.5rem); } }

.review-quote { position: absolute; top: 1rem; right: 1rem; opacity: 0.06; }
.review-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.review-stars svg { color: var(--primary); fill: var(--primary); }
.review-text { color: rgba(255,255,255,0.75); font-style: italic; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.9rem; }
.review-name { color: var(--primary); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; }
.review-verified { font-size: 0.65rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.2rem; }

.review-cta-box {
  border: 1px solid rgba(var(--primary-rgb,200,170,100),0.2);
  background: rgba(255,255,255,0.015);
  padding: 2rem 2.5rem; text-align: center;
}
.review-cta-box h3 { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.review-cta-box p  { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.review-cta-btns   { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 640px) { .review-cta-btns { flex-direction: row; justify-content: center; } }
.review-cta-btns a { padding: 0.85rem 2rem; font-size: 0.8rem; }

/* ---------- Stats Row ---------- */
#stats {
  padding: 4rem 0;
  background: rgba(8,94,65,0.08);
  border-top: 1px solid rgba(var(--primary-rgb,200,170,100),0.15);
  border-bottom: 1px solid rgba(var(--primary-rgb,200,170,100),0.15);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-num   { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); margin-bottom: 0.4rem; }
@media (min-width: 768px) { .stats-num { font-size: 3rem; } }
.stats-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); font-weight: 600; }

/* ---------- Benefits ---------- */
#benefits { padding: 4rem 0; }
@media (min-width: 768px) { #benefits { padding: 6rem 0; } }
.benefits-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.015); transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.03); }
.benefit-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
.benefit-title { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.benefit-desc  { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; font-weight: 300; }

/* ---------- Process ---------- */
#process {
  padding: 4rem 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (min-width: 768px) { #process { padding: 6rem 0; } }
.process-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card { }
.process-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4; margin-bottom: 0.75rem;
}
.process-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.process-card:hover .process-img-wrap img { transform: scale(1.05); }
.process-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.2) 50%, transparent 100%);
}
.process-num {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  font-family: var(--font-serif); font-size: 2rem; color: rgba(var(--primary-rgb,200,170,100),0.25); font-weight: 700; line-height: 1;
}
.process-step-title {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 0.75rem;
  font-family: var(--font-serif); font-size: 0.95rem; color: #fff; line-height: 1.2;
}
.process-desc  { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 0.6rem; display: none; }
@media (min-width: 640px) { .process-desc { display: block; } }
.process-cta   { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.process-cta:hover { gap: 0.55rem; }

/* ---------- FAQ ---------- */
#faq { padding: 4rem 0; }
@media (min-width: 768px) { #faq { padding: 6rem 0; } }
.faq-list { list-style: none; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0.25rem;
  font-family: var(--font-serif); font-size: 1rem; color: #fff;
  text-align: left; gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 300; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer-inner { padding: 0 0.25rem 0; }
.faq-links { display: flex; gap: 1.25rem; margin-top: 0.75rem; }
.faq-links a { font-size: 0.82rem; font-weight: 600; color: var(--primary); transition: text-decoration 0.2s; }
.faq-links a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
#contact { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
@media (min-width: 768px) { #contact { padding: 6rem 0; } }
.contact-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.form-group       { margin-bottom: 1.25rem; }
.form-row         { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label       { display: block; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.form-input,
.form-select,
.form-textarea    {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 0.75rem 1rem; font-size: 0.88rem;
  font-family: var(--font-sans); outline: none; transition: border-color 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--primary); }
.form-select { background: #111; appearance: none; cursor: pointer; }
.form-textarea { resize: none; }
.form-btn-row { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.form-btn-row a { flex: 1; padding: 0.7rem; font-size: 0.75rem; }

.info-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .info-cards { grid-template-columns: 1fr 1fr; } }
.info-card {
  display: flex; gap: 0.75rem; padding: 1.25rem;
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04);
}
.info-card-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
.info-card h4   { font-family: var(--font-serif); font-size: 0.95rem; color: #fff; margin-bottom: 0.4rem; }
.info-card p,
.info-card a    { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; }
.info-card a:hover { color: var(--primary); }
.info-card .nav-link { font-size: 0.72rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem; }
.map-frame-wrap { position: relative; flex: 1; min-height: 300px; border: 1px solid rgba(255,255,255,0.08); }
.map-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-cta {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 10;
  background: var(--primary); color: var(--primary-fg);
  padding: 0.85rem; text-align: center; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: opacity 0.2s;
}
.map-cta:hover { opacity: 0.88; }

/* ---------- Final CTA ---------- */
#final-cta {
  padding: 4rem 0; position: relative; overflow: hidden;
  background: var(--secondary); text-align: center;
}
@media (min-width: 768px) { #final-cta { padding: 6rem 0; } }
#final-cta::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 0; }
#final-cta > * { position: relative; z-index: 1; }
.final-cta-inner { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.final-cta-inner h2 { font-size: clamp(1.8rem, 5vw, 3.8rem); color: #fff; margin-bottom: 1rem; }
.final-cta-inner p  { font-size: clamp(0.88rem, 2vw, 1.1rem); color: rgba(255,255,255,0.75); font-weight: 300; max-width: 680px; margin: 0 auto 0.75rem; }
.final-cta-address { font-size: 0.78rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.final-cta-address a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.final-cta-address a:hover { color: var(--primary); }
.final-cta-btns { display: flex; flex-direction: column; gap: 0.65rem; }
@media (min-width: 640px) { .final-cta-btns { flex-direction: row; justify-content: center; } }
.final-cta-btns a { padding: 1rem 2rem; font-size: 0.82rem; }

/* ---------- Footer ---------- */
#footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
  text-align: center;
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-brand .logo-mark { font-size: 2rem; }
.footer-brand .logo-sub  { font-size: 0.65rem; margin-top: 0.25rem; color: rgba(255,255,255,0.35); }
.footer-desc { max-width: 480px; margin: 0 auto 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.7; }
.footer-info a, .footer-info p { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 0.35rem; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
.footer-info a:hover { color: var(--primary); }
.footer-info .pi { color: var(--primary); }
.footer-nav { display: flex; flex-wrap: justify-content: center; gap: 0.75rem 1.25rem; margin: 1.5rem auto; max-width: 640px; justify-content: center; }
.footer-nav a { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-nav a:hover { color: var(--primary); }
.footer-btns { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; margin-bottom: 2rem; }
@media (min-width: 640px) { .footer-btns { flex-direction: row; justify-content: center; } }
.footer-btns a { padding: 0.6rem 1.5rem; font-size: 0.72rem; }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.25); }
.footer-copy a { color: var(--primary); transition: opacity 0.2s; }
.footer-copy a:hover { opacity: 0.7; }

/* ---------- Floating Actions ---------- */
#floating-desktop {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 80;
  display: none; flex-direction: column; gap: 0.6rem;
}
@media (min-width: 768px) { #floating-desktop { display: flex; } }
.float-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 0.75rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s; box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.float-call  { background: var(--bg); border: 1px solid rgba(var(--primary-rgb,200,170,100),0.6); color: var(--primary); }
.float-call:hover { background: var(--primary); color: var(--primary-fg); }
.float-wa    { background: var(--whatsapp); color: #fff; box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.float-wa:hover { opacity: 0.88; }
.float-dir   { background: var(--bg); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.float-dir:hover { background: rgba(255,255,255,0.05); }

#mobile-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  display: flex;
  background: rgba(20,20,20,0.98); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { #mobile-bottom-bar { display: none; } }
.mob-bar-btn {
  flex: 1; padding: 0.85rem 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.mob-bar-btn:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }
.mob-call  { color: var(--primary); }
.mob-call:hover  { background: rgba(var(--primary-rgb,200,170,100),0.08); }
.mob-wa    { background: var(--whatsapp); color: #fff; }
.mob-wa:hover { opacity: 0.9; }
.mob-dir   { color: rgba(255,255,255,0.65); }
.mob-dir:hover { background: rgba(255,255,255,0.05); }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.08s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.16s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.24s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.32s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.40s; }
.stagger .fade-up:nth-child(7) { transition-delay: 0.48s; }
.stagger .fade-up:nth-child(8) { transition-delay: 0.56s; }
.stagger .fade-up:nth-child(9) { transition-delay: 0.64s; }

/* ---------- Misc ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.whatsapp-icon { color: var(--whatsapp); }
.text-muted { color: var(--fg-muted); }
.pb-mobile { padding-bottom: 5rem; }
@media (min-width: 768px) { .pb-mobile { padding-bottom: 0; } }

/* Section header */
.section-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }
.section-header .label-tag { margin-bottom: 0.6rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 600px; margin: 0 auto; }

/* Divider line accent */
.border-primary-subtle { border-color: rgba(var(--primary-rgb,200,170,100),0.2); }

/* Inline SVG icon sizing */
svg.icon-sm  { width: 1rem;   height: 1rem; }
svg.icon-md  { width: 1.25rem; height: 1.25rem; }
svg.icon-lg  { width: 1.5rem;  height: 1.5rem; }
svg.icon-xl  { width: 2rem;    height: 2rem; }
