/* ============================================================
   PEREZ PRO CLEAN — Battle Bound Branding
   Premium exterior-cleaning website. Brand tokens per style guide.
   Fonts: Bebas Neue (display) + Montserrat (subhead/body).
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Brand palette */
  --navy-deep:   #0D1B2A;
  --navy:        #112D4E;
  --blue:        #0EA5E9;   /* Cleaning Blue */
  --blue-deep:   #0284C7;
  --blue-ink:    #0369A1;   /* accessible blue for text on white */
  --water:       #38BDF8;   /* Water Blue */
  --water-soft:  #7DD3FC;
  --yellow:      #FACC15;   /* Accent Yellow */
  --yellow-deep: #EAB308;
  --white:       #FFFFFF;
  --gray-100:    #F1F5F9;   /* Light Gray */
  --gray-200:    #E2E8F0;
  --gray-500:    #64748B;
  --gray-700:    #374151;   /* Dark Gray */

  /* Tints */
  --blue-tint:   #E8F6FE;
  --blue-tint-2: #F0FAFF;
  --navy-tint:   #F4F7FB;

  /* Text */
  --text:        #1F2A37;
  --text-muted:  #4B5563;
  --text-dim:    #6B7280;
  --text-light:  #FFFFFF;

  /* Type */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Montserrat', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --maxw:        1180px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 999px;
  --nav-h:       76px;
  --top-h:       40px;
  --ease:        cubic-bezier(.16, 1, .3, 1);
  --transition:  all .3s cubic-bezier(.4, 0, .2, 1);

  /* Shadow */
  --shadow-sm:  0 2px 8px rgba(13,27,42,.06);
  --shadow-md:  0 14px 34px -12px rgba(13,27,42,.18);
  --shadow-lg:  0 30px 60px -20px rgba(13,27,42,.30);
  --shadow-blue: 0 16px 32px -12px rgba(14,165,233,.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { list-style: none; }

.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 8px;
  font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--water); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tint { background: var(--navy-tint); }
.text-center { text-align: center; }

