/* ============================================================
   MADISON AVE CONSTRUCTION — style.css
   ============================================================ */

:root {
  --blue-900: #0c2340;
  --blue-800: #0f3460;
  --blue-700: #155891;
  --blue-600: #1a6ab5;
  --blue-500: #2280d2;
  --blue-400: #4a9fe0;
  --blue-100: #ddeeff;
  --blue-50:  #eef6ff;
  --red:       #c0392b;
  --red-hover: #a93226;
  --orange:    #e07b2a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;
  --success:    #16a34a;
  --success-bg: #dcfce7;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --max-w: 1200px;
  --bar-h: 40px;
  --nav-h: 72px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --sh-sm:   0 1px 4px rgba(0,0,0,0.08);
  --sh-md:   0 4px 16px rgba(0,0,0,0.10);
  --sh-lg:   0 8px 32px rgba(0,0,0,0.13);
  --sh-xl:   0 16px 48px rgba(0,0,0,0.16);
  --sh-blue: 0 6px 24px rgba(26,106,181,0.28);
}

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

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 600px) { .container { padding: 0 1rem; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* PULSE */
.pulse-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex-shrink: 0; animation: pulse 2s infinite; }
.pulse-dot--small { width: 7px; height: 7px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

/* SECTION UTILITIES */
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-600); background: var(--blue-50); border: 1px solid var(--blue-100); padding: 3px 10px; border-radius: var(--r-sm); margin-bottom: 0.75rem; }
.section-eyebrow--white { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--gray-900); line-height: 1.12; margin-bottom: 0.9rem; }
.section-title--white { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.7rem 1.5rem; border-radius: var(--r-md); font-weight: 600; font-size: 0.95rem; transition: all 0.2s ease; white-space: nowrap; cursor: pointer; line-height: 1; }
.btn--primary { background: var(--blue-600); color: var(--white); box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 10px 32px rgba(26,106,181,0.38); }
.btn--nav-call { background: var(--red); color: var(--white); box-shadow: 0 3px 12px rgba(192,57,43,0.35); padding: 0.5rem 1rem; gap: 0.5rem; align-items: center; }
.btn--nav-call:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-call-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-call-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.btn-call-number { font-size: 0.95rem; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.02em; }
.btn--hero-primary { background: var(--red); color: var(--white); font-size: 1.05rem; font-weight: 700; padding: 1rem 2rem; box-shadow: 0 6px 22px rgba(192,57,43,0.45); }
.btn--hero-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,57,43,0.5); }
.btn--hero-secondary { background: rgba(255,255,255,0.1); color: var(--white); font-size: 1rem; font-weight: 600; padding: 1rem 1.75rem; border: 1.5px solid rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn--hero-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.75); transform: translateY(-2px); }
.btn--cta-primary { background: var(--white); color: var(--blue-700); font-size: 1.2rem; font-weight: 700; padding: 1.1rem 2.5rem; box-shadow: var(--sh-xl); }
.btn--cta-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 56px rgba(0,0,0,0.22); }
.btn--cta-secondary { background: transparent; color: var(--white); font-size: 1rem; font-weight: 600; padding: 1rem 2rem; border: 2px solid rgba(255,255,255,0.5); }
.btn--cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn--form-submit { width: 100%; background: var(--red); color: var(--white); font-size: 1rem; font-weight: 700; padding: 1rem 2rem; justify-content: center; box-shadow: 0 4px 18px rgba(192,57,43,0.35); }
.btn--form-submit:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 8px 26px rgba(192,57,43,0.45); }
.btn--form-submit:disabled { opacity: 0.7; transform: none; cursor: not-allowed; }

/* EMERGENCY BAR */
.emergency-bar { background: var(--blue-900); height: var(--bar-h); display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; }
.emergency-bar__inner { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.emergency-bar__left { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: rgba(255,255,255,0.82); font-weight: 500; }
.emergency-bar__right { display: flex; align-items: center; gap: 1rem; }
.service-area-tag { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.emergency-bar__call { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--red); color: var(--white); font-size: 0.82rem; font-weight: 700; padding: 4px 14px; border-radius: var(--r-sm); transition: background 0.2s; letter-spacing: 0.02em; }
.emergency-bar__call:hover { background: var(--red-hover); }
@media (max-width: 600px) { .service-area-tag { display: none; } .emergency-bar__left span:last-child { font-size: 0.7rem; } }

/* NAVBAR */
.navbar { height: var(--nav-h); background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: var(--bar-h); z-index: 999; transition: box-shadow 0.3s; }
.navbar.is-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.09); }
.navbar__inner { height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar__logo { display: flex; align-items: center; flex-shrink: 0; gap: 0.6rem; }
.navbar__logo-img { height: 52px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; display: block; }
.logo-fallback { display: flex; align-items: center; gap: 0.6rem; }
.logo-fallback__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-fallback__main { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--blue-800); }
.logo-fallback__sub { font-size: 0.65rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }

