/* ============================================================
   MID FLORIDA WINDOW CLEANING — v4
   Bright · Clean · Integrated · Trustworthy · Senior-Friendly
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #1a3a5c;
  --navy-dark:  #0f2236;
  --navy-mid:   #1f4570;
  --blue:       #2d7dd2;
  --blue-light: #4a93e0;
  --blue-pale:  #e8f2fc;
  --blue-bg:    #f0f6fd;
  --sky:        #daeeff;
  --white:      #ffffff;
  --off-white:  #f7fafd;
  --gray-light: #eef2f7;
  --gray-mid:   #c8d4e0;
  --gray:       #7a8fa6;
  --text:       #1a2b3c;
  --text-mid:   #3d526a;
  --text-light: #6b8299;

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max:     1160px;
  --pad-x:   48px;
  --sec-v:   88px;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  --shadow-xs: 0 1px 4px rgba(26,58,92,0.06);
  --shadow-sm: 0 4px 16px rgba(26,58,92,0.09);
  --shadow-md: 0 8px 32px rgba(26,58,92,0.13);
  --shadow-lg: 0 20px 60px rgba(26,58,92,0.16);

  --ease: cubic-bezier(0.4,0,0.2,1);
  --t:    0.25s;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.8; font-size: 1.05rem; }
p + p { margin-top: 14px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow-white { color: rgba(255,255,255,0.7); }
.eyebrow-blue  { color: #60adf5; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); }
.section   { padding-block: var(--sec-v); }
.text-center { text-align: center; }
.sec-head   { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center p { margin-inline: auto; }
.sec-head h2 { margin-top: 8px; }
.sec-head p  { margin-top: 14px; font-size: 1.05rem; color: var(--text-mid); max-width: 580px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.02em; padding: 16px 36px;
  border-radius: var(--r-full); border: 2.5px solid transparent;
  cursor: pointer; transition: all var(--t) var(--ease);
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-primary  { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,125,210,0.35); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }
.btn-sm { padding: 12px 26px; font-size: 0.9rem; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gray-light);
  transition: box-shadow var(--t) var(--ease);
}
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(26,58,92,0.12); }
.nav-wrap {
  max-width: var(--max); margin-inline: auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 0;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.nav-logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-sub  { font-size: 0.7rem; font-weight: 600; color: var(--blue); letter-spacing: 0.07em; margin-top: 2px; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  color: var(--text-mid); padding: 8px 16px; border-radius: var(--r-full);
  transition: all var(--t); white-space: nowrap;
}
.nav-links a:hover { background: var(--blue-pale); color: var(--navy); }
.nav-links a.active { color: var(--blue); background: var(--blue-pale); }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 700;
  color: var(--navy); margin-left: 8px; white-space: nowrap;
  transition: color var(--t);
}
.nav-phone svg { color: var(--blue); flex-shrink: 0; }
.nav-phone:hover { color: var(--blue); }
.nav-cta-btn {
  background: var(--blue); color: var(--white) !important;
  padding: 10px 22px; border-radius: var(--r-full);
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  margin-left: 8px; transition: all var(--t); white-space: nowrap;
  border: 2.5px solid var(--blue);
  text-decoration: none; display: inline-flex;
  align-items: center; line-height: 1;
}
.nav-cta-btn:hover {
  background: var(--navy-dark); border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,92,0.25);
}

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}
.nav-burger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--navy); border-radius: 2px; transition: var(--t) var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  padding: 90px 32px 48px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.32s var(--ease);
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay a {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  color: var(--navy); padding: 18px 0;
  border-bottom: 2px solid var(--gray-light); display: block;
  transition: color var(--t), padding-left var(--t);
}
.nav-overlay a:hover { color: var(--blue); padding-left: 10px; }
.ov-phone { font-size: 1.1rem !important; color: var(--blue) !important; border-bottom: none !important; margin-top: 16px; }
.ov-cta {
  font-size: 1rem !important; background: var(--blue); color: var(--white) !important;
  text-align: center; border-radius: var(--r-full); padding: 18px 32px !important;
  border-bottom: none !important; margin-top: 12px;
}

/* ── HERO ──────────────────────────────────────────────────── */
/* The hero uses a real photo on the right in a card frame.
   The left side of the page bleeds into a diagonal photo split. */