.section-header { max-width: 660px; margin: 0 auto 56px; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--blue-ink); margin-bottom: 14px;
}
.section-label-light { color: var(--water); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 400; line-height: .98; letter-spacing: .5px;
  color: var(--navy-deep); margin-bottom: 18px;
}
.section-title-light { color: #fff; }

.section-subtitle { font-size: 1.08rem; color: var(--text-muted); line-height: 1.6; }
.section-subtitle-light { color: rgba(255,255,255,.82); }

/* ------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------ */
.btn {
  --btn-py: 14px; --btn-px: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  letter-spacing: .01em; line-height: 1.1;
  border: 2px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; text-align: center; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn .ic { width: 18px; height: 18px; }
.btn-sm { --btn-py: 10px; --btn-px: 18px; font-size: .85rem; }
.btn-lg { --btn-py: 16px; --btn-px: 32px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  /* Gradient stays >=4.5:1 with white text at every stop (WCAG AA). Lightest stop #037AB4 = 4.73:1. */
  background: linear-gradient(135deg, #037AB4 0%, var(--blue-ink) 100%);
  color: #fff; box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(2,132,199,.6); }

.btn-accent { background: var(--yellow); color: var(--navy-deep); box-shadow: 0 14px 30px -12px rgba(234,179,8,.6); }
.btn-accent:hover { background: #FFD833; transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(234,179,8,.7); }

.btn-outline { background: transparent; color: var(--blue-ink); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }

.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-3px); }

.btn-call { text-align: left; gap: 12px; }
.btn-call span { display: flex; flex-direction: column; line-height: 1.05; font-weight: 700; font-size: .8rem; }
.btn-call span strong { font-size: 1rem; font-weight: 800; }

/* ------------------------------------------------------------
   5. TOP UTILITY BAR
   ------------------------------------------------------------ */
.topbar {
  background: var(--navy-deep); color: rgba(255,255,255,.85);
  height: var(--top-h); font-size: .82rem; font-weight: 600;
  position: relative; z-index: 200;
}
.topbar-inner { height: var(--top-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item .ic { width: 15px; height: 15px; color: var(--water); }
.topbar-actions { display: flex; align-items: center; gap: 22px; }
.topbar-link:hover { color: #fff; }
.topbar-phone { color: #fff; font-weight: 800; letter-spacing: .01em; }
.topbar-phone .ic { color: var(--yellow); }


/* ------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 150; height: var(--nav-h);
  background: transparent; transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 6px 26px rgba(13,27,42,.10); backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 3px 6px rgba(0,0,0,.25)); }
.logo-text {
  font-family: var(--font-display); font-size: 1.7rem; line-height: 1; letter-spacing: 1px;
  color: #fff; transition: color .3s;
}
.logo-text span { color: var(--water); }
.nav.scrolled .logo-text { color: var(--navy-deep); }
.nav.scrolled .logo-text span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-weight: 600; font-size: .93rem; color: rgba(255,255,255,.9); position: relative; }
.nav-link:hover { color: #fff; }
.nav.scrolled .nav-link { color: var(--text-muted); }
.nav.scrolled .nav-link:hover { color: var(--blue-ink); }
.nav-link.active { color: #fff; }
.nav.scrolled .nav-link.active { color: var(--blue-ink); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px;
  background: var(--yellow); border-radius: 3px;
}

.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer;
}
.mobile-menu-toggle span { display: block; width: 26px; height: 3px; border-radius: 3px; background: #fff; transition: .3s; }
.nav.scrolled .mobile-menu-toggle span { background: var(--navy-deep); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 78% 8%, rgba(56,189,248,.22), transparent 60%),
    radial-gradient(800px 500px at 8% 90%, rgba(14,165,233,.16), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #143a63 100%);
  color: #fff; overflow: hidden;
  padding: calc(var(--nav-h) + 46px) 0 130px;
  margin-top: calc(-1 * var(--nav-h));
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  color: #fff; padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-eyebrow .ic { width: 16px; height: 16px; color: var(--yellow); fill: var(--yellow); stroke: var(--yellow); }

.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.9rem, 6vw, 4.7rem); line-height: .93; letter-spacing: 1px;
  margin-bottom: 22px; text-wrap: balance;
}
.hero-title .hl { color: var(--water); position: relative; white-space: nowrap; }
.hero-title .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; z-index: -1;
  background: linear-gradient(90deg, rgba(250,204,21,.9), rgba(250,204,21,.5));
  border-radius: 4px;
}
.hero-desc { font-size: 1.18rem; color: rgba(255,255,255,.85); max-width: 540px; margin-bottom: 34px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.9); }
.hero-trust .ic { width: 18px; height: 18px; color: var(--water); stroke-width: 3; }

/* Hero visual */
.hero-visual { position: relative; z-index: 1; }
.hero-visual::before {
  /* subtle blue glow halo behind the photo card */
  content: ''; position: absolute; inset: -14%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(56,189,248,.4), transparent 70%);
  filter: blur(38px); pointer-events: none;
}
.hero-photo {
  position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,.12); aspect-ratio: 4/5;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-photo-shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 48%, transparent 60%);
  transform: translateX(-120%); animation: shine 5.5s var(--ease) infinite; animation-delay: 1.2s;
}
@keyframes shine { 0% { transform: translateX(-120%); } 22%,100% { transform: translateX(120%); } }
.hero-photo-bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.hero-photo-bubbles span {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.85), rgba(255,255,255,.15) 60%, transparent 75%);
  border: 1px solid rgba(255,255,255,.4);
  animation: rise linear infinite;
}
.hero-photo-bubbles span:nth-child(1) { left: 15%; width: 14px; height: 14px; animation-duration: 7s; }
.hero-photo-bubbles span:nth-child(2) { left: 45%; width: 9px;  height: 9px;  animation-duration: 5.5s; animation-delay: 1.5s; }
.hero-photo-bubbles span:nth-child(3) { left: 65%; width: 18px; height: 18px; animation-duration: 8.5s; animation-delay: .5s; }
.hero-photo-bubbles span:nth-child(4) { left: 80%; width: 11px; height: 11px; animation-duration: 6s;  animation-delay: 3s; }

.hero-badge-vet {
  position: absolute; top: -18px; left: -18px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--navy) 0%, var(--navy-deep) 100%);
  border: 3px solid var(--yellow); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  text-align: center; box-shadow: var(--shadow-md);
}
.hero-badge-vet .ic { width: 22px; height: 22px; color: var(--yellow); fill: var(--yellow); stroke: var(--yellow); }
.hero-badge-vet span { font-family: var(--font-display); font-size: .95rem; line-height: .9; letter-spacing: .5px; }

.hero-card-float {
  position: absolute; right: -14px; bottom: -26px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--navy-deep);
  padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow-lg); max-width: 250px;
}
.hero-card-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hero-card-float strong { display: block; font-size: .92rem; font-weight: 800; }
.hero-card-float span { display: block; font-size: .78rem; color: var(--text-dim); }

