/* ============================================================
   ProWash Water/Glass Theme — Rebuilt from preview HTML files
   Fonts: Quicksand (body), Cormorant Garamond (display)
   ============================================================ */

/* ========================================
   @FONT-FACE
   ======================================== */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/quicksand-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --water-50: #f0f9ff;
  --water-100: #e0f2fe;
  --water-200: #bae6fd;
  --water-300: #7dd3fc;
  --water-400: #38bdf8;
  --water-500: #0ea5e9;
  --water-600: #0284c7;
  --water-700: #0369a1;
  --water-deep: #0c4a6e;
  --maroon: #9f1d14;
  --maroon-light: #b93028;
  --white: #ffffff;
  --cloud: #f8fbff;
  --mist: #eef5fc;
  --slate: #475569;
  --slate-light: #94a3b8;
  --navy: #0f2b4a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Quicksand', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --glass: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.6);
  --glass-strong: rgba(255,255,255,0.75);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--cloud);
  color: var(--slate);
  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 { font-family: var(--font-body); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ========================================
   WATER DROPLET DECORATION
   ======================================== */
.droplet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.25), rgba(14,165,233,0.08));
  pointer-events: none;
  z-index: 0;
}
.droplet::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 20%;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  filter: blur(1px);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 8px 0;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  gap: 16px;
  align-items: center;
}
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar a {
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  text-decoration: none;
}
.topbar a:hover { color: var(--water-300); }
.topbar-phone { font-weight: 700; color: #fff !important; font-size: 14px; letter-spacing: 0.3px; }
.topbar-phone-icon { color: #EA4335 !important; width: 14px; height: 14px; vertical-align: -2px; flex-shrink: 0; }
.topbar-badge {
  background: var(--maroon);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.topbar-stars-svg {
  width: 80px;
  height: 14px;
  vertical-align: middle;
  flex-shrink: 0;
}
.google-text { font-weight: 700; }
.g-b { color: #4285F4; }
.g-r { color: #EA4335; }
.g-y { color: #FBBC05; }
.g-g { color: #34A853; }
@media (max-width: 600px) {
  .topbar-left span:first-child { display: none; }
  .topbar-inner { justify-content: space-between; }
}

/* ========================================
   NAVBAR
   ======================================== */
.nav-phone {
  color: var(--maroon) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em;
}
.nav-phone:hover { color: var(--maroon-light) !important; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.topbar {
  transition: background 0.35s var(--ease);
}
.navbar {
  padding: 14px 0;
  transition: all 0.35s var(--ease);
}
/* When scrolled: frosted glass on navbar area */
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.55);
}
.site-header.scrolled .topbar {
  background: var(--navy);
}
.site-header.scrolled .navbar {
  background: rgba(159,29,20,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-full {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--maroon); }
.page-home .nav-links a { color: #fff; }
.page-home .nav-links a:hover { color: rgba(255,255,255,0.7); }
.site-header.scrolled .nav-links a { color: #fff; }
.site-header.scrolled .nav-links a:hover { color: rgba(255,255,255,0.7); }
.nav-cta {
  background: linear-gradient(135deg, var(--water-500), var(--water-600)) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 15px rgba(14,165,233,0.25);
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(14,165,233,0.35) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.page-home .nav-toggle span { background: #fff; }
.site-header.scrolled .nav-toggle span { background: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(159,29,20,0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.55);
    border-radius: 0 0 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 0; font-size: 16px; color: #fff !important; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
}
.btn-water {
  background: linear-gradient(135deg, var(--water-500), var(--water-600));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(14,165,233,0.3);
}
.btn-water:hover {
  box-shadow: 0 10px 32px rgba(14,165,233,0.4);
  transform: translateY(-2px);
}
.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(159,29,20,0.2);
}
.btn-maroon:hover {
  background: var(--maroon-light);
  box-shadow: 0 10px 32px rgba(159,29,20,0.3);
  transform: translateY(-2px);
}
.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--navy);
  border: 1px solid var(--glass-border);
}
.btn-glass:hover {
  background: var(--glass-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.12);
}

/* ========================================
   HOME: HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,25,47,0.55) 0%, rgba(10,25,47,0.45) 40%, rgba(10,25,47,0.4) 100%);
}
.hero-spray {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-spray svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 160px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Hero Form */
.hero-form {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.hero-form::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(56,189,248,0.2), transparent 70%);
  pointer-events: none;
}
.hero-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.hero-form .form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  opacity: 1;
  margin-bottom: 22px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s;
  outline: none;
  appearance: none;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.5); }
.hero-form select option { color: #1a1a2e; background: #fff; }
.hero-form input:focus,
.hero-form select:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.hero-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.hero-form .form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.hero-form .form-note svg { vertical-align: -2px; margin-right: 4px; }

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: #ff6b6b;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  opacity: 1;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  opacity: 1;
}
.hero-trust-item svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }

@media (max-width: 767px) {
  .hero-content { padding: 100px 0 120px; }
  .hero-bg img { opacity: 0.5; mix-blend-mode: normal; filter: brightness(0.7) saturate(1.1); }
  .hero-bg::after { background: linear-gradient(160deg, rgba(10,25,47,0.5) 0%, rgba(10,25,47,0.35) 100%); }
  .hero-form { padding: 28px 22px; }
  .hero-form h3 { font-size: 22px; }
}

/* ========================================
   HOME: STATS (glass bar)
   ======================================== */
.stats-section {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding: 0 28px;
}
.stats-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(15,43,74,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15,43,74,0.3);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 12px 40px rgba(12,74,110,0.08);
  overflow: hidden;
  position: relative;
}
.stats-bar .droplet { width: 60px; height: 60px; top: -10px; right: 40px; }
.stat-item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--water-200), transparent);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

/* ========================================
   SECTIONS (shared)
   ======================================== */
.section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.section-title, h2 {
  color: var(--maroon);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--maroon);
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 520px;
  line-height: 1.8;
}