.hero {
  padding-top: 80px;
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--sky) 50%, #e0effa 100%);
  position: relative; overflow: hidden; min-height: 90vh;
  display: flex; align-items: center;
}
/* Decorative bleed: right 40% of hero is covered by photo behind a light overlay */
.hero-photo-bg {
  display: none; /* image removed — hidden until photo re-inserted */
}
.hero-photo-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  display: block;
}
/* Gradient mask from left to right — blends photo into blue bg seamlessly */
.hero-photo-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--blue-bg) 0%, rgba(240,246,253,0.6) 30%, rgba(218,238,255,0.15) 100%);
}
/* Top + bottom fade for clean edges */
.hero-photo-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom, var(--blue-bg) 0%, transparent 12%, transparent 88%, var(--blue-bg) 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin-inline: auto;
  padding: 64px var(--pad-x);
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.hero-text { max-width: 540px; }

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 2px solid var(--blue-pale);
  border-radius: var(--r-full); padding: 8px 18px;
  margin-bottom: 22px; box-shadow: var(--shadow-xs);
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse 2.2s ease infinite;
}
.hero-badge span { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--navy); }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }
.hero h1 { color: var(--navy); animation: fadeUp 0.6s 0.1s ease both; }
.hero h1 .accent { color: var(--blue); }
.hero-lead { font-size: 1.1rem; color: var(--text-mid); margin: 18px 0 32px; line-height: 1.75; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.hero-phone-link { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy); transition: color var(--t); }
.hero-phone-link svg { color: var(--blue); }
.hero-phone-link:hover { color: var(--blue); }

/* Hero right: logo lockup integrated into the photo area */
.hero-logo-card {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255,255,255,0.9);
  animation: fadeUp 0.7s 0.2s ease both;
  max-width: 380px;
  margin-left: auto;
}
.hero-logo-img {
  width: 100%; border-radius: var(--r-md); overflow: hidden;
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-logo-img img { width: 100%; display: block; border-radius: var(--r-md); }
.hero-trust-list { display: flex; flex-direction: column; gap: 12px; }
.htc-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--navy);
}
.htc-row svg { color: var(--blue); flex-shrink: 0; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 18px 0; }
.trust-bar-inner {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.tbar-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  color: rgba(255,255,255,0.82); white-space: nowrap;
}
.tbar-item svg { color: #60adf5; flex-shrink: 0; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-strip { background: var(--blue-bg); padding: 56px 0; border-bottom: 2px solid var(--gray-light); }
.stats-grid {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center;
}
.stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; display: block; }
.stat-label { font-size: 0.9rem; font-weight: 600; color: var(--text-light); margin-top: 8px; display: block; line-height: 1.4; }

/* ── About Split — INTEGRATED photo ────────────────────────── */
/* Photo fills the right column edge-to-edge, no border, no frame */
.about-split {
  /* converted to single-column — photo removed */
}
.about-split-text {
  /* no longer used — replaced with plain section */
}
.about-split-photo {
  position: relative; overflow: hidden;
}
.about-split-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-split-photo:hover img { transform: scale(1.03); }
/* Left-edge fade so photo blends into white section */
.about-split-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, transparent 25%);
  pointer-events: none;
}
/* Subtle brand tint */
.about-split-photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: rgba(26,58,92,0.08);
  pointer-events: none;
}