/* Bubbles */
.hero-bubbles, .section-bubbles { position: absolute; inset: 0; overflow: hidden; z-index: 1; pointer-events: none; }
.hero-bubbles span, .section-bubbles span {
  position: absolute; bottom: -80px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.5), rgba(125,211,252,.12) 60%, transparent 72%);
  border: 1px solid rgba(255,255,255,.12);
  animation: rise linear infinite;
}
.hero-bubbles span:nth-child(1){ left:6%;  width:56px; height:56px; animation-duration:15s; }
.hero-bubbles span:nth-child(2){ left:22%; width:26px; height:26px; animation-duration:11s; animation-delay:2s; }
.hero-bubbles span:nth-child(3){ left:40%; width:80px; height:80px; animation-duration:19s; animation-delay:1s; }
.hero-bubbles span:nth-child(4){ left:62%; width:34px; height:34px; animation-duration:13s; animation-delay:4s; }
.hero-bubbles span:nth-child(5){ left:80%; width:60px; height:60px; animation-duration:17s; animation-delay:3s; }
.hero-bubbles span:nth-child(6){ left:92%; width:22px; height:22px; animation-duration:10s; animation-delay:1.5s; }
@keyframes rise {
  0%   { transform: translateY(0) scale(.7); opacity: 0; }
  15%  { opacity: .8; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

/* Hero bottom wave */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }
.hero-wave path { fill: #fff; }

/* ------------------------------------------------------------
   7b. PAGE HERO (sub-page header band)
   Compact dark banner used on every page except the home page, so
   the transparent sticky nav always sits over a navy background.
   Add .page-hero-wave-tint when the first section below is tinted.
   ------------------------------------------------------------ */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background:
    radial-gradient(900px 420px at 80% 0%, rgba(56,189,248,.2), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(14,165,233,.15), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #143a63 100%);
  padding: calc(var(--nav-h) + 60px) 0 104px;
  margin-top: calc(-1 * var(--nav-h));
}
.page-hero .container { position: relative; z-index: 2; max-width: 780px; }
.page-hero-crumbs {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 18px;
}
.page-hero-crumbs a { color: rgba(255,255,255,.85); }
.page-hero-crumbs a:hover { color: #fff; }
.page-hero-crumbs [aria-current] { color: var(--water); }
.page-hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.7rem, 5.6vw, 4.2rem); line-height: .95; letter-spacing: 1px;
  margin-bottom: 16px; text-wrap: balance;
}
.page-hero-title .hl { color: var(--water); }
.page-hero-desc { font-size: 1.12rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; }
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.page-hero .hero-wave svg { height: 60px; }
.page-hero-wave-tint path { fill: var(--navy-tint); }

/* ------------------------------------------------------------
   8. TRUST BAR
   ------------------------------------------------------------ */
.trust-bar { background: linear-gradient(90deg, var(--blue-ink), var(--blue-deep)); color: #fff; padding: 20px 0; }
.trust-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .92rem; }
.trust-item .ic { color: var(--yellow); width: 20px; height: 20px; }

/* ------------------------------------------------------------
   9. SERVICES
   ------------------------------------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--water)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--blue-tint); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.signature { border-color: var(--blue); box-shadow: 0 16px 34px -14px rgba(14,165,233,.28); }
.service-tag {
  display: inline-block; background: var(--yellow); color: var(--navy-deep);
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--radius-pill); margin-bottom: 16px;
}

.service-icon {
  width: 60px; height: 60px; border-radius: 15px; margin-bottom: 20px;
  background: linear-gradient(140deg, var(--blue-tint), var(--blue-tint-2));
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--blue-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card.signature .service-icon { background: linear-gradient(140deg, var(--blue), var(--blue-deep)); }
.service-card.signature .service-icon svg { stroke: #fff; }

.service-card-title { font-family: var(--font-body); font-size: 1.2rem; font-weight: 800; color: var(--navy-deep); margin-bottom: 10px; }
.service-card-desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--blue-ink); }
.service-link span { transition: transform .25s; }
.service-link:hover { color: var(--blue-deep); }
.service-link:hover span { transform: translateX(4px); }

/* Service pillars — 4 core Jobber-sourced services, larger cards with a sub-service list */
.services-grid-pillars { grid-template-columns: repeat(2, 1fr); }
/* 4-up overview grid used on the home page */
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-pillar-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.service-pillar-list li {
  position: relative; padding-left: 24px; font-size: .9rem; color: var(--text-muted);
}
.service-pillar-list li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
}
.service-card.signature .service-pillar-list li::before { background: var(--yellow-deep); }

/* ------------------------------------------------------------
   9b. BENEFITS
   ------------------------------------------------------------ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 26px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px;
  background: linear-gradient(140deg, var(--blue-tint), var(--blue-tint-2));
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--blue-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-title { font-family: var(--font-body); font-size: 1.02rem; font-weight: 800; color: var(--navy-deep); margin-bottom: 6px; }
.benefit-desc { color: var(--text-muted); font-size: .88rem; }

/* ------------------------------------------------------------
   10. SECTION: NAVY (Why / Areas)
   ------------------------------------------------------------ */
.section-navy {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(56,189,248,.14), transparent 60%),
    linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: #fff; overflow: hidden;
}
.section-navy .section-bubbles span { background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.28), transparent 70%); }
.section-navy .section-bubbles span:nth-child(1){ left:10%; width:70px; height:70px; animation:rise 20s linear infinite; }
.section-navy .section-bubbles span:nth-child(2){ left:48%; width:40px; height:40px; animation:rise 16s linear infinite 3s; }
.section-navy .section-bubbles span:nth-child(3){ left:82%; width:56px; height:56px; animation:rise 18s linear infinite 1.5s; }
.section-navy .container { position: relative; z-index: 2; }