/* Company name beside navbar logo */
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}
.navbar__links { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.navbar__links li a { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); transition: color 0.2s; position: relative; }
.navbar__links li a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--blue-600); transform: scaleX(0); transition: transform 0.2s; }
.navbar__links li a:hover, .navbar__links li a.is-active { color: var(--blue-700); }
.navbar__links li a:hover::after, .navbar__links li a.is-active::after { transform: scaleX(1); }
.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.28s; }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 960px) {
  .navbar__links { position: fixed; top: calc(var(--bar-h) + var(--nav-h)); left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 0; box-shadow: var(--sh-lg); transform: translateY(-110%); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; z-index: 997; border-bottom: 1px solid var(--gray-200); justify-content: flex-start; pointer-events: none; }
  .navbar__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .navbar__links li { width: 100%; border-bottom: 1px solid var(--gray-100); }
  .navbar__links li a { display: block; padding: 1rem 1.5rem; font-size: 1rem; }
  .navbar__links li a::after { display: none; }
  .hamburger { display: flex; }
  .navbar__logo-img { height: 44px; max-width: 160px; }
  .btn-call-number { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .btn--nav-call .btn-call-label { display: none; }
  .btn--nav-call .btn-call-number { font-size: 0.9rem; }
  .btn--nav-call { padding: 0.55rem 0.9rem; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { position: relative; min-height: calc(100vh - var(--bar-h) - var(--nav-h)); display: flex; align-items: center; background: var(--blue-900); overflow: hidden; }

.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0c2340 0%, #0f3a6e 45%, #155891 80%, #1a6ab5 100%); }

.hero__pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px); }

.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,35,64,0.6) 0%, rgba(12,35,64,0.1) 55%, transparent 100%); }

/* Logo watermark — replaces hex pattern, right side of hero */
.hero__logo-watermark {
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
  max-width: 760px;
  aspect-ratio: 4 / 3;
  z-index: 1;
  background-image: url('assets/images/logo-transparent.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: 0.13;
  /* Fade: visible on left, fades toward right where text is */
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,0.5) 65%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,0.5) 65%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 1080px) { .hero__logo-watermark { width: 50%; opacity: 0.09; } }
@media (max-width: 768px) { .hero__logo-watermark { width: 85%; left: 50%; transform: translate(-50%, -50%); opacity: 0.06; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 100%); mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 100%); } }

.hero__content { position: relative; z-index: 2; padding: 5rem 0; max-width: 680px; }

.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(192,57,43,0.18); border: 1px solid rgba(192,57,43,0.4); color: #ffb3aa; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem; }

/* Company name above hero headline */
.hero__company-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hero__headline { font-family: var(--font-display); font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; color: var(--white); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 1.4rem; }
.hero__headline-accent { color: #7ec8f7; }

.hero__subheadline { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.82); line-height: 1.72; margin-bottom: 2.2rem; max-width: 540px; }
.hero__subheadline strong { color: var(--white); }

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__trust { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; }
.trust-badge svg { opacity: 0.7; flex-shrink: 0; }

/* Floating emergency card */
.hero__float-card { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--sh-xl); min-width: 258px; max-width: 280px; z-index: 3; border-top: 4px solid var(--red); }
.float-card__header { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.6rem; }
.float-card__number { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--blue-800); margin-bottom: 0.6rem; transition: color 0.2s; line-height: 1; }
.float-card__number:hover { color: var(--red); }
.float-card__note { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 1rem; }
.float-card__link { font-size: 0.82rem; font-weight: 600; color: var(--blue-600); transition: color 0.2s; }
.float-card__link:hover { color: var(--red); }