.about-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-check { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--text-mid); font-weight: 600; }
.about-check svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* ── Services Card Grid ─────────────────────────────────────── */
.services-sec { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.svc-card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px 26px;
  border: 2px solid var(--gray-light); transition: all var(--t) var(--ease);
}
.svc-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-icon {
  width: 54px; height: 54px; border-radius: var(--r-md); background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: background var(--t);
}
.svc-card:hover .svc-icon { background: var(--blue); }
.svc-icon svg { color: var(--blue); transition: color var(--t); }
.svc-card:hover .svc-icon svg { color: var(--white); }
.svc-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.svc-card p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

/* ── Why Section (navy, no photos) ─────────────────────────── */
.why-sec { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 30px 24px; transition: all var(--t);
}
.why-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(96,173,245,0.4); }
.why-icon { width: 50px; height: 50px; border-radius: var(--r-md); background: rgba(45,125,210,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon svg { color: #60adf5; }
.why-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 9px; font-weight: 700; }
.why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.75; }

/* ── Phone Strip ────────────────────────────────────────────── */
.phone-strip { background: var(--blue); padding: 36px 0; }
.phone-strip-inner {
  max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.phone-strip h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 3px; }
.phone-strip p  { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.phone-big {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--white); display: flex; align-items: center; gap: 10px; transition: opacity var(--t);
}
.phone-big:hover { opacity: 0.85; }
.phone-big svg { color: rgba(255,255,255,0.65); }

/* ── Reviews Section — photo background, light overlay ──────── */
/* Photo feels like the section's environment, not a box */
.reviews-bg {
  position: relative; overflow: hidden;
  padding: var(--sec-v) 0;
  background: var(--blue-bg);
}
.reviews-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
/* Heavy light overlay so cards stay readable but photo shows through */
.reviews-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(240,246,253,0.93);
}
.reviews-bg-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x);
}
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px 26px;
  border: 2px solid var(--gray-light); transition: all var(--t);
  box-shadow: var(--shadow-xs);
}
.review-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-quote { font-size: 2.6rem; color: var(--blue-pale); line-height: 0.8; font-family: Georgia,serif; margin-bottom: 10px; }
.review-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 2px solid var(--gray-light); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #60adf5; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.review-loc  { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* Facebook CTA box */
.fb-cta-box { background: var(--white); border: 2px solid var(--gray-light); border-radius: var(--r-xl); padding: 44px 36px; text-align: center; margin-top: 48px; box-shadow: var(--shadow-xs); }
.fb-cta-box h3 { margin-bottom: 10px; }
.fb-cta-box p  { color: var(--text-mid); margin-bottom: 26px; font-size: 1rem; }
.btn-facebook {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1877f2; color: var(--white);
  border-radius: var(--r-full); padding: 16px 36px;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  transition: all var(--t); text-decoration: none;
}
.btn-facebook:hover { background: #0f5fc0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,0.35); }

/* ── Areas ──────────────────────────────────────────────────── */
.areas-sec { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.area-card {
  background: var(--blue-bg); border: 2px solid var(--gray-light); border-radius: var(--r-lg);
  padding: 34px 26px; text-align: center; transition: all var(--t);
}
.area-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.area-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.area-icon svg { color: var(--blue); }
.area-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.area-card p  { font-size: 0.9rem; color: var(--text-mid); }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; justify-content: center; }
.area-tag { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--r-full); padding: 4px 13px; font-size: 0.75rem; font-weight: 700; color: var(--navy); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-sec { background: var(--off-white); }
.faq-wrap { max-width: 820px; margin-inline: auto; margin-top: 48px; }
.faq-item { border: 2px solid var(--gray-light); border-radius: var(--r-lg); margin-bottom: 8px; overflow: hidden; transition: border-color var(--t); }
.faq-item.open { border-color: var(--blue); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy);
  cursor: pointer; transition: background var(--t);
}
.faq-btn:hover { background: var(--blue-bg); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--t);
}
.faq-icon svg { color: var(--blue); }
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.36s var(--ease); }
.faq-item.open .faq-body { max-height: 320px; }
.faq-body-inner { padding: 0 26px 22px; border-top: 2px solid var(--gray-light); padding-top: 18px; font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; }