.why-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 34px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--water));
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.why-check svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.why-list li div { color: rgba(255,255,255,.86); font-size: .98rem; }
.why-list li strong { color: #fff; font-weight: 700; }

.why-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 20px; text-align: center; backdrop-filter: blur(4px);
}
.fact-card-accent { background: linear-gradient(140deg, rgba(250,204,21,.16), rgba(250,204,21,.05)); border-color: rgba(250,204,21,.4); }
.fact-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--water); display: block; letter-spacing: 1px; }
.fact-num-sm { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--yellow); display: block; }
.fact-plus { color: var(--yellow); }
.fact-label { display: block; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.78); margin-top: 8px; }

/* ------------------------------------------------------------
   10b. MEET THE OWNER
   ------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.about-text { font-size: 1.08rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; max-width: 560px; }
.about-visual { display: flex; flex-direction: column; gap: 18px; }
.about-photo-ph {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: repeating-linear-gradient(45deg, var(--blue-tint-2) 0 12px, #fff 12px 24px);
  border: 2px dashed var(--water-soft);
}
.about-photo-ph.has-media {
  background-size: cover;
  background-position: center top;
  border-style: solid;
  position: relative;
}
.about-photo-ph.has-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,.03), rgba(13,27,42,.18));
  pointer-events: none;
}
.about-photo-ph.has-media .about-photo-icon,
.about-photo-ph.has-media .about-photo-label {
  display: none;
}
.about-photo-icon { width: 64px; height: 64px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; }
.about-photo-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--blue-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.about-photo-label { text-align: center; font-weight: 800; color: var(--navy); font-size: .95rem; line-height: 1.4; }
.about-photo-label em { font-weight: 600; font-style: normal; color: var(--text-dim); font-size: .82rem; }
.about-badges { display: flex; flex-direction: column; gap: 12px; }
.about-badge {
  display: flex; align-items: center; gap: 10px; background: var(--navy-tint); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px 16px; font-weight: 700; font-size: .9rem; color: var(--navy-deep);
}
.about-badge .ic { color: var(--blue-deep); width: 20px; height: 20px; flex-shrink: 0; }

/* ------------------------------------------------------------
   11. PLANS
   ------------------------------------------------------------ */
.plans-header-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; margin-bottom: 52px; }
.plans-header-grid .section-header { text-align: left; max-width: none; margin: 0; }
.plans-visual-card {
  position: relative; max-width: 280px; margin: 0 auto; aspect-ratio: 3/4;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.plans-visual-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.plans-visual-tag {
  position: absolute; bottom: 12px; left: 12px; background: rgba(13,27,42,.72); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-popular { border: 2px solid var(--blue); box-shadow: 0 24px 46px -18px rgba(14,165,233,.4); }
.plan-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-blue);
}
.plan-head { margin-bottom: 16px; }
.plan-name { font-family: var(--font-body); font-size: 1.3rem; font-weight: 800; color: var(--navy-deep); }
.plan-tag { font-size: .85rem; color: var(--text-dim); font-weight: 600; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; color: var(--navy-deep); }
.plan-from { font-size: .8rem; font-weight: 600; color: var(--text-dim); }
.plan-amt { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--blue-ink); letter-spacing: 1px; }
.plan-per { font-size: .9rem; font-weight: 600; color: var(--text-dim); }
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex-grow: 1; }
.plan-features li { position: relative; padding-left: 28px; font-size: .93rem; color: var(--text-muted); }
.plan-features li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

.pricing-note { text-align: center; font-size: .88rem; color: var(--text-dim); margin-top: 28px; }
.pricing-note a { color: var(--blue-ink); font-weight: 700; }
.pricing-note a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   12. SEASONAL SPECIALS
   ------------------------------------------------------------ */
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.special-card {
  position: relative; background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); overflow: hidden;
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.special-ribbon {
  display: inline-block; background: var(--blue-tint); color: var(--blue-ink);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.special-ribbon-accent { background: var(--yellow); color: var(--navy-deep); }
.special-title { font-family: var(--font-body); font-size: 1.35rem; font-weight: 800; color: var(--navy-deep); margin-bottom: 6px; }
.special-offer {
  font-family: var(--font-body); font-weight: 800; font-size: 1.08rem;
  color: var(--blue-ink); margin-bottom: 10px;
}
.special-desc { color: var(--text-muted); font-size: .93rem; margin-bottom: 18px; }
.special-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--blue-ink); }
.special-link:hover span { transform: translateX(4px); }
.special-link span { transition: transform .25s; }

.special-feature {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff;
  border-color: transparent;
}
.special-feature .special-title { color: #fff; }
.special-feature .special-offer { color: var(--water); }
.special-feature .special-desc { color: rgba(255,255,255,.8); }
.special-link-light { color: var(--yellow); }
.special-link-light:hover { color: #ffe066; }

/* ------------------------------------------------------------
   13. STARTING PRICES
   ------------------------------------------------------------ */
.pricing-grid {
  max-width: 820px; margin: 0 auto; background: #fff;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 28px; border-bottom: 1px solid var(--gray-200); transition: background .2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--navy-tint); }
.price-service { display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--navy-deep); font-size: 1rem; }
.price-service .ic { width: 26px; height: 26px; color: var(--blue-deep); }
.price-amt { font-size: .95rem; color: var(--text-dim); font-weight: 600; white-space: nowrap; }
.price-amt strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--blue-ink); font-weight: 400; letter-spacing: .5px; vertical-align: -2px; }