@media (max-width: 1080px) { .hero__float-card { display: none; } }
@media (max-width: 600px) {
  .hero { min-height: auto; padding: 2rem 0; }
  .hero__headline { font-size: 2.5rem; }
  .hero__ctas { flex-direction: column; }
  .btn--hero-primary, .btn--hero-secondary { width: 100%; justify-content: center; }
  .hero__content { padding: 3.5rem 0; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section { background: var(--blue-700); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card { text-align: center; padding: 2.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-card:last-child { border-right: none; }
.stat-card__number { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1; display: inline; }
.stat-card__suffix { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2.2rem); font-weight: 700; color: rgba(255,255,255,0.55); display: inline; }
.stat-card__label { font-size: 0.82rem; color: rgba(255,255,255,0.62); font-weight: 500; margin-top: 0.4rem; letter-spacing: 0.02em; }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-card:last-child { border-bottom: none; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 6rem 0; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; transition: all 0.28s ease; box-shadow: var(--sh-sm); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--blue-400); }
.service-card__icon { width: 64px; height: 64px; background: var(--blue-50); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--blue-600); margin-bottom: 1.25rem; transition: all 0.28s; }
.service-card:hover .service-card__icon { background: var(--blue-600); color: var(--white); }
.service-card__icon--red { background: #fef2f2; color: var(--red); }
.service-card:hover .service-card__icon--red { background: var(--red); color: var(--white); }
.service-card__icon--green { background: #f0fdf4; color: #16a34a; }
.service-card:hover .service-card__icon--green { background: #16a34a; color: var(--white); }
.service-card__icon--slate { background: #f8fafc; color: #475569; }
.service-card:hover .service-card__icon--slate { background: #475569; color: var(--white); }
.service-card__icon--amber { background: #fffbeb; color: var(--orange); }
.service-card:hover .service-card__icon--amber { background: var(--orange); color: var(--white); }
.service-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.65rem; line-height: 1.15; }
.service-card__desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.service-card__features { flex: 1; margin-bottom: 1.5rem; }
.service-card__features li { font-size: 0.83rem; color: var(--gray-700); padding: 0.45rem 0 0.45rem 1.2rem; border-bottom: 1px solid var(--gray-100); position: relative; }
.service-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-600); font-weight: 700; font-size: 0.78rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; font-weight: 700; color: var(--red); margin-top: auto; transition: gap 0.2s, color 0.2s; }
.service-card__link:hover { gap: 0.7rem; color: var(--red-hover); }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--blue-800); padding: 6rem 0; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(34,128,210,0.2) 0%, transparent 70%); pointer-events: none; }
.why-section__inner { display: grid; grid-template-columns: 1fr 360px; gap: 5rem; align-items: center; }
.why-section__intro { font-size: 1.02rem; color: rgba(255,255,255,0.72); line-height: 1.72; margin-bottom: 2.25rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.why-item__icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: #7ec8f7; flex-shrink: 0; }
.why-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 3px; line-height: 1.3; }
.why-item p { font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.55; }
.certifications-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.cert-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 0.85rem; transition: background 0.2s; }
.cert-card:hover { background: rgba(255,255,255,0.11); }
.cert-card__check { width: 34px; height: 34px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.cert-card__text { display: flex; flex-direction: column; }
.cert-card__text strong { font-size: 0.88rem; color: var(--white); font-weight: 600; }
.cert-card__text span { font-size: 0.74rem; color: rgba(255,255,255,0.48); }
@keyframes pulse-red-card {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}
.cert-card--cta {
  background: rgba(192,57,43,0.2);
  border-color: rgba(192,57,43,0.35);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  animation: pulse-red-card 2s infinite;
}
.cert-card__stars { font-size: 1.1rem; color: #fbbf24; letter-spacing: 2px; }
.cert-card--cta strong { font-size: 1rem; color: var(--white); font-weight: 700; }
.cert-card--cta span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.cert-cta-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--white); color: var(--blue-800); font-weight: 700; font-size: 0.88rem; padding: 0.5rem 1rem; border-radius: var(--r-md); margin-top: 0.5rem; transition: all 0.2s; }
.cert-cta-btn:hover { background: var(--blue-50); }
@media (max-width: 1000px) { .why-section__inner { grid-template-columns: 1fr; gap: 3rem; } .certifications-stack { display: grid; grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } .certifications-stack { grid-template-columns: 1fr; } }

/* ============================================================
   INSURANCE SECTION
   ============================================================ */