/* Section Header (reusable) */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.section-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-header h2 em { font-style: italic; color: var(--maroon); }
.section-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Water wave divider */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-desc { font-size: 15px; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .cta-section { padding: 60px 0; }
}

/* ========================================
   HOME: SERVICES
   ======================================== */
.services-section { background: var(--cloud); }
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(12,74,110,0.15), 0 4px 12px rgba(12,74,110,0.08);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(12,74,110,0.2), 0 8px 20px rgba(12,74,110,0.1);
  transform: translateY(-4px);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.6s;
  filter: brightness(0.8) saturate(1.1);
}
.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1.2);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,43,74,0.85) 0%, rgba(15,43,74,0.2) 50%, transparent 100%);
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  z-index: 4;
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }
.service-card .card-droplet {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card .card-droplet svg { opacity: 0.7; transition: opacity 0.3s; }
.service-card:hover .card-droplet {
  background: var(--maroon);
  border-color: var(--maroon);
}
.service-card:hover .card-droplet svg { opacity: 1; }
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
}
.service-card:hover p { max-height: 80px; opacity: 1; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .service-card { height: 340px; }
}

/* ========================================
   HOME: WHY US
   ======================================== */
.why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,242,254,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12,74,110,0.18), 0 8px 20px rgba(12,74,110,0.08);
}
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12,74,110,0.1);
}
.why-image-badge .big {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.why-image-badge .small {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
.why-features { display: flex; flex-direction: column; gap: 8px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.why-feature:hover {
  background: var(--water-50);
}
.why-feature::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--water-300);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-feature:hover::after { opacity: 1; }
.why-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--water-600);
}
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image img { height: 340px; }
}
@media (max-width: 600px) {
  .why-image img { height: 240px; }
}

/* ========================================
   HOME: GALLERY
   ======================================== */
.gallery-section {
  background: transparent;
  position: relative;
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-header .section-desc { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-card:hover {
  box-shadow: 0 20px 56px rgba(12,74,110,0.2), 0 8px 20px rgba(12,74,110,0.1);
  transform: translateY(-3px);
}
.gallery-card:first-child { grid-row: span 2; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
  display: none;
}
.gallery-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:first-child { grid-row: auto; }
}

/* ========================================
   HOME: REVIEWS
   ======================================== */
.reviews-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,242,254,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.reviews-header .section-desc { margin: 0 auto; }
.reviews-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.reviews-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.reviews-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  padding: 36px 28px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,74,110,0.12), 0 8px 20px rgba(14,165,233,0.06);
  border-color: var(--water-200);
}
.review-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.review-card:hover::before { opacity: 1; }
.review-card::after {
  content: '';
  position: absolute;
  top: 16px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.2), rgba(14,165,233,0.06));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.review-card:hover::after { opacity: 1; }