.pricing-cta { text-align: center; margin-top: 34px; }
.pricing-cta .pricing-note { max-width: 620px; margin: 0 auto 22px; }

/* ------------------------------------------------------------
   14. REFERRAL BAND
   ------------------------------------------------------------ */
.section-band { position: relative; overflow: hidden; padding: 84px 0; }
.referral {
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(56,189,248,.2), transparent 60%),
    linear-gradient(120deg, var(--blue-ink) 0%, var(--navy) 100%);
  color: #fff;
}
.referral .section-bubbles span:nth-child(1){ left:14%; width:50px; height:50px; animation:rise 17s linear infinite; }
.referral .section-bubbles span:nth-child(2){ left:38%; width:30px; height:30px; animation:rise 13s linear infinite 2s; }
.referral .section-bubbles span:nth-child(3){ left:66%; width:64px; height:64px; animation:rise 20s linear infinite 1s; }
.referral .section-bubbles span:nth-child(4){ left:88%; width:24px; height:24px; animation:rise 11s linear infinite 3s; }
.referral-inner { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.referral-icon {
  width: 76px; height: 76px; border-radius: 20px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.referral-icon svg { width: 38px; height: 38px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.referral-copy .section-title { margin-bottom: 12px; }
.referral-desc { color: rgba(255,255,255,.86); font-size: 1.02rem; max-width: 560px; }
.referral-desc strong { color: var(--yellow); }
.referral-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; text-align: center; min-width: 210px; }
.referral-fine { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ------------------------------------------------------------
   15. BEFORE / AFTER GALLERY
   ------------------------------------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-grid-service { grid-template-columns: repeat(3, 1fr); }
.ba-slider {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ba-slider:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ba-frame { position: relative; aspect-ratio: 4/3; overflow: hidden; user-select: none; background: var(--gray-100); }
.ba-frame-square { aspect-ratio: 1/1; }
.ba-after-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-before-img {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.06) 0 8px, transparent 8px 16px),
    linear-gradient(160deg, #6B7280, #374151);
  background-size: cover; background-position: center;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
/* Static (non-slider) before/after — two distinct real photos shown honestly side by side */
.ba-frame-split { display: flex; }
.ba-static-img { position: relative; flex: 1; background-size: cover; background-position: center; }
.ba-static-img + .ba-static-img { border-left: 3px solid #fff; }
/* Single real photo card */
.gallery-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Category chip shown in the caption of every gallery card */
.gallery-cat {
  display: inline-block; background: var(--blue-tint); color: var(--blue-ink);
  font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-pill); margin-bottom: 8px;
}
.ba-tag {
  position: absolute; top: 12px; z-index: 4; font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: var(--radius-pill);
}
.ba-tag-before { left: 12px; background: rgba(13,27,42,.75); color: #fff; }
.ba-tag-after { right: 12px; background: var(--blue-ink); color: #fff; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; cursor: ew-resize; z-index: 6;
  touch-action: pan-y; /* horizontal drag drives slider; vertical still scrolls the page */
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 42px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 42px; height: 100%; border: none; background: transparent; cursor: ew-resize; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); z-index: 5;
  width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.1); transform: translateX(-50%); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ba-handle svg {
  width: 34px; height: 34px; padding: 7px; background: #fff; border-radius: 50%;
  box-shadow: var(--shadow-md); fill: none; stroke: var(--blue-deep); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.ba-caption { padding: 18px 20px; }
.ba-caption strong { display: block; font-weight: 800; color: var(--navy-deep); margin-bottom: 4px; }
.ba-caption { color: var(--text-muted); font-size: .9rem; }
.gallery-note { text-align: center; font-size: .9rem; color: var(--text-dim); margin-top: 34px; }

/* Placeholder frames */
.ba-frame-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: repeating-linear-gradient(45deg, var(--blue-tint-2) 0 12px, #fff 12px 24px);
  border: 2px dashed var(--water-soft);
}
.ba-ph-icon { width: 64px; height: 64px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; }
.ba-ph-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--blue-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ba-ph-label { text-align: center; font-weight: 800; color: var(--navy); font-size: .95rem; line-height: 1.4; }
.ba-ph-label em { font-weight: 600; font-style: normal; color: var(--text-dim); font-size: .82rem; }

/* Lazy-loaded real <img> variant of the ba-slider layers (used by the homepage
   Recent Transformations cards) — sits inside .ba-after-img / .ba-before-img
   exactly like the inline background-image layers used elsewhere. */
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ------------------------------------------------------------
   15b. PROMO VIDEO
   ------------------------------------------------------------ */
.video-wrap { max-width: 900px; margin: 0 auto; }
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-deep); box-shadow: var(--shadow-lg);
}
.video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; background: #000; }
.video-play-btn {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(13,27,42,.55); border: 3px solid rgba(255,255,255,.85); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0;
  transition: transform .3s var(--ease), background .3s var(--ease), opacity .25s var(--ease);
}
.video-play-btn:hover, .video-play-btn:focus-visible { transform: scale(1.08); background: var(--blue-ink); }
.video-play-btn svg { width: 30px; height: 30px; margin-left: 4px; fill: #fff; }
.video-frame.is-playing .video-play-btn { opacity: 0; pointer-events: none; }
.video-caption { text-align: center; max-width: 640px; margin: 26px auto 0; color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }

/* ------------------------------------------------------------
   16. REVIEWS
   ------------------------------------------------------------ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-placeholder { border-style: dashed; border-color: var(--water-soft); background: var(--blue-tint-2); }
.review-stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { color: var(--text-muted); font-size: .98rem; font-style: italic; margin-bottom: 22px; flex-grow: 1; }
.review-user { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; }
.review-avatar svg { width: 24px; height: 24px; fill: none; stroke: var(--blue-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.review-avatar-initials { font-family: var(--font-body); font-weight: 800; font-size: .92rem; color: var(--blue-deep); }
.review-name { display: block; font-weight: 800; color: var(--navy-deep); font-size: .92rem; }
.review-meta { display: block; font-size: .8rem; color: var(--text-dim); }
.review-meta-link { font-weight: 700; color: var(--blue-ink); }
.review-meta-link:hover { text-decoration: underline; }

.review-cta-card { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); border-color: transparent; justify-content: center; text-align: center; }
.review-cta-title { font-family: var(--font-body); font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.review-cta-desc { color: rgba(255,255,255,.82); font-size: .93rem; margin-bottom: 22px; }

.reviews-honest { text-align: center; font-size: .84rem; color: var(--text-dim); margin-top: 30px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   17. SERVICE AREAS
   ------------------------------------------------------------ */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-bottom: 24px; }
.areas-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.02rem; color: #fff; }
.areas-list .ic { color: var(--water); width: 20px; height: 20px; }
.areas-note { color: rgba(255,255,255,.75); font-size: .92rem; }
.areas-note a { color: var(--yellow); font-weight: 700; }
.areas-note a:hover { text-decoration: underline; }

/* Central Texas service map — inline SVG with geographically-placed
   city pins along the real I-35 / I-10 corridors. */
.svc-map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(circle at 42% 38%, #16406b, var(--navy-deep));
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg);
}
.svc-map svg { display: block; width: 100%; height: auto; }
.svc-map .map-grid line { stroke: rgba(56,189,248,.09); stroke-width: 1; }
.svc-map .map-zone { fill: rgba(56,189,248,.07); stroke: rgba(125,211,252,.45); stroke-width: 2; stroke-dasharray: 3 9; stroke-linecap: round; }
.svc-map .map-road { fill: none; stroke: rgba(125,211,252,.4); stroke-width: 4; stroke-linecap: round; }
.svc-map .map-road-casing { fill: none; stroke: rgba(13,27,42,.55); stroke-width: 8; stroke-linecap: round; }
.svc-map .map-road-label { font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: .06em; fill: rgba(125,211,252,.85); }
.svc-map .map-road-badge { fill: rgba(13,27,42,.85); stroke: rgba(125,211,252,.5); stroke-width: 1; }
.svc-map .city-halo { fill: rgba(56,189,248,.2); }
.svc-map .city-dot { fill: var(--water); stroke: var(--navy-deep); stroke-width: 2; }
.svc-map .city-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; fill: rgba(255,255,255,.94); paint-order: stroke; stroke: rgba(13,27,42,.8); stroke-width: 3px; stroke-linejoin: round; }
.svc-map .hq-halo { fill: rgba(250,204,21,.22); transform-box: fill-box; transform-origin: center; animation: hq-pulse 2.8s ease-out infinite; }
.svc-map .hq-dot { fill: var(--yellow); stroke: var(--navy-deep); stroke-width: 2; }
.svc-map .hq-tag-bg { fill: var(--yellow); }
.svc-map .hq-tag-text { font-family: var(--font-body); font-size: 10.5px; font-weight: 800; letter-spacing: .05em; fill: var(--navy-deep); text-transform: uppercase; }
.svc-map .map-compass { fill: rgba(255,255,255,.55); font-family: var(--font-body); font-size: 12px; font-weight: 800; }
.svc-map .map-compass-arrow { fill: none; stroke: rgba(255,255,255,.55); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes hq-pulse { 0% { transform: scale(1); opacity: .9; } 70% { transform: scale(2.1); opacity: 0; } 100% { transform: scale(2.1); opacity: 0; } }
.svc-map-badge {
  position: absolute; bottom: 14px; right: 14px; background: rgba(13,27,42,.72);
  color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.16);
}
.svc-map-legend {
  display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 16px;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.78);
}
.svc-map-legend li { display: inline-flex; align-items: center; gap: 8px; }
.svc-map-legend .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--water); flex-shrink: 0; }
.svc-map-legend .dot-hq { background: var(--yellow); }
.svc-map-legend .dot-line { width: 22px; height: 0; border-top: 3px solid rgba(125,211,252,.6); border-radius: 3px; }
.svc-map-legend .dot-dash { width: 22px; height: 0; border-top: 2px dashed rgba(125,211,252,.7); }