.insurance-section { padding: 6rem 0 3rem; background: var(--white); }
.insurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.insurance-step { padding: 1.75rem; border-radius: var(--r-lg); background: var(--gray-50); border: 1px solid var(--gray-200); transition: all 0.25s; }
.insurance-step:hover { background: var(--white); box-shadow: var(--sh-md); border-color: var(--blue-400); }
.insurance-step__num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--blue-100); line-height: 1; margin-bottom: 0.6rem; }
.insurance-step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.6rem; }
.insurance-step p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 960px) { .insurance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .insurance-grid { grid-template-columns: 1fr; } }
.insurance-carriers { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--r-xl); padding: 2.25rem; text-align: center; }
.insurance-carriers__label { font-size: 0.82rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.insurance-carriers__list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.insurance-carriers__list span { background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; padding: 4px 14px; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: 6rem 0; background: var(--gray-50); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { border-radius: var(--r-lg); overflow: hidden; background: var(--white); box-shadow: var(--sh-md); border: 1px solid var(--gray-200); transition: transform 0.28s, box-shadow 0.28s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.gallery-item__row { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-half { position: relative; }
.gallery-tag { position: absolute; top: 0.6rem; left: 0.6rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-sm); z-index: 2; }
.gallery-tag--before { background: rgba(0,0,0,0.65); color: var(--white); }
.gallery-tag--after { background: var(--success); color: var(--white); }
.gallery-placeholder { height: 175px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; font-size: 0.78rem; font-weight: 600; }
.gallery-placeholder--water { background: linear-gradient(135deg, #93c5fd, #60a5fa); color: #1e3a5f; }
.gallery-placeholder--fire { background: linear-gradient(135deg, #6b7280, #4b5563); color: rgba(255,255,255,0.65); }
.gallery-placeholder--mold { background: linear-gradient(135deg, #5b7a5b, #3d5c3d); color: rgba(255,255,255,0.65); }
.gallery-placeholder--restored { background: linear-gradient(135deg, #bbf7d0, #86efac); color: #14532d; }
.gallery-item__caption { padding: 0.75rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--gray-700); border-top: 1px solid var(--gray-100); background: var(--white); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS — overflow fixed
   ============================================================ */
.testimonials-section { padding: 3rem 0 6rem; background: var(--white); overflow: hidden; }

.testimonials-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

/* KEY FIX: flex-basis relative to wrapper, not unconstrained track */
.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.testimonial-card:hover { box-shadow: var(--sh-md); border-color: var(--blue-400); }

.testimonial-card__stars { font-size: 1.1rem; color: #f59e0b; letter-spacing: 2px; margin-bottom: 1rem; line-height: 1; }

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  /* overflow fix */
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
  min-width: 0;
}
.testimonial-card__text::before { content: '\201C'; }
.testimonial-card__text::after  { content: '\201D'; }

.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.testimonial-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-600); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.testimonial-card__author-info { min-width: 0; overflow: hidden; }
.testimonial-card__author-info strong { display: block; font-size: 0.88rem; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testimonial-card__author-info span { font-size: 0.75rem; color: var(--gray-500); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonials-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--gray-300); display: flex; align-items: center; justify-content: center; color: var(--gray-600); transition: all 0.2s; flex-shrink: 0; }
.testimonials-btn:hover { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }
.testimonials-dots { display: flex; gap: 0.4rem; align-items: center; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); transition: all 0.25s; cursor: pointer; border: none; flex-shrink: 0; }
.testimonial-dot.is-active { background: var(--blue-600); width: 22px; border-radius: 4px; }

/* Responsive breakpoints */
@media (max-width: 860px) {
  .testimonial-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  .testimonial-card__text { font-size: 0.9rem; }
}
@media (max-width: 540px) {
  .testimonial-card { flex: 0 0 100%; padding: 1.5rem; }
  .testimonials-section { padding: 3.5rem 0; }
  .testimonial-card__text { font-size: 0.88rem; line-height: 1.7; }
  .testimonial-card__stars { font-size: 1rem; }
}
@media (max-width: 360px) {
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card__text { font-size: 0.85rem; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section { padding: 6rem 0; background: var(--blue-50); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.area-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.75rem; transition: all 0.25s; box-shadow: var(--sh-sm); }
.area-card:hover { box-shadow: var(--sh-md); border-color: var(--blue-500); transform: translateY(-3px); }
.area-card__icon { width: 50px; height: 50px; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--blue-600); margin-bottom: 1rem; }
.area-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.6rem; }
.area-card p { font-size: 0.84rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 0.85rem; }
.area-card ul li { font-size: 0.8rem; color: var(--gray-700); padding: 0.3rem 0 0.3rem 1.1rem; position: relative; border-bottom: 1px solid var(--gray-100); }
.area-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue-600); font-size: 0.72rem; }
@media (max-width: 960px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .areas-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; padding: 6rem 0; background: var(--blue-700); text-align: center; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px); }
.cta-section__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-section__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.cta-section__headline { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 1.25rem; }
.cta-section__sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-section__reassurance { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-section__reassurance span { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }
@media (max-width: 500px) { .cta-section__actions { flex-direction: column; align-items: center; } .btn--cta-primary, .btn--cta-secondary { width: 100%; justify-content: center; } }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 6rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info .section-title { margin-bottom: 0.75rem; }
.contact-info > p { font-size: 0.98rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-detail svg { color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-detail a, .contact-detail span { font-size: 0.95rem; color: var(--gray-800); font-weight: 500; }
.contact-detail a:hover { color: var(--blue-600); }
.contact-form-wrap { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--sh-sm); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--gray-700); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--gray-300); border-radius: var(--r-md); font-size: 0.95rem; color: var(--gray-800); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(26,106,181,0.1); }
.form-group input.has-error, .form-group select.has-error { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-disclaimer { font-size: 0.76rem; color: var(--gray-500); text-align: center; line-height: 1.5; margin-top: 0.25rem; }
.form-disclaimer a { color: var(--blue-600); text-decoration: underline; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 1.5rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-900); color: var(--white); }
.footer__top { padding: 4.5rem 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer__logo-link { display: inline-flex; align-items: center; margin-bottom: 1.25rem; }
/* Footer logo — NO filter/invert, show original colors */
.footer__logo-img { height: 60px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; }
.logo-fallback--footer { align-items: center; }
.logo-fallback--footer .logo-fallback__main { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer__brand > p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: 0.65rem; margin-bottom: 1.25rem; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.social-icon:hover { background: var(--blue-600); color: var(--white); }
.footer__emergency-call { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--red); color: var(--white); font-size: 1rem; font-weight: 700; padding: 0.6rem 1.25rem; border-radius: var(--r-md); font-family: var(--font-display); letter-spacing: 0.02em; transition: background 0.2s; }
.footer__emergency-call:hover { background: var(--red-hover); }
.footer__col h4 { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--white); }
.footer__contact-mini { margin-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
.footer__contact-mini a, .footer__contact-mini span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.6; }
.footer__contact-mini a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0; }
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer__bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .footer__brand { grid-column: span 2; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } .footer__brand { grid-column: span 1; } }

/* ============================================================
   MOBILE STICKY CALL
   ============================================================ */
.mobile-sticky-call { display: none; position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); border-radius: 100px; padding: 0.85rem 1.75rem; font-size: 0.95rem; font-weight: 700; box-shadow: 0 6px 24px rgba(192,57,43,0.5); z-index: 9999; align-items: center; gap: 0.6rem; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
.mobile-sticky-call:hover { background: var(--red-hover); transform: translateX(-50%) scale(1.03); }
@media (max-width: 768px) { .mobile-sticky-call { display: flex; } }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(12,35,64,0.65); backdrop-filter: blur(4px); z-index: 10000; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.is-open { display: flex; }
.modal { background: var(--white); border-radius: var(--r-xl); padding: 2.5rem; max-width: 400px; width: 100%; text-align: center; box-shadow: var(--sh-xl); animation: modal-pop 0.28s ease; }
@keyframes modal-pop { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal__icon { width: 68px; height: 68px; border-radius: 50%; background: var(--success-bg); color: var(--success); font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.modal h3 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--gray-900); margin-bottom: 0.75rem; }
.modal p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.5rem; }
.modal p a { color: var(--blue-600); font-weight: 600; }

/* ============================================================
   GLOBAL MOBILE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .services-section, .why-section, .insurance-section, .gallery-section,
  .testimonials-section, .areas-section, .contact-section { padding: 4rem 0; }
  .cta-section { padding: 4rem 0; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   NETLIFY HONEYPOT
   ============================================================ */
.bot-field-wrap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ============================================================
   NAVBAR DROPDOWN MENU
   ============================================================ */
.nav-has-dropdown {
  position: relative;
}

/* Chevron arrow beside "Services" */
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Show dropdown on hover (desktop) */
.nav-has-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* The dropdown panel */
.nav-dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  /* Padding-top bridges the gap between the nav link and the panel
     so the mouse doesn't lose hover state while crossing the gap */
  padding: 8px 0 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  /* Small delay on hide so mouse can travel to the panel */
  transition-delay: 0s;
  z-index: 998;
  list-style: none;
}

/* Invisible bridge above the panel that catches the mouse
   as it moves from the nav link down to the dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

/* Decorative arrow pointer */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

/* Reveal on hover — trigger on the li so hovering the panel
   itself also keeps it open */
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* Hide with a short delay so a brief mouse-off doesn't instantly close */
.nav-dropdown {
  transition: opacity 0.18s ease 0.1s, transform 0.18s ease 0.1s;
}
.nav-has-dropdown:hover .nav-dropdown {
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s;
}

/* Dropdown links */
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  border-bottom: none !important;
}
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown li a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

/* Divider between restoration services and commercial */
.nav-dropdown__divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0.4rem 0;
}