.review-card .card-drop {
  position: absolute;
  top: -8px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(56,189,248,0.3), rgba(14,165,233,0.08));
  opacity: 0;
  transition: opacity 0.3s;
}
.review-card .card-drop::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
.review-card:hover .card-drop { opacity: 1; }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars span {
  font-size: 18px;
  color: var(--maroon);
}
.review-text {
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.review-text::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--water-200);
  position: absolute;
  top: -18px;
  left: -4px;
  line-height: 1;
  z-index: -1;
  opacity: 0.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-author-info {
  display: flex;
  flex-direction: column;
}
.review-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.review-author-source {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-light);
}
.review-name { font-weight: 600; font-size: 15px; color: var(--navy); }
.review-source { font-size: 12px; color: var(--slate-light); }
.review-location {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 2px;
}
.review-card blockquote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   HOME: FAQ
   ======================================== */
.faq-section {
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,242,254,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(186,230,253,0.3);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
  box-shadow: 0 4px 16px rgba(12,74,110,0.04);
}
.faq-item.active {
  background: rgba(159,29,20,0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(159,29,20,0.3);
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
}
.faq-item .faq-drop {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--water-300);
  opacity: 0;
  transition: opacity 0.3s;
}
.faq-item:hover .faq-drop { opacity: 0.5; }
.faq-item:hover { border-color: var(--water-200); box-shadow: 0 10px 32px rgba(12,74,110,0.08), 0 4px 12px rgba(14,165,233,0.05); }
.faq-item.active:hover { border-color: rgba(159,29,20,0.3); box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
  line-height: 1.4;
}
.faq-toggle:hover { color: var(--water-600); }
.faq-icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.faq-item.active .faq-icon-wrap {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
}
.faq-icon {
  flex-shrink: 0;
  color: var(--water-600);
  transition: transform 0.3s var(--ease), color 0.3s;
  width: 14px;
  height: 14px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-toggle { color: #fff; }
.faq-item.active .faq-answer {
  border-radius: 0 0 16px 16px;
}
.faq-answer p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  margin: 0 26px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ========================================
   HOME: AREAS
   ======================================== */
.areas-section { background: var(--white); }
.areas-header { text-align: center; margin-bottom: 48px; }
.areas-header .section-desc { margin: 0 auto; }
.areas-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.areas-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.areas-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.areas-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.area-tag {
  background: var(--glass-strong);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(186,230,253,0.25);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.area-tag:hover {
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-color: var(--water-300);
  color: var(--water-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12,74,110,0.1), 0 4px 10px rgba(14,165,233,0.06);
}
.area-tag .tag-county {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-light);
  margin-left: 6px;
}

@media (max-width: 700px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   HOME: CTA
   ======================================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--water-deep) 0%, var(--navy) 50%, #0a1f38 100%);
}
.cta-spray {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}
.cta-spray svg { display: block; width: 100%; height: 60px; }
.cta-bubbles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-bubbles-canvas canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-content h2 em { font-style: italic; color: #f0a584; }
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  display: block;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--water-300);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.cta-phone:hover { color: var(--white); }

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #e0f2fe 0%, #bae6fd 40%, #7dd3fc 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,29,20,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0; z-index: 2;
}
.page-hero-wave svg { display: block; width: 100%; height: 60px; }
.page-hero .breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--water-deep);
  opacity: 0.6;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--water-deep); }
.page-hero .breadcrumb a:hover { color: var(--maroon); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--maroon); }
.page-hero p {
  font-size: 17px;
  color: var(--water-deep);
  opacity: 0.7;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative; z-index: 1;
}

/* ========================================
   CTA STRIP (subpages)
   ======================================== */