/* ------------------------------------------------------------
   18. FAQ
   ------------------------------------------------------------ */
.faq-section { background: var(--navy-tint); }
.faq-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 820px; margin: 0 auto 32px;
}
.faq-tab {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-pill);
  padding: 10px 20px; font-weight: 700; font-size: .88rem; color: var(--text-muted); cursor: pointer;
  transition: var(--transition);
}
.faq-tab:hover { border-color: var(--blue); color: var(--blue-ink); }
.faq-tab.is-active { background: var(--blue-ink); border-color: var(--blue-ink); color: #fff; box-shadow: var(--shadow-blue); }
.faq-panel { display: none; }
.faq-panel.is-active { display: flex; }
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--blue-tint); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.02rem;
  color: var(--navy-deep); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0; width: 22px; height: 22px;
  background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/13px no-repeat;
  border-radius: 6px; transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item summary:hover { color: var(--blue-ink); }
.faq-answer { padding: 0 24px 22px; color: var(--text-muted); font-size: .96rem; line-height: 1.65; }

/* ------------------------------------------------------------
   19. QUOTE FORM
   ------------------------------------------------------------ */
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); transition: var(--transition); }
a.contact-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); font-weight: 700; }
.contact-item strong { color: var(--navy-deep); font-size: 1.02rem; font-weight: 800; word-break: break-word; }