/* Featured "Commercial Construction" link */
.nav-dropdown__featured {
  display: flex !important;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.65rem 1.1rem !important;
  background: var(--blue-50) !important;
  color: var(--blue-700) !important;
  font-weight: 600 !important;
  border-top: none;
  margin: 0 0.4rem 0.4rem;
  border-radius: var(--r-md);
}
.nav-dropdown__featured:hover {
  background: var(--blue-100) !important;
}
.nav-dropdown__featured-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-500);
  opacity: 0.8;
}

/* ── MOBILE: dropdown becomes stacked list ─────────────────── */
@media (max-width: 960px) {
  /* Reset absolute positioning for mobile */
  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    background: var(--gray-50);
    display: none;
  }

  /* Show when parent li has .is-open */
  .nav-has-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown-arrow {
    margin-left: auto;
  }
  .nav-has-dropdown.is-open .nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown li a {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100) !important;
  }

  .nav-dropdown__divider { display: none; }

  .nav-dropdown__featured {
    margin: 0;
    border-radius: 0;
    background: var(--blue-50) !important;
    padding: 0.75rem 2rem !important;
  }
}

/* ============================================================
   ABOUT STRIP — Homepage full-service intro
   ============================================================ */
.about-strip { padding: 5rem 0; background: var(--white); }
.about-strip__inner { display: grid; grid-template-columns: 1fr 280px; gap: 5rem; align-items: center; }
.about-strip__content .section-title { margin-bottom: 1.1rem; }
.about-strip__content > p { font-size: 1rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1rem; }
.about-strip__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.about-badge { display: flex; align-items: center; gap: 0.75rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-md); padding: 0.75rem 1rem; }
.about-badge__check { width: 32px; height: 32px; border-radius: 50%; background: var(--success); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.about-badge__text { display: flex; flex-direction: column; }
.about-badge__text strong { font-size: 0.85rem; color: var(--gray-900); font-weight: 600; }
.about-badge__text span { font-size: 0.72rem; color: var(--gray-500); }
.about-rating-card { background: var(--blue-900); border-radius: var(--r-xl); padding: 2rem; text-align: center; }
.about-rating-card__stars { font-size: 1.4rem; color: #fbbf24; letter-spacing: 3px; margin-bottom: 0.5rem; }
.about-rating-card__score { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.4rem; }
.about-rating-card__count { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
@media (max-width: 960px) { .about-strip__inner { grid-template-columns: 1fr; gap: 3rem; } .about-strip__rating { max-width: 320px; } }
@media (max-width: 540px) { .about-strip__badges { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES CATEGORIES — Two-category layout
   ============================================================ */
.services-category { margin-bottom: 3rem; }
.services-category__header { margin-bottom: 2.5rem; }
.services-category__label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 0.75rem; }
.services-category__label--red { background: rgba(192,57,43,0.1); color: var(--red); border: 1px solid rgba(192,57,43,0.25); }
.services-category__label--blue { background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); }
.services-category__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--gray-900); line-height: 1.12; margin-bottom: 0.7rem; }
.services-category__sub { font-size: 0.98rem; color: var(--gray-600); line-height: 1.7; max-width: 680px; }

.services-divider { display: flex; align-items: center; gap: 1.5rem; margin: 3rem 0; }
.services-divider__line { flex: 1; height: 1px; background: var(--gray-200); }
.services-divider__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); white-space: nowrap; }

/* Service card title links */
.service-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.service-card__title a:hover {
  color: var(--blue-600);
}

/* Insurance carriers note */
.insurance-carriers__note {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.insurance-carriers__note strong {
  color: var(--blue-700);
}

/* Testimonial platform badge */
.testimonial-card__platform {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
}
.testimonial-card__platform--facebook span { color: #1877F2; }
.testimonial-card__platform--homeadvisor span { color: #F4A21F; }
.testimonial-card__platform--google span { color: #34A853; }
}