.cta-strip {
  padding: 80px 0;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,34,20,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative; z-index: 1;
}
.cta-strip h2 em { font-style: italic; color: var(--maroon); }
.cta-strip p {
  font-size: 17px;
  color: var(--slate);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ========================================
   ABOUT: OUR STORY
   ======================================== */
.our-story {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.our-story::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(12,74,110,0.14), 0 8px 20px rgba(12,74,110,0.06);
}
.story-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.story-image-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(12,74,110,0.08);
}
.story-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.story-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.story-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-content p strong { color: var(--navy); }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-image img { height: 300px; }
}

/* ========================================
   ABOUT: STATS BAR (dark)
   ======================================== */
.stats-bar-dark {
  padding: 60px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.stats-bar-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: rgba(15,43,74,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15,43,74,0.3);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.stat-card:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12,74,110,0.3);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.stat-card .stat-number {
  color: #fff;
}
.stat-card .stat-label {
  color: rgba(255,255,255,0.85);
}
.stat-number span { color: var(--water-300); }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* ========================================
   ABOUT: WHAT SETS US APART
   ======================================== */
.sets-apart {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.sets-apart::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.sets-apart-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.sets-apart-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.sets-apart-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.sets-apart-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.sets-apart-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.apart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.apart-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.2);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.apart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,74,110,0.1);
  border-color: var(--water-200);
}
.apart-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.apart-card:hover::before { opacity: 1; }
.apart-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.apart-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.apart-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .apart-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   ABOUT: OUR PROMISE
   ======================================== */
.our-promise {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.promise-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promise-images .promise-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12,74,110,0.1);
  position: relative;
}
.promise-images .promise-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.promise-images .promise-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,43,74,0.7), transparent);
  padding: 12px 14px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.promise-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.promise-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.promise-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.promise-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.promise-item-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--water-600);
}
.promise-item span {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  padding-top: 6px;
}
.promise-item strong { color: var(--navy); }

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; gap: 36px; }
  .promise-images .promise-img img { height: 180px; }
}

/* ========================================
   SERVICES: OVERVIEW GRID
   ======================================== */
.services-overview {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.services-overview::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.overview-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
}
.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,74,110,0.12), 0 8px 20px rgba(14,165,233,0.06);
  border-color: var(--water-200);
}
.overview-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.overview-card:hover::before { opacity: 1; }
.overview-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.overview-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.overview-card:hover .overview-card-img img { transform: scale(1.06); }
.overview-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,43,74,0.4) 0%, transparent 50%);
}
.overview-card-img .card-num {
  position: absolute;
  top: 16px; left: 16px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--white);
  transition: all 0.3s;
}
.overview-card:hover .card-num {
  background: var(--maroon);
  border-color: var(--maroon);
}
.overview-card-body {
  padding: 28px 24px;
}
.overview-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.overview-card-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--water-500);
  transition: all 0.3s;
}
.card-link:hover { color: var(--maroon); gap: 10px; }

@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   SERVICES: FEATURED DETAIL
   ======================================== */
.service-detail {
  padding: 90px 0;
  position: relative;
}
.service-detail:nth-child(even) { background: var(--white); }
.service-detail:nth-child(odd) { background: var(--cloud); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail:nth-child(even) .detail-grid { direction: rtl; }
.service-detail:nth-child(even) .detail-grid > * { direction: ltr; }
.detail-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(12,74,110,0.14), 0 8px 20px rgba(12,74,110,0.06);
}
.detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.detail-image-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(12,74,110,0.08);
}
.detail-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.detail-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.detail-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.detail-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.detail-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--water-600);
}
.detail-feature span {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  padding-top: 6px;
}
.detail-feature strong {
  color: var(--navy);
}

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .detail-grid { direction: ltr; }
  .detail-image img { height: 300px; }
}

/* ========================================
   SERVICES: ADDITIONAL SERVICES
   ======================================== */
.more-services {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.more-services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.more-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.more-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.more-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.more-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.more-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.more-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.2);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.more-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,74,110,0.1);
  border-color: var(--water-200);
}
.more-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.more-card:hover::before { opacity: 1; }
.more-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.more-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.more-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .more-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ========================================
   CONTACT: FORM & SIDEBAR
   ======================================== */
