/* Precision Aquatics — shared styles */

:root {
  --green-700: #4B9C00;
  --green-500: #76CE23;
  --green-400: #A8E60D;
  --green-100: #eef9e0;
  --blue-900: #003E8F;
  --blue-700: #0F6FBA;
  --blue-500: #2E8FD6;
  --blue-400: #0090D0;
  --blue-100: #e8f4fb;
  --ink: #17222b;
  --ink-soft: #4b5a63;
  --sand-50: #f7faf6;
  --white: #ffffff;
  --border: #e2e9e6;
  --shadow-sm: 0 1px 2px rgba(15, 40, 60, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 40, 60, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 40, 60, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --nav-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gradient-brand: linear-gradient(135deg, var(--green-500), var(--blue-700));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--blue-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

img { max-width: 100%; display: block; }

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

section { padding: 68px 0; }
@media (max-width: 720px) {
  section { padding: 44px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 36px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #25d366;
  color: #08210f;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: #1fbd5a; box-shadow: var(--shadow-lg); }

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-brand {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-brand:hover { box-shadow: var(--shadow-lg); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--blue-900);
  color: var(--blue-900);
}
.btn-outline-navy:hover { background: var(--blue-900); color: var(--white); }

.btn-navy {
  background: var(--blue-900);
  color: var(--white);
}
.btn-navy:hover { background: #002e6b; box-shadow: var(--shadow-md); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.whatsapp-icon { width: 18px; height: 18px; flex: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--border);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.brand img { height: 56px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover { background: var(--blue-100); color: var(--blue-900); }
.nav-links a[aria-current="page"] {
  color: var(--green-500);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    overflow-y: auto;
  }
  .nav-links a { padding: 16px; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-toggle { display: inline-flex; }
  .brand img { height: 46px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(1.02) contrast(1.06) saturate(1.12);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,20,45,0.05) 0%, rgba(0,20,45,0.14) 22%, rgba(0,20,45,0.5) 42%, rgba(0,20,45,0.66) 62%, rgba(0,20,45,0.82) 100%);
}
@media (max-width: 720px) {
  .hero-media::after {
    background: linear-gradient(180deg, rgba(0,20,45,0.18) 0%, rgba(0,20,45,0.42) 12%, rgba(0,20,45,0.62) 30%, rgba(0,20,45,0.72) 55%, rgba(0,20,45,0.86) 100%);
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 68px;
  max-width: 720px;
}
.hero h1 { color: var(--white); }
.hero-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.page-hero {
  position: relative;
  color: var(--white);
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-inner { padding-top: 48px; padding-bottom: 44px; max-width: 780px; }
.page-hero h1 { color: var(--white); }
.page-hero .hero-lede { font-size: 1.05rem; }

/* Intro */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .intro { grid-template-columns: 1fr; gap: 32px; }
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat-card {
  background: var(--green-100);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.stat-card span { font-size: 0.9rem; color: var(--ink-soft); }

/* Programme cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.prog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.prog-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-700);
}
.prog-icon svg { width: 24px; height: 24px; }
.prog-card h3 { margin-bottom: 8px; }
.prog-card p { margin-bottom: 0; font-size: 0.95rem; }
.prog-card a.card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-500);
  text-decoration: none;
}
.prog-card a.card-link:hover { text-decoration: underline; }

/* Why choose us */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reasons { grid-template-columns: 1fr; } }
.reason {
  padding: 4px;
}
.reason .check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.reason h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--blue-900); font-family: "Manrope", sans-serif;}
.reason p { font-size: 0.92rem; }

/* Section variants */
.section-tint { background: var(--sand-50); }
.section-navy {
  background: var(--blue-900);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.78); }

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  background-image: radial-gradient(circle at 85% 20%, rgba(118,206,35,0.28), transparent 55%);
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
@media (max-width: 720px) { .cta-band { padding: 32px 24px; flex-direction: column; align-items: flex-start; } }

/* Facility split */
.facility-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .facility-split { grid-template-columns: 1fr; gap: 32px; } }
.facility-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.facility-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.pool-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.pool-tag {
  background: var(--green-100);
  color: var(--blue-900);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--green-100);
  aspect-ratio: 4/5;
  border: none;
  padding: 0;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,20,45,0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: rgba(0,15,30,0.92);
  max-width: 92vw;
  max-height: 92vh;
  width: min(1100px, 92vw);
  border-radius: var(--radius-md);
}
.lightbox::backdrop { background: rgba(0,15,30,0.7); }
.lightbox-inner { position: relative; }
.lightbox img { width: 100%; height: auto; max-height: 84vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-cap {
  color: rgba(255,255,255,0.85);
  padding: 14px 8px 4px;
  font-size: 0.9rem;
  text-align: center;
}

/* FAQ */
.faq { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-weight: 700;
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-900);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-left: 16px;
}
.faq-item .plus::before, .faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--blue-900);
  transition: transform 0.3s var(--ease);
}
.faq-item .plus::before { width: 10px; height: 2px; }
.faq-item .plus::after { width: 2px; height: 10px; }
.faq-item[open] .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-item p { padding: 0 4px 22px; }

/* Programme detail rows */
.prog-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.prog-detail:last-of-type { border-bottom: none; }
@media (max-width: 780px) { .prog-detail { grid-template-columns: 1fr; gap: 20px; } }
.prog-detail-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: var(--green-500);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.prog-meta { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.prog-meta-row { display: flex; gap: 12px; font-size: 0.92rem; }
.prog-meta-row .label { flex: none; width: 120px; font-weight: 700; color: var(--blue-900); }
.prog-meta-row .value { color: var(--ink-soft); }

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .icon svg { width: 22px; height: 22px; }
.contact-row h4 { margin: 0 0 4px; font-size: 1rem; color: var(--blue-900); }
.contact-row p { margin: 0; font-size: 0.93rem; }
.contact-row a.plain { text-decoration: none; font-weight: 600; color: var(--blue-900); }
.contact-row a.plain:hover { color: var(--green-500); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* Contact form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--sand-50);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; margin-bottom: 0; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fdecea; color: #9c2b1f; }

/* Newsletter */
.newsletter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.newsletter-issue {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.newsletter-issue:last-child { border-bottom: none; }
.newsletter-issue .date-badge {
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
}
.newsletter-issue .date-badge span { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.newsletter-issue .date-badge strong { font-size: 1.3rem; }
.newsletter-issue h3 { margin-bottom: 4px; }
.newsletter-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--ink-soft);
}
.newsletter-placeholder strong { display: block; color: var(--blue-900); margin-bottom: 8px; font-family: "Manrope", sans-serif; }
.signup-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.signup-inline input {
  flex: 1;
  min-width: 220px;
  font: inherit;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--sand-50);
}
.signup-inline input:focus { outline: none; border-color: var(--blue-500); background: var(--white); }

/* Placeholder note badge */
.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff6e0;
  border: 1px solid #f0dca3;
  color: #7a5b06;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand span { font-family: "Manrope", sans-serif; font-weight: 700; color: var(--white); font-size: 1.15rem; }
.site-footer h5 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.93rem; }
.site-footer a:hover { color: var(--white); }
.site-footer p { color: rgba(255,255,255,0.75); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: default;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* WhatsApp float button */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 36px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