/* ── CTA Banner — photo-backed with strong overlay ──────────── */
/* Image is the atmosphere of this section, not a decoration */
.cta-banner {
  position: relative; overflow: hidden; padding: 96px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}
.cta-banner-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,34,54,0.91) 0%, rgba(26,58,92,0.85) 100%);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; }
.cta-actions   { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Footer — subtle suds/water photo in background ─────────── */
.footer { background: var(--navy-dark); position: relative; overflow: hidden; }
.footer-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.07; /* very subtle texture */
  mix-blend-mode: luminosity;
}
.footer-main {
  position: relative; z-index: 1;
  max-width: var(--max); margin-inline: auto;
  padding: 72px var(--pad-x) 52px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px;
}
.foot-brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--white); display: block; margin-bottom: 3px; }
.foot-brand-sub  { font-size: 0.75rem; font-weight: 700; color: #60adf5; letter-spacing: 0.08em; display: block; margin-bottom: 16px; }
.foot-brand p    { font-size: 0.88rem; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 260px; }
.foot-col h5 { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #60adf5; margin-bottom: 18px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.48); transition: color var(--t); }
.foot-col ul a:hover { color: var(--white); }
.foot-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.foot-contact-item svg { color: #60adf5; flex-shrink: 0; margin-top: 2px; }
.foot-contact-item span, .foot-contact-item a { font-size: 0.88rem; color: rgba(255,255,255,0.52); line-height: 1.5; transition: color var(--t); }
.foot-contact-item a:hover { color: var(--white); }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px var(--pad-x); max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color var(--t); }
.foot-links a:hover { color: rgba(255,255,255,0.55); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
/* Suds/water photo bleeds under navy overlay for atmosphere */
.page-hero {
  padding: 130px var(--pad-x) 72px;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,34,54,0.92) 0%, rgba(26,58,92,0.88) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero .lead {
  font-size: clamp(1rem,1.8vw,1.2rem); color: rgba(255,255,255,0.72);
  max-width: 560px; margin: 16px auto 0; line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 14px; font-size: 0.8rem; color: rgba(255,255,255,0.42);
  position: relative; z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,0.62); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-sec { background: var(--blue-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.cdet {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; background: var(--white);
  border-radius: var(--r-lg); border: 2px solid var(--gray-light);
}
.cdet-icon { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cdet-icon svg { color: var(--blue); }
.cdet-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); display: block; }
.cdet-value { font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: 3px; display: block; line-height: 1.4; }
.cdet-value a { color: var(--navy); transition: color var(--t); }
.cdet-value a:hover { color: var(--blue); }
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 48px 42px; box-shadow: var(--shadow-md); border: 2px solid var(--gray-light); }
.form-card h3 { margin-bottom: 26px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--gray-mid);
  border-radius: var(--r-md); font-size: 1rem; color: var(--text); background: var(--white);
  transition: border-color var(--t), box-shadow var(--t); -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,125,210,0.12); }
.fg textarea { resize: vertical; min-height: 112px; }
.fg select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a3a5c' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.btn-submit { width: 100%; margin-top: 6px; font-size: 1.05rem; padding: 18px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 36px 16px; }
.form-success svg { color: #22c55e; margin: 0 auto 14px; }
.form-success h4 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; color: var(--text-mid); }

/* ── Map ────────────────────────────────────────────────────── */
.map-embed iframe { width: 100%; height: 400px; border: none; display: block; }

/* ── Area Detail ────────────────────────────────────────────── */
.area-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.area-detail-card {
  background: var(--white); border-radius: var(--r-lg); padding: 38px 34px;
  border: 2px solid var(--gray-light); transition: all var(--t);
}
.area-detail-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ── Values grid (About) ────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.val-card { background: var(--blue-bg); border: 2px solid var(--blue-pale); border-radius: var(--r-lg); padding: 20px; border-left: 4px solid var(--blue); }
.val-card h4 { color: var(--navy); margin-bottom: 5px; font-size: 0.95rem; }
.val-card p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer-bar { background: var(--navy-dark); padding: 14px 0; text-align: center; }
.disclaimer-bar p { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.58); margin: 0; }
.disclaimer-bar strong { color: rgba(255,255,255,0.88); }

