/* ═══════════════════════════════════════════════════════════════
   ESCAPE POOL SERVICES — Stylesheet
   Color palette derived from brand logo
   ═══════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --navy: #1B2D4B;
  --navy-dark: #0F1F33;
  --navy-light: #2A4165;
  --teal: #4BA8A8;
  --teal-dark: #3D8F8F;
  --teal-light: #6BC4C4;
  --teal-pale: #E0F2F2;
  --cream: #F5F0E8;
  --cream-light: #FAF8F4;
  --white: #FFFFFF;
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --gold-dark: #B8913A;
  --text: #2D3748;
  --text-light: #718096;
  --text-muted: #A0AEC0;
  --shadow-sm: 0 1px 3px rgba(27,45,75,0.08);
  --shadow-md: 0 4px 16px rgba(27,45,75,0.10);
  --shadow-lg: 0 12px 40px rgba(27,45,75,0.14);
  --shadow-xl: 0 20px 60px rgba(27,45,75,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── Utility ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-teal { color: var(--teal); }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(75,168,168,0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75,168,168,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212,168,83,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,168,83,0.55);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 72px;
  width: auto;
  transition: all var(--transition);
  /* Brighten to white on dark hero background */
  filter: brightness(0) invert(1);
}

/* Scrolled state — show original brand colors on cream */
.site-header.scrolled .logo-img {
  height: 52px;
  filter: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: var(--white);
  position: relative;
}

.site-header.scrolled .nav-link { color: var(--navy); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover { color: var(--teal); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .header-phone { color: var(--navy); }
.header-phone:hover { color: var(--teal); }

.header-cta {
  background: var(--teal);
  color: var(--white) !important;
}
.header-cta:hover {
  background: var(--teal-dark);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header.scrolled .hamburger-line { background: var(--navy); }

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 35%, var(--navy-light) 60%, var(--teal-dark) 85%, var(--teal) 100%);
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(75,168,168,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(75,168,168,0.15) 0%, transparent 70%);
}

/* ─── Caustics canvas ─── */
.hero-caustics {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  image-rendering: auto;
  z-index: 1;
}

.hero-caustics.active {
  opacity: 1;
}

/* ─── Crack reveal overlay ─── */
.crack-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.crack-overlay.dissolving {
  animation: crack-dissolve 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.crack-overlay.done { display: none; }

@keyframes crack-dissolve {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.crack-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 20%, var(--teal-light) 40%, var(--white) 50%, var(--teal-light) 60%, var(--teal) 80%, transparent 100%);
  border-radius: 2px;
  box-shadow:
    0 0 20px rgba(75,168,168,0.8),
    0 0 60px rgba(75,168,168,0.5),
    0 0 120px rgba(75,168,168,0.3);
}

.crack-line.animating {
  animation: crack-expand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes crack-expand {
  0% { width: 0; opacity: 0; height: 2px; }
  15% { width: 0; opacity: 1; height: 2px; }
  70% { height: 3px; }
  100% { width: 120vw; opacity: 1; height: 3px; }
}

.crack-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(75,168,168,0.35) 0%, rgba(75,168,168,0.1) 40%, transparent 70%);
  opacity: 0;
}

.crack-glow.animating {
  animation: glow-expand 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes glow-expand {
  0% { width: 0; height: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { width: 200vw; height: 200vh; opacity: 0; }
}

/* Light rays emanating from crack */
.crack-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, rgba(107,196,196,0.6), transparent);
  transform-origin: top center;
  opacity: 0;
}

