/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Color System */
  --navy-900: #050d1a;
  --navy-800: #0a1628;
  --navy-700: #0f2240;
  --navy-600: #163058;
  --navy-500: #1e3a5f;
  --navy-400: #2a5080;

  --aqua-600: #0284c7;
  --aqua-500: #0ea5e9;
  --aqua-400: #38bdf8;
  --aqua-300: #7dd3fc;
  --aqua-100: #e0f2fe;

  --orange-600: #ea6c00;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-100: #fff7ed;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50:  #f8fafc;

  --success-500: #22c55e;
  --warning-500: #f59e0b;
  --error-500:   #ef4444;

  --white: #ffffff;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;

  /* Spacing (8px base) */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;
  --space-8:  64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;

  /* Layout */
  --container:     1200px;
  --header-height: 72px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.16);

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--aqua-500);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--aqua-600); }

ul { list-style: none; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-12) 0;
}

.section--light { background: var(--gray-50); }
.section--dark  { background: var(--navy-800); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-8);
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-top: var(--space-2);
}

.section-header--light p { color: var(--gray-300); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-500);
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-2);
}

.section-label--light {
  color: var(--aqua-300);
  background: rgba(125,211,252,.1);
  border-color: rgba(125,211,252,.2);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-800);
  margin-top: var(--space-1);
}

.section--dark h2 { color: var(--white); }

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-700);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.btn--primary {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.btn--primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(249,115,22,.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy-600);
  border-color: var(--gray-300);
}

.btn--ghost:hover {
  background: var(--gray-100);
  color: var(--navy-700);
  transform: translateY(-1px);
}

.btn--lg { padding: 15px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.site-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--navy-600);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
  color: var(--navy-800);
  background: var(--gray-100);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(249,115,22,.3);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-600);
  box-shadow: 0 5px 20px rgba(249,115,22,.5);
  transform: translateY(-1px);
}

.header-cta__icon { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-3);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: var(--orange-500) !important;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px !important;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

/* ============================================================
   FLOATING MOBILE CTA
============================================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--orange-500);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(249,115,22,.55);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}

.floating-cta:hover {
  background: var(--orange-600);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,.65);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(249,115,22,.55); }
  50%       { box-shadow: 0 8px 48px rgba(249,115,22,.75); }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 13, 26, 0.94) 0%,
    rgba(10, 22, 40, 0.88) 45%,
    rgba(14, 165, 233, 0.18) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua-300);
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--aqua-300);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero__props {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.hero__props li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero__props li svg {
  color: var(--aqua-400);
  flex-shrink: 0;
}

.hero__link a {
  color: var(--aqua-300);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.hero__link a:hover { color: var(--white); }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-img__badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-img__badge strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-700);
}

.about-text h2 { margin-bottom: var(--space-3); }

.about-text p {
  color: var(--gray-600);
  margin-bottom: var(--space-2);
  line-height: 1.75;
}

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

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(14,165,233,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--aqua-600), var(--aqua-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,165,233,.35);
}

.why-card h3 {
  color: var(--white);
  margin-bottom: var(--space-1);
  font-size: 1.05rem;
}

.why-card p {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-3);
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.04), rgba(249,115,22,.03));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--aqua-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--aqua-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-600);
  transition: all var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--aqua-600), var(--aqua-500));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,165,233,.35);
}

.service-card h3 {
  color: var(--navy-700);
  font-size: 1rem;
  transition: color var(--transition);
  position: relative;
}

.service-card:hover h3 { color: var(--navy-800); }

.service-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  position: relative;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--aqua-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover .service-card__link {
  color: var(--orange-500);
  gap: 8px;
}

/* ============================================================
   SERVICE DETAIL SECTIONS
============================================================ */
.service-details { background: var(--white); }

.service-detail {
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail--alt { background: var(--gray-50); }

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.service-detail__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: var(--space-3);
}

.service-detail__text p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.service-detail__text a:not(.btn) {
  color: var(--aqua-500);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.service-detail__text a:not(.btn):hover {
  border-color: var(--aqua-500);
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.service-detail__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-detail__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail__img:hover img { transform: scale(1.03); }

/* ============================================================
   SERVICE AREAS
============================================================ */
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-8);
  align-items: start;
}