.quote-badge { margin-top: 8px; }
.quote-badge-logo { width: 220px; height: auto; opacity: .92; }

/* Jobber "fastest way to book" highlight card (contact page) */
.jobber-card {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background:
    radial-gradient(500px 200px at 90% 10%, rgba(56,189,248,.22), transparent 60%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 30px 32px; margin-bottom: 48px;
}
.jobber-card-icon {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.jobber-card-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.jobber-card-copy { flex: 1; min-width: 240px; }
.jobber-card-title { font-family: var(--font-body); font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.jobber-card-desc { color: rgba(255,255,255,.82); font-size: .95rem; }
.jobber-card .btn { flex-shrink: 0; }

.quote-form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .86rem; color: var(--navy-deep); margin-bottom: 7px; }
.label-opt { color: var(--text-dim); font-weight: 500; }
.form-control {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: var(--navy-tint); transition: border-color .2s, box-shadow .2s, background .2s; font-size: .95rem;
}
.form-control::placeholder { color: var(--gray-500); }
.form-control:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(14,165,233,.14); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.form-fineprint { font-size: .78rem; color: var(--text-dim); text-align: center; margin-top: 12px; }
.form-alert {
  display: none; background: #ECFDF5; border: 1px solid #34D399; color: #065F46;
  border-radius: 10px; padding: 16px 18px; margin-bottom: 22px; font-weight: 600; font-size: .93rem;
}
.form-alert.show { display: block; }
form.form-submitted .form-control { opacity: .55; pointer-events: none; }

/* ------------------------------------------------------------
   20. FINAL CTA
   ------------------------------------------------------------ */
.final-cta {
  position: relative; overflow: hidden; padding: 96px 0; text-align: center; color: #fff;
  background:
    radial-gradient(700px 340px at 20% 20%, rgba(56,189,248,.24), transparent 60%),
    radial-gradient(700px 340px at 85% 90%, rgba(14,165,233,.2), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy));
}
.final-cta .section-bubbles span:nth-child(1){ left:12%; width:60px; height:60px; animation:rise 18s linear infinite; }
.final-cta .section-bubbles span:nth-child(2){ left:30%; width:28px; height:28px; animation:rise 12s linear infinite 2s; }
.final-cta .section-bubbles span:nth-child(3){ left:52%; width:80px; height:80px; animation:rise 21s linear infinite 1s; }
.final-cta .section-bubbles span:nth-child(4){ left:72%; width:34px; height:34px; animation:rise 14s linear infinite 3s; }
.final-cta .section-bubbles span:nth-child(5){ left:88%; width:52px; height:52px; animation:rise 17s linear infinite 1.5s; }
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta-title { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4rem); letter-spacing: 1px; line-height: .96; margin-bottom: 16px; }
.final-cta-desc { font-size: 1.14rem; color: rgba(255,255,255,.85); margin-bottom: 34px; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ------------------------------------------------------------
   21. FOOTER
   ------------------------------------------------------------ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 72px 0 32px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 48px; height: 48px; object-fit: contain; }