.contact-section {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.form-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  font-size: 15px;
  color: var(--slate-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(186,230,253,0.5);
  border-radius: 14px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-light);
  font-weight: 400;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--water-400);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
  background: var(--water-50);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' 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 textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}

/* Contact Info Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
  transition: all 0.35s var(--ease);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(12,74,110,0.1);
  border-color: var(--water-200);
}
.info-card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.info-card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
.info-card-content a {
  color: var(--water-600);
  font-weight: 600;
  transition: color 0.3s;
}
.info-card-content a:hover {
  color: var(--maroon);
}

/* Contact: Why Choose Us card */
.why-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}
.why-item + .why-item {
  border-top: 1px solid rgba(186,230,253,0.25);
}
.why-item-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-item-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.why-item-text span {
  display: block;
  font-weight: 400;
  color: var(--slate-light);
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT: SERVICE AREAS
   ======================================== */
.service-areas {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.service-areas::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.area-tag::before {
  content: '\25CF';
  margin-right: 8px;
  color: var(--water-400);
  font-size: 8px;
  vertical-align: middle;
}

/* ========================================
   FAQ PAGE: SECTIONS
   ======================================== */
.faq-sections {
  padding: 80px 0;
  background: var(--cloud);
  position: relative;
}
.faq-sections::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.faq-category {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.faq-category:last-child { margin-bottom: 0; }
.faq-category-header {
  margin-bottom: 24px;
}
.faq-category-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 10px;
}
.faq-category-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.faq-category-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
}

/* ========================================
   REVIEWS PAGE: LEAVE A REVIEW
   ======================================== */
.leave-review {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.leave-review::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.leave-review-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.leave-review .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.leave-review .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.leave-review h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 16px;
}
.leave-review p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
}
.review-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   SERVICE AREA PAGE: INTRO
   ======================================== */
.areas-intro {
  padding: 80px 0 20px;
  text-align: center;
}
.areas-intro .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.areas-intro .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.areas-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.areas-intro p {
  font-size: 16px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   SERVICE AREA PAGE: AREA CARDS
   ======================================== */
.areas-section::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.area-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  padding: 36px 28px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,74,110,0.12), 0 8px 20px rgba(14,165,233,0.06);
  border-color: var(--water-200);
}
.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.area-card:hover::before { opacity: 1; }
.area-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.area-card.hub .area-card-icon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.area-card .county {
  font-size: 13px;
  font-weight: 600;
  color: var(--water-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.area-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.area-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--water-500);
  transition: all 0.3s;
}
.area-card .card-link:hover { color: var(--maroon); gap: 10px; }
.area-card.hub {
  border-color: rgba(159,29,20,0.15);
}
.area-card.hub .hub-badge {
  display: inline-block;
  background: var(--maroon);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   SERVICE AREA PAGE: ADDITIONAL AREAS
   ======================================== */
.additional-areas {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.additional-areas::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.additional-header {
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.additional-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.additional-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.additional-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.additional-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative; z-index: 1;
  margin-bottom: 36px;
}
.additional-note {
  font-size: 16px;
  color: var(--slate);
  position: relative; z-index: 1;
  margin-top: 12px;
}
.additional-note a {
  color: var(--maroon);
  font-weight: 600;
  transition: color 0.3s;
}
.additional-note a:hover { color: var(--water-600); }

/* ========================================
   SERVICE PAGE: HERO IMAGE
   ======================================== */
.hero-image-section {
  padding: 0 0 60px;
  background: var(--cloud);
  position: relative;
  margin-top: -30px;
  z-index: 3;
}
.hero-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12,74,110,0.16), 0 8px 24px rgba(12,74,110,0.08);
}
.hero-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
@media (max-width: 700px) {
  .hero-image-wrap img { height: 260px; }
}

/* ========================================
   SERVICE PAGE: PROCESS
   ======================================== */
.process-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.process-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.process-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.process-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.process-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.process-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,74,110,0.12), 0 8px 20px rgba(14,165,233,0.06);
  border-color: var(--water-200);
}
.process-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s;
}
.process-card:hover::before { opacity: 1; }
.process-num {
  width: 48px; height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--water-600);
  transition: all 0.3s;
}
.process-card:hover .process-num {
  background: var(--maroon);
  color: var(--white);
}
.process-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--water-700);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.process-card:hover .process-card-num {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
}
.process-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .process-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ========================================
   SERVICE PAGE: SURFACES
   ======================================== */