.areas-list h3 {
  font-size: 1.2rem;
  color: var(--navy-700);
  margin-bottom: var(--space-3);
}

.neighborhood-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1) var(--space-2);
  margin-bottom: var(--space-3);
}

.neighborhood-list li {
  position: relative;
  padding-left: 18px;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.neighborhood-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua-500);
}

.areas-note {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: var(--space-2);
  background: var(--aqua-100);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--aqua-500);
}

.areas-note a {
  font-weight: 700;
}

.areas-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--white);
  outline: 1px solid var(--gray-200);
}

/* ============================================================
   FAQs
============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.faq-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(14,165,233,.4);
  background: rgba(14,165,233,.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--aqua-300); }

.faq-icon {
  flex-shrink: 0;
  color: var(--aqua-400);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 var(--space-4) var(--space-3);
  overflow: hidden;
}

.faq-answer p {
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--aqua-400);
  font-weight: 600;
}

/* ============================================================
   CONTACT
============================================================ */
.section--contact {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  padding: var(--space-12) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.contact-info > p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(14,165,233,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-400);
  flex-shrink: 0;
}

.contact-details li > div {
  display: flex;
  flex-direction: column;
}

.contact-details li strong {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-details li a,
.contact-details li span {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
}

.contact-details li a:hover { color: var(--aqua-300); }

.contact-call-btn { font-size: 1.1rem; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-700);
}

.form-group label span[aria-hidden] { color: var(--error-500); margin-left: 2px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--aqua-500);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
  background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error-500);
}

.form-error {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--error-500);
  display: none;
}

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

/* Checkbox */
.form-group--checkbox { flex-direction: row; align-items: flex-start; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.5;
  width: 100%;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--aqua-500);
  border-color: var(--aqua-500);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(14,165,233,.2);
}

.form-group--checkbox .form-error {
  margin-left: 32px;
  margin-top: -8px;
  display: none;
}

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

/* Form Success */
.form-success {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.form-success svg { color: var(--success-500); }

.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy-700);
}

.form-success p { color: var(--gray-500); }

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: var(--space-10) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-2);
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-2);
}

.footer-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange-400) !important;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--orange-500) !important; }

.footer-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45) !important;
}

.footer-nav h4,
.footer-services h4,
.footer-contact h4,
.footer-legal h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.footer-nav ul li,
.footer-services ul li,
.footer-legal ul li {
  margin-bottom: 8px;
}

.footer-nav a,
.footer-services a,
.footer-legal a {
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-services a:hover,
.footer-legal a:hover {
  color: var(--aqua-300);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
}

.footer-contact-list li svg {
  color: var(--aqua-400);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-list a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--aqua-300); }

.footer-bottom {
  padding: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255,255,255,.38);
  max-width: 900px;
}

.footer-disclaimer strong { color: rgba(255,255,255,.5); }

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   LEAFLET MAP OVERRIDE
============================================================ */
.leaflet-container {
  font-family: var(--font-body);
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================================
   ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
============================================================ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .floating-cta { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .about-img img { height: 340px; }

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

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

  .service-detail__inner {
    grid-template-columns: 1fr;
  }

  .service-detail--alt .service-detail__inner .service-detail__img {
    order: -1;
  }

  .areas-layout { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
============================================================ */
@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }

  .section { padding: var(--space-8) 0; }

  .hero__title { font-size: 2.4rem; }
  .hero__headline { font-size: 1.25rem; }
  .hero__sub { font-size: 1rem; }
  .hero__actions { flex-direction: column; }

  .why-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .neighborhood-list { grid-template-columns: 1fr; }

  .service-detail__img img { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: var(--space-3); }

  .hero__props { flex-direction: column; gap: var(--space-2); }

  .btn--lg { padding: 13px 24px; font-size: 1rem; }

  #map { height: 340px !important; }

  .floating-cta { bottom: 16px; padding: 13px 28px; font-size: 0.95rem; }

  body { padding-bottom: 80px; }
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  .site-header,
  .floating-cta,
  .nav-toggle,
  #map { display: none; }
  body { padding-bottom: 0; }
}