.footer-logo span { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px; color: #fff; }
.footer-logo span span { color: var(--water); }
.footer-desc { color: rgba(255,255,255,.66); margin-bottom: 18px; max-width: 320px; line-height: 1.6; }
.footer-vet { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; font-size: .88rem; }
.footer-vet .ic { color: var(--yellow); fill: var(--yellow); stroke: var(--yellow); width: 18px; height: 18px; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; margin-top: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8);
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-title { font-family: var(--font-body); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact a { overflow-wrap: anywhere; word-break: break-word; }
.footer-link { color: rgba(255,255,255,.7); }
.footer-link:hover { color: var(--water); }
.footer-contact li { color: rgba(255,255,255,.7); }
.footer-cta-btns { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer-copy { color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-credit { display: inline-flex; align-items: center; gap: 10px; opacity: .72; transition: opacity .25s; }
.footer-credit:hover { opacity: 1; }
.footer-credit span { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 600; }
.footer-credit img { height: 40px; width: auto; }
.footer-admin-link { color: rgba(255,255,255,.42); font-size: .8rem; font-weight: 600; }
.footer-admin-link:hover { color: rgba(255,255,255,.75); }

/* ------------------------------------------------------------
   22. MOBILE STICKY CALL / TEXT BAR
   ------------------------------------------------------------ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
  display: none; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-200); box-shadow: 0 -8px 26px rgba(13,27,42,.12);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 13px 8px; font-weight: 800; font-size: .9rem; border-radius: var(--radius-pill);
}
.sticky-btn .ic { width: 18px; height: 18px; }
.sticky-call { background: linear-gradient(135deg, #037AB4, var(--blue-ink)); color: #fff; }
.sticky-text { background: var(--navy); color: #fff; }
.sticky-quote { background: var(--yellow); color: var(--navy-deep); }

/* ------------------------------------------------------------
   23. REVEAL ANIMATION
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   24. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .services-grid, .plans-grid, .specials-grid, .gallery-grid, .reviews-grid, .benefits-grid, .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid-pillars { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { max-width: 520px; }
  .why-grid, .areas-grid, .quote-grid, .about-grid, .plans-header-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .plans-header-grid .section-header { text-align: center; max-width: 660px; margin: 0 auto; }
  .plans-visual-card { max-width: 240px; }
  .referral-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .referral-icon { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile menu kicks in at 980px — the multi-page nav carries 8 links + CTA */
@media (max-width: 980px) {
  .mobile-menu-toggle { display: flex; }
  .nav.scrolled { background: rgba(255,255,255,.98); }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); z-index: 160;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 6px; padding: 92px 28px 28px; box-shadow: -12px 0 40px rgba(13,27,42,.18);
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--navy-deep) !important; font-size: 1.05rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-link.active::after { display: none; }
  .nav-link.active { color: var(--blue-ink) !important; font-weight: 800; }
  .nav-cta { width: 100%; margin-top: 14px; }
  .nav-cta .btn { width: 100%; }
  /* Must stay below .nav's z-index:150. .nav is sticky, so it opens a stacking
     context: .nav-links' z-index:160 only sorts inside .nav and still paints at
     150. Any scrim above 150 covers the panel — tinting it gray and eating every
     tap, since .show sets pointer-events:all. */
  .nav-scrim { position: fixed; inset: 0; z-index: 140; background: rgba(13,27,42,.5); opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav-scrim.show { opacity: 1; pointer-events: all; }
}

@media (max-width: 860px) {
  .topbar-tagline { display: none; }
  .topbar-login { display: none; } /* keep mobile topbar to essential call/text actions; Client Login still lives in the footer */
  .topbar-inner { justify-content: center; }
  .topbar-actions { gap: 10px; }
  .topbar-link { padding: 10px 8px; } /* larger tap target on mobile */
  .sticky-bar { display: flex; }
  body { padding-bottom: 74px; }
  .section { padding: 72px 0; }
  .hero { padding-bottom: 108px; }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .services-grid, .plans-grid, .specials-grid, .gallery-grid, .reviews-grid, .areas-list, .why-facts, .benefits-grid, .services-grid-4 { grid-template-columns: 1fr; }
  .page-hero { padding-bottom: 88px; }
  .page-hero-ctas { flex-direction: column; align-items: stretch; }
  .jobber-card { padding: 24px 20px; }
  .jobber-card .btn { width: 100%; }
  .faq-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .faq-tab { flex-shrink: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-cta-btns .btn { --btn-py: 12px; } /* ~44px tap target */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; }
  .hero-card-float { right: 0; left: 0; margin: 0 auto; max-width: 100%; bottom: -20px; }
  .hero-title .hl { white-space: normal; }
  .trust-flex { justify-content: flex-start; gap: 12px 22px; }
  .quote-form-card { padding: 26px 20px; }
  .plan-amt, .fact-num { font-size: 2.6rem; }
  .section-header { margin-bottom: 40px; }
  .video-play-btn { width: 58px; height: 58px; border-width: 2px; }
  .video-play-btn svg { width: 22px; height: 22px; }
}

/* ------------------------------------------------------------
   25. REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bubbles, .section-bubbles, .hero-photo-shine, .hero-photo-bubbles { display: none; }
  .hero-photo img { animation: none; }
}