/* ── Mobile Sticky CTA ──────────────────────────────────────── */
.mob-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900; background: var(--white); padding: 11px 16px;
  border-top: 2px solid var(--gray-light); gap: 10px;
  box-shadow: 0 -4px 20px rgba(26,58,92,0.1);
}
.mob-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 14px 10px; border-radius: var(--r-full);
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; text-decoration: none;
}
.mc-call  { background: var(--blue); color: var(--white); }
.mc-quote { background: transparent; color: var(--navy); border: 2.5px solid var(--navy); }

/* ── 404 ────────────────────────────────────────────────────── */
.err-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; background: var(--blue-bg); }
.err-code { font-family: var(--font-head); font-size: 9rem; font-weight: 800; color: var(--blue-pale); line-height: 1; display: block; }
.err-page h1 { color: var(--navy); font-size: 2rem; margin: 12px 0; }
.err-page p  { color: var(--text-mid); max-width: 440px; margin: 0 auto 28px; }

/* ── Scroll Animations ──────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
[data-delay="1"]{transition-delay:0.08s} [data-delay="2"]{transition-delay:0.16s}
[data-delay="3"]{transition-delay:0.24s} [data-delay="4"]{transition-delay:0.32s}
[data-delay="5"]{transition-delay:0.40s} [data-delay="6"]{transition-delay:0.48s}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; --sec-v: 72px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-logo-card { max-width: 320px; }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; --sec-v: 60px; }
  body { font-size: 17px; }

  /* Nav: hide desktop links, show burger */
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-overlay { display: flex; }

  /* Hero: stack vertically, photo in full bleed behind */
  .hero { min-height: auto; }
  .hero-photo-bg { display: none; } /* hide the bleed bg on mobile */
  .hero { background: linear-gradient(160deg, var(--blue-bg) 0%, var(--sky) 100%); }
  .hero-inner {
    grid-template-columns: 1fr; gap: 32px;
    padding: 48px var(--pad-x);
  }
  .hero-text { max-width: 100%; }
  .hero-logo-card { max-width: 100%; margin-left: 0; padding: 28px 24px; }
  .hero-logo-img { margin-bottom: 18px; }

  /* About split: stack, photo first */
  .about-split { grid-template-columns: 1fr; }
  .about-split-photo { min-height: 300px; order: -1; }
  .about-split-photo::before { background: linear-gradient(to bottom, transparent 70%, rgba(255,255,255,0.5) 100%); }
  .about-split-text { padding: 44px var(--pad-x); }

  .services-grid, .why-grid, .areas-grid, .review-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* About 2-col stacks on mobile */
  .about-owner-2col { grid-template-columns: 1fr !important; gap: 32px !important; }

  .mob-cta { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 18px; --sec-v: 52px; }
  body { font-size: 16px; }
  h1 { font-size: 2rem; } h2 { font-size: 1.65rem; }

  .services-grid, .why-grid, .areas-grid, .review-grid,
  .area-detail-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .phone-strip-inner { flex-direction: column; gap: 16px; text-align: center; }
  .phone-big { font-size: 1.75rem; }
  .trust-bar-inner { gap: 18px; justify-content: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; justify-content: center; }
  .cta-banner { padding: 64px 0; }
  .page-hero { padding: 110px var(--pad-x) 56px; }
  .fb-cta-box { padding: 32px 22px; }
  .about-split-photo { min-height: 240px; }
}