.surfaces-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.surfaces-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.surface-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.2);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.surface-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,74,110,0.1);
  border-color: var(--water-200);
}
.surface-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.surface-card:hover::before { opacity: 1; }
.surface-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.surface-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.surface-card p {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .surfaces-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .surfaces-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* ========================================
   SERVICE PAGE: PRICING CALLOUT
   ======================================== */
.pricing-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(186,230,253,0.3);
  border-radius: 28px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(12,74,110,0.1), 0 4px 16px rgba(12,74,110,0.04);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400), var(--maroon));
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card .price-label {
  font-size: 16px;
  color: var(--slate-light);
  margin-bottom: 8px;
}
.pricing-card .price-detail {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.7;
}
.pricing-card .price-detail strong { color: var(--navy); }
.pricing-perks {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pricing-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--water-50);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--water-100);
}
.pricing-perk-icon { font-size: 16px; }
@media (max-width: 600px) {
  .pricing-card { padding: 36px 24px; }
}

/* ========================================
   SERVICE PAGE: CROSS-SELL
   ======================================== */
.crosssell-section {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
  overflow: hidden;
}
.crosssell-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.crosssell-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
}
.crosssell-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,74,110,0.12), 0 8px 20px rgba(14,165,233,0.06);
  border-color: var(--water-200);
}
.crosssell-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.crosssell-card:hover::before { opacity: 1; }
.crosssell-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.crosssell-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.crosssell-card:hover .crosssell-card-img img { transform: scale(1.06); }
.crosssell-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,43,74,0.4) 0%, transparent 50%);
}
.crosssell-card-body {
  padding: 24px 22px;
}
.crosssell-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.crosssell-card-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .crosssell-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   DECK STAINING: INTRO
   ======================================== */
.intro-section {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.intro-section::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.intro-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(12,74,110,0.14), 0 8px 20px rgba(12,74,110,0.06);
}
.intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.intro-image-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(12,74,110,0.08);
}
.intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.intro-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.intro-content h2 em { font-style: italic; color: var(--maroon); }
.intro-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-image img { height: 300px; }
}

/* ========================================
   DECK STAINING: BRANDS
   ======================================== */
.brands-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.brands-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.brands-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.brands-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.brands-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.brands-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.brand-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.2);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,74,110,0.1);
  border-color: var(--water-200);
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.brand-card:hover::before { opacity: 1; }
.brand-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}
.brand-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.brand-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}
.brand-card .brand-names {
  font-size: 13px;
  font-weight: 600;
  color: var(--water-600);
  margin-top: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .brands-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ========================================
   DECK STAINING: REPAIRS
   ======================================== */
.repairs-section {
  padding: 70px 0;
  background: var(--cloud);
}
.repairs-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
  position: relative;
  overflow: hidden;
}
.repairs-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
}
.repairs-icon {
  width: 72px; height: 72px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.repairs-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.repairs-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

@media (max-width: 700px) {
  .repairs-card { flex-direction: column; text-align: center; padding: 36px 28px; }
}

/* ========================================
   DECK STAINING: BEFORE/AFTER
   ======================================== */
.ba-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.ba-header {
  text-align: center;
  margin-bottom: 48px;
}
.ba-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.ba-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.ba-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
}
.ba-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(12,74,110,0.14), 0 8px 20px rgba(12,74,110,0.06);
  max-width: 900px;
  margin: 0 auto;
}
.ba-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   DECK STAINING: CROSS-SELL
   ======================================== */
.cross-sell {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.cross-sell::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cross-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.cross-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.cross-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.cross-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.cross-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.cross-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.cross-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 8px 30px rgba(12,74,110,0.06);
}
.cross-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12,74,110,0.12), 0 8px 20px rgba(14,165,233,0.06);
  border-color: var(--water-200);
}
.cross-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.cross-card:hover::before { opacity: 1; }
.cross-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.cross-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cross-card:hover .cross-card-img img { transform: scale(1.06); }
.cross-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,43,74,0.4) 0%, transparent 50%);
}
.cross-card-body {
  padding: 28px 24px;
}
.cross-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.cross-card-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .cross-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ========================================
   LEXINGTON: NEIGHBORHOODS
   ======================================== */
