/* ============================================================
   Metro Spa — Global Stylesheet  (Logo-matched theme)
   Copper Rose-Gold · Teal Green · Lavender · Warm Cream
   ============================================================ */

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

/* ── CSS Variables (derived from Metro Spa logo) ── */
:root {
  /* Rose-gold / copper — logo circle border & lotus */
  --copper:       #c9956a;
  --copper-light: #ddb090;
  --copper-dark:  #a0714a;
  --copper-glow:  rgba(201,149,106,0.30);

  /* Teal / sage green — logo cityscape & waves */
  --teal:         #4a7a6a;
  --teal-light:   #6b9d8e;
  --teal-dark:    #2e5246;
  --teal-muted:   #638c7e;

  /* Lavender — lotus inner petals */
  --lavender:     #c4b8d4;
  --lavender-deep:#9b8fb0;

  /* Neutrals */
  --cream:        #faf7f2;
  --warm-white:   #f5f0e8;
  --linen:        #ede8df;
  --charcoal:     #2c3a36;
  --soft-gray:    #7a8a84;
  --section-bg:   #f0ece2;

  /* Tokens */
  --gold:         var(--copper);
  --gold-light:   var(--copper-light);
  --gold-dark:    var(--copper-dark);
  --sage:         var(--teal);
  --sage-light:   var(--teal-light);
  --sage-dark:    var(--teal-dark);

  /* Borders, shadows */
  --border:       rgba(201,149,106,0.28);
  --border-teal:  rgba(74,122,106,0.20);
  --shadow:       0 8px 40px rgba(44,58,54,0.12);
  --shadow-copper:0 4px 24px rgba(201,149,106,0.32);
  --radius:       6px;
  --transition:   0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --ff-display:   'Cormorant Garamond', serif;
  --ff-body:      'Jost', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.gold { color: var(--copper); }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

/* ── Headings ── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--soft-gray);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ── Divider ── */
.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  margin: 18px auto 28px;
}
.divider-left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(74,122,106,0.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), #1e3a30);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,122,106,0.40);
}
.btn-outline {
  border: 1.5px solid var(--copper);
  color: var(--copper-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--copper);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--charcoal);
}
.btn-white:hover {
  background: var(--copper);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0px 0;
}
.navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(44,58,54,0.12);
  padding: 8px 0;
}
.navbar.light {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44,58,54,0.08);
}
.navbar.light.scrolled {
  background: rgba(250,247,242,0.99);
  box-shadow: 0 4px 30px rgba(44,58,54,0.12);
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  text-decoration: none;
}
.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.nav-logo .logo-main {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 1px;
}
.nav-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--soft-gray);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Hero nav links */
.navbar:not(.scrolled):not(.light) .nav-links a { color: rgba(0, 0, 0, 0.9); }
.navbar:not(.scrolled):not(.light) .nav-links a:hover { color: var(--copper-light); }

/* CTA buttons in nav */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: var(--transition);
}
.btn-call:hover { background: var(--linen); }
.navbar:not(.scrolled):not(.light) .btn-call {
  border-color: rgba(255,255,255,0.4);
  color: rgba(0, 0, 0, 0.9);
}
.navbar:not(.scrolled):not(.light) .btn-call:hover { background: rgba(255,255,255,0.14); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-wa:hover { background: #20b858; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar:not(.scrolled):not(.light) .hamburger span { background: rgba(255,255,255,0.90); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 36px 36px;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 40px rgba(44,58,54,0.14);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); }
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,82,70,0.50);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.70);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-main {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--copper-light);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: var(--copper); color: #fff; }
footer h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--copper-light); padding-left: 6px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.75); }
.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.footer-contact-info li i { color: var(--copper-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact-info a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.footer-contact-info a:hover { color: var(--copper-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.40); }
.footer-bottom a { color: var(--copper-light); }
.footer-bottom a:hover { color: var(--copper); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  animation: floatPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.float-wa:hover { transform: scale(1.12); animation-play-state: paused; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
.float-wa-label {
  position: absolute;
  right: 68px;
  background: var(--teal-dark);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.float-wa:hover .float-wa-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: none; }
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   SERVICE CARD
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 28px 28px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44,58,54,0.13);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .card-icon {
  width: 52px; height: 52px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.4s;
}
.service-card:hover .card-icon { background: var(--teal); color: #fff; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--soft-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-stars { color: var(--copper); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-white), var(--linen));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.testi-loc { font-size: 0.78rem; color: var(--soft-gray); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section { background: var(--teal-dark); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--copper-light);
  line-height: 1;
  display: block;
}
.stat-plus { font-size: 0.6em; vertical-align: super; }
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  display: block;
  font-weight: 400;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 50vh;
  min-height: 360px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1a3d30 50%, #2e5246 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='26' fill='none' stroke='rgba(201,149,106,0.08)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: 1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--copper-light); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--copper-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-muted) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(201,149,106,0.10)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-section .cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--section-bg);
  cursor: pointer;
}
.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, var(--warm-white), var(--section-bg));
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,82,70,0.72), rgba(201,149,106,0.45));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay i { font-size: 28px; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder i { font-size: 40px; color: var(--teal); opacity: 0.5; }
.gallery-placeholder span { font-size: 0.8rem; color: var(--soft-gray); letter-spacing: 1px; }

/* ============================================================
   FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,122,106,0.14);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-pad { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .float-wa { bottom: 20px; right: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