.ray.animating {
  animation: ray-shoot 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ray:nth-child(1) { transform: translate(-50%, 0) rotate(-70deg); animation-delay: 0.35s; }
.ray:nth-child(2) { transform: translate(-50%, 0) rotate(-30deg); animation-delay: 0.4s; }
.ray:nth-child(3) { transform: translate(-50%, 0) rotate(10deg); animation-delay: 0.45s; }
.ray:nth-child(4) { transform: translate(-50%, 0) rotate(40deg); animation-delay: 0.5s; }
.ray:nth-child(5) { transform: translate(-50%, 0) rotate(70deg); animation-delay: 0.38s; }
.ray:nth-child(6) { transform: translate(-50%, 0) rotate(-50deg); animation-delay: 0.42s; }

@keyframes ray-shoot {
  0% { height: 0; opacity: 0; }
  30% { opacity: 0.6; }
  100% { height: 60vh; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(212,168,83,0.4);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,168,83,0.4); }
  50% { box-shadow: 0 4px 30px rgba(212,168,83,0.65); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: var(--teal-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 400;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 120px;
}

/* Hero entry animations — delayed to start after crack reveal */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in:nth-child(1) { animation-delay: 1.6s; }
.animate-in:nth-child(2) { animation-delay: 1.75s; }
.animate-in:nth-child(3) { animation-delay: 1.9s; }
.animate-in:nth-child(4) { animation-delay: 2.05s; }
.animate-in:nth-child(5) { animation-delay: 2.2s; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-tag--light { color: var(--teal-light); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title--light { color: var(--white); }

.section-wave {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.section-divider svg {
  width: 100%;
  height: 60px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--cream);
  padding-bottom: 140px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  border: 1px solid rgba(27,45,75,0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 2px solid var(--teal);
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--white) 40%);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-price {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.service-price strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
}

.service-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-price--free {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.05rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════════════ */
.why-us {
  background: var(--navy);
  padding-bottom: 140px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.trust-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(75,168,168,0.3);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.trust-icon svg { width: 100%; height: 100%; }

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.cta-inline {
  text-align: center;
}

.cta-inline p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════════════════════════ */
.areas {
  background: var(--cream);
  padding-bottom: 140px;
}

.areas-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.areas-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27,45,75,0.06);
  position: relative;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.area-pin {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
}

.area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.area-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.areas-zips {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(27,45,75,0.06);
}

.areas-zips h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.zip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.zip-badge {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.areas-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   PROMOTIONS
   ═══════════════════════════════════════════════════════════════ */
.promos {
  background: var(--cream-light);
  padding-bottom: 140px;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.promo-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(75,168,168,0.1);
}

.promo-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(212,168,83,0.08);
}

.promo-card--alt {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 100%);
}

.promo-ribbon {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.promo-amount {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.promo-amount span {
  font-size: 2.5rem;
  vertical-align: super;
}

.promo-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.promo-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.promo-card .btn {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--navy);
  padding-bottom: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--teal-light); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(75,168,168,0.2);
}

/* Floating labels */
.form-group label {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 14px;
  font-size: 0.75rem;
  color: var(--teal-light);
  background: var(--navy);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Select label - special handling since select can't use :placeholder-shown */
.form-group select ~ label {
  top: 16px;
}

.form-group select:focus ~ label,
.form-group select.has-value ~ label {
  top: -10px;
  left: 14px;
  font-size: 0.75rem;
  color: var(--teal-light);
  background: var(--navy);
  padding: 2px 6px;
  border-radius: 3px;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #FC8181;
  margin-top: 6px;
  padding-left: 4px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #FC8181;
}

.form-group.error .form-error { display: block; }

.form-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 16px;
}

/* Submit button states */
.btn-loading { display: none; }

.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 5;
}

.form-success.show {
  display: flex;
  animation: fade-in 0.5s ease;
}

.form-success h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 20px 0 12px;
}

.form-success p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(1.1);
}

.footer-tagline {
  color: var(--teal-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--teal-light); }

.footer-col li:not(:has(a)) {
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 10px 16px;
  gap: 10px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
}

.mobile-cta-call {
  background: var(--teal);
  color: var(--white);
}

.mobile-cta-quote {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-layout { grid-template-columns: 1fr; gap: 32px; }
  .areas-cities { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 80px 0; }

  /* Header mobile */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .header-nav.open {
    transform: translateX(0);
  }

  .header-nav .nav-link {
    color: var(--white);
    font-size: 1.3rem;
    padding: 16px 32px;
  }

  .header-actions { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-toggle.active .hamburger-line { background: var(--white); }

  /* Hero mobile */
  .hero { min-height: auto; padding: 140px 20px 120px; }
  .hero-wave svg { height: 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }

  /* Services mobile */
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Trust mobile */
  .trust-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }

  /* Areas mobile */
  .areas-cities { grid-template-columns: repeat(2, 1fr); }

  /* Promos mobile */
  .promos-grid { grid-template-columns: 1fr; }

  /* Contact mobile */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }

  /* Add bottom padding for CTA bar */
  .site-footer { padding-bottom: 80px; }

  .section-divider svg { height: 40px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .promo-badge { font-size: 0.75rem; padding: 8px 16px; }
  .promo-amount { font-size: 4rem; }
  .areas-cities { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════ */
@media print {
  .site-header, .hero-bg, .hero-wave, .section-divider,
  .mobile-cta-bar, .mobile-toggle, .hero-particles { display: none; }
  .hero { min-height: auto; padding: 40px 0; background: none; }
  .hero-title, .hero-subtitle { color: #000; }
  .section { padding: 40px 0; break-inside: avoid; }
  .why-us, .contact { background: none; }
  .section-title--light, .trust-card h3, .trust-card p,
  .contact-info h3, .contact-info p { color: #000; }
}