.neighborhoods {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.neighborhoods::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative; z-index: 1;
}
.hood-tag {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.25);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.35s var(--ease);
  box-shadow: 0 4px 16px rgba(12,74,110,0.05);
}
.hood-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(12,74,110,0.1);
  border-color: var(--water-300);
  color: var(--water-600);
}
.hood-tag.highlight {
  background: linear-gradient(135deg, var(--water-500), var(--water-600));
  color: var(--white);
  border-color: transparent;
}
.hood-tag.highlight:hover {
  color: var(--white);
  box-shadow: 0 10px 28px rgba(14,165,233,0.3);
}

/* ========================================
   LEXINGTON: WHY TRUST
   ======================================== */
.why-trust {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why-trust::before {
  content: '';
  position: absolute;
  top: 100px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,230,253,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.trust-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,0.2);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,74,110,0.1);
  border-color: var(--water-200);
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.trust-card:hover::before { opacity: 1; }
.trust-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #06101f;
  padding: 72px 0 36px;
  color: rgba(255,255,255,0.55);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-text {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.75;
  max-width: 300px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 4px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  display: inline-block;
  padding: 4px 0;
  line-height: 1.5;
}
.footer ul a:hover { color: var(--water-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-payments-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.footer-payment-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: default;
}
.footer-payment-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.45);
}
.footer-payment-item:hover {
  color: var(--water-400);
  border-color: var(--water-400);
}
.footer-payment-item:hover svg {
  color: var(--water-400);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   PHP-SPECIFIC ADDITIONS
   ======================================== */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.1) saturate(0.9);
    opacity: 0.6;
}
.cf-turnstile { margin: 8px 0; }
.required { color: var(--maroon); font-weight: 600; }
.content-body { font-size: 16px; line-height: 1.8; color: var(--slate); }
.content-body h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); margin: 24px 0 8px; }
.content-body p { margin-bottom: 12px; }
.content-body a { color: var(--water-600); font-weight: 600; }
.content-body a:hover { color: var(--maroon); }
.page-hero .breadcrumb { font-size: 13px; font-weight: 500; color: var(--water-deep); opacity: 0.7; margin-bottom: 12px; }
.page-hero .breadcrumb a { color: var(--water-deep); }
.page-hero .breadcrumb a:hover { color: var(--maroon); }
.faq-cta { text-align: center; margin-top: 60px; padding: 48px 32px; background: var(--cloud); border-radius: 16px; }
.faq-cta h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.faq-cta p { color: var(--slate); margin-bottom: 24px; }

/* ========================================
   PHONE CTA (shared across pages)
   ======================================== */
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(159,29,20,0.3);
  transition: all 0.3s;
}
.phone-cta:hover {
  background: var(--maroon-light);
  box-shadow: 0 6px 24px rgba(159,29,20,0.4);
  transform: translateY(-2px);
}
.phone-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.phone-cta-secondary {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--slate-light);
}
.phone-cta-secondary a { color: var(--navy); font-weight: 600; text-decoration: underline; }
@media (max-width: 767px) {
  .phone-cta { width: 100%; justify-content: center; font-size: 20px; padding: 16px 28px; }
}

/* ========================================
   TRUST STRIP (compact credibility bar)
   ======================================== */
.trust-strip {
  background: var(--navy);
  padding: 24px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.trust-strip-num {
  font-size: 20px;
  font-weight: 800;
  color: #facc15;
}
@media (max-width: 600px) {
  .trust-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 20px; }
}

/* ========================================
   PROOF BLOCK (before/after + review)
   ======================================== */
.proof-section { padding: 60px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) { .proof-grid { grid-template-columns: 1fr; } }

/* Layout rotation variants */
.proof-layout-b .proof-grid { grid-template-columns: 1fr; }
.proof-layout-b .proof-review { background: rgba(159,29,20,0.65); padding: 32px; border-radius: 16px; color: #fff; text-align: center; }
.proof-layout-b .proof-review .review-text { color: rgba(255,255,255,0.9); font-size: 18px; }
.proof-layout-b .proof-review .review-name { color: #fff; }
.proof-layout-b .proof-review .review-source { color: rgba(255,255,255,0.6); }
.proof-layout-b .proof-review .review-stars { color: #facc15; }

.proof-layout-c .proof-grid { grid-template-columns: 1fr; gap: 20px; }

/* ========================================
   MID-PAGE PHONE CTA
   ======================================== */
.mid-cta {
  text-align: center;
  padding: 50px 0;
  background: rgba(159,29,20,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mid-cta p {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.mid-cta .phone-cta { background: #fff; color: var(--maroon); }
.mid-cta .phone-cta:hover { background: rgba(255,255,255,0.9); }
.mid-cta .phone-cta-secondary { margin-top: 12px; color: rgba(255,255,255,0.7); }
.mid-cta .phone-cta-secondary a { color: #fff; }

/* ========================================
   COMPACT SERVICE CARDS (city pages)
   ======================================== */
.compact-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .compact-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .compact-services-grid { grid-template-columns: 1fr; } }
.compact-service-card {
  background: rgba(255,255,255,0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(12,74,110,0.04);
  transition: all 0.3s var(--ease);
}
.compact-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(12,74,110,0.08); }
.compact-service-card img { width: 100%; height: 160px; object-fit: cover; }
.compact-service-card-body { padding: 18px; }
.compact-service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.compact-service-card-body p { font-size: 14px; color: var(--slate-light); line-height: 1.5; margin-bottom: 10px; }
.compact-service-card-body a { font-size: 13px; font-weight: 600; color: var(--maroon); text-decoration: none; }
.view-all-link { text-align: center; margin-top: 20px; }
.view-all-link a { color: var(--navy); font-weight: 600; font-size: 15px; text-decoration: underline; }

/* ========================================
   OTHER AREAS (compact inline links)
   ======================================== */
.other-areas-strip {
  font-size: 14px;
  color: var(--slate-light);
  border-top: 1px solid rgba(186,230,253,0.2);
  padding: 24px 0;
}
.other-areas-strip strong { color: var(--navy); }
.other-areas-strip a { color: var(--water-500); text-decoration: none; font-weight: 500; }
.other-areas-strip a:hover { text-decoration: underline; color: var(--maroon); }

/* ========================================
   INCLUDED CHECKLIST (service pages)
   ======================================== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) { .included-grid { grid-template-columns: 1fr; } }
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}
.included-list .check {
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Mobile CTA bar */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--maroon) !important; text-decoration: none !important; padding: 0; -webkit-tap-highlight-color: transparent; color: #fff !important; box-shadow: 0 -3px 12px rgba(0,0,0,0.3); }
.mobile-cta-bar .mobile-cta-icon { color: #fff !important; flex-shrink: 0; }
.mobile-cta-bar .mobile-cta-text { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; color: #fff !important; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex !important; align-items: center; justify-content: center; gap: 10px; height: 54px; text-align: center; }
  body { padding-bottom: 54px; }
}
.mobile-cta-bar:hover, .mobile-cta-bar:visited, .mobile-cta-bar:active { color: #fff !important; background: var(--maroon-light) !important; text-decoration: none !important; }

/* Back to top */
.back-to-top { position: fixed; bottom: 80px; right: 20px; z-index: 998; width: 44px; height: 44px; border-radius: 50%; background: var(--maroon); color: #fff; border: none; cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 0.8; transform: translateY(0); }
.back-to-top:hover { opacity: 1; }

/* Before/After slider */
.ba-slider { position: relative; overflow: hidden; border-radius: 12px; cursor: col-resize; user-select: none; -webkit-user-select: none; aspect-ratio: 3/2; }
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 0; }
.ba-after { z-index: 1; clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 2; cursor: col-resize; }
.ba-handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ba-handle::after { content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; color: var(--navy); z-index: 3; }
.ba-label { position: absolute; bottom: 10px; padding: 4px 12px; border-radius: 20px; background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; font-weight: 600; z-index: 3; }
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; }
.gallery-label { text-align: center; padding: 12px; font-weight: 600; color: var(--navy); font-size: 14px; }
