/* ══════════════════════════════════════════════════════════════
   FAST HVAC WordPress Theme — Main Stylesheet
   ══════════════════════════════════════════════════════════════ */

/* ── Google Font import (fallback; primary load via wp_enqueue) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --blue:        #0a4ea6;
  --blue-dark:   #083d84;
  --blue-light:  #e8f0fb;
  --navy:        #0b172a;
  --red:         #cc1a0a;
  --red-dark:    #a81509;
  --white:       #ffffff;
  --light:       #f5f7fa;
  --border:      #dde4ef;
  --muted:       #6b7a99;
  --text:        #0d1c33;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --container:   1200px;
  --nav-h:       80px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
svg { display: inline-block; flex-shrink: 0; }

/* ── Layout ───────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.bg-white   { background: var(--white); }
.bg-light   { background: var(--light); }
.bg-blue    { background: var(--blue); }
.bg-navy    { background: var(--navy); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 700;
  font-size: 15px; line-height: 1; border: 2px solid transparent;
  transition: background .2s, border-color .2s, color .2s, transform .1s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.97); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-lg svg { width: 20px; height: 20px; }
.btn-full { width: 100%; }

.btn-red  { background: var(--red);  color: var(--white); border-color: var(--red-dark); }
.btn-red:hover  { background: var(--red-dark); border-color: var(--red-dark); }

.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue-dark); }
.btn-blue:hover { background: var(--blue-dark); }

.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: #f0f4ff; }

.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Stars ────────────────────────────────────────────────────── */
.star { width: 20px; height: 20px; fill: #facc15; }
.stars-row { display: flex; gap: 4px; }
.stars-row .star { width: 28px; height: 28px; }

/* ── Section headers ──────────────────────────────────────────── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.section-header p  { font-size: 1.1rem; color: var(--muted); }
.section-cta { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px; background: var(--blue); color: var(--white);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { font-size: 1.35rem; font-weight: 800; letter-spacing: -.5px; color: var(--text); }
.logo-text span { color: var(--blue); }

/* Desktop Nav */
.primary-nav ul { display: flex; align-items: center; gap: 8px; }
.primary-nav a {
  display: block; padding: 8px 12px; border-radius: 6px;
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .2s, background .2s;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--blue); }
.nav-cta { padding: 10px 20px; font-size: .875rem; }

/* Hamburger */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; z-index: 1010;
}
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: var(--radius);
  font-weight: 500; color: var(--text); transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: var(--light); color: var(--blue); }
.mobile-call-btn { width: 100%; justify-content: center; }

/* Floating call button */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(204,26,10,.5);
  animation: pulse-btn 2s infinite;
}
.float-call svg { width: 26px; height: 26px; }
.float-call-ping {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: var(--red); opacity: .5;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes pulse-btn { 0%,100%{box-shadow:0 4px 20px rgba(204,26,10,.5)} 50%{box-shadow:0 4px 30px rgba(204,26,10,.75)} }
@keyframes ping { 75%,100%{transform:scale(2);opacity:0} }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,23,42,.95) 0%, rgba(11,23,42,.80) 55%, rgba(11,23,42,.40) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: .875rem; font-weight: 500;
  backdrop-filter: blur(8px); margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; color: #60a5fa; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 .text-blue { color: #60a5fa; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,.85); margin-bottom: 40px; max-width: 600px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.trust-badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; max-width: 520px; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: .875rem; font-weight: 500;
}
.trust-badge svg { width: 20px; height: 20px; color: #60a5fa; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID (home)
   ══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 32px; height: 32px; color: var(--blue); }
.service-icon--flame svg { color: var(--red); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: .9rem;
  transition: gap .2s;
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */
.reviews-header {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 40px;
}
.reviews-header h2 { font-size: clamp(1.75rem,3vw,2.4rem); font-weight: 800; margin-bottom: 8px; }
.reviews-header p   { color: var(--muted); font-size: 1.05rem; max-width: 600px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.review-card {
  background: var(--light); border-radius: var(--radius-lg); padding: 32px;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-card blockquote { font-style: italic; color: var(--text); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue-light);
  color: var(--blue); font-weight: 700; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-author strong { display: block; font-weight: 700; color: var(--text); }
.review-author span   { font-size: .875rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band { background: var(--blue); padding: 80px 0; }
.cta-band-inner { text-align: center; }
.cta-band h2 { font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-band p  { font-size: 1.125rem; color: rgba(255,255,255,.88); max-width: 600px; margin: 0 auto 40px; }
.cta-band-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question[aria-expanded="true"] { color: var(--blue); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px; color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p  { font-size: 1.125rem; opacity: .9; max-width: 600px; }

.page-hero-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.page-hero-icon svg { width: 36px; height: 36px; color: var(--white); }

/* Split hero (services page) */
.page-hero-split { display: flex; align-items: center; gap: 48px; }
.page-hero-split > div:first-child { flex: 1; }
.page-hero-img { flex: 1; }
.page-hero-img img { border-radius: var(--radius-lg); border: 4px solid rgba(255,255,255,.15); }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; margin-bottom: 20px; }
.two-col-text p  { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.two-col-img { position: relative; }
.two-col-img img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.img-badge {
  position: absolute; bottom: -24px; left: -24px; background: var(--white);
  padding: 20px 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.img-badge strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--blue); }
.img-badge span   { font-size: .875rem; color: var(--muted); font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.value-card {
  display: flex; gap: 20px; align-items: flex-start; background: var(--white);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-icon svg { width: 28px; height: 28px; color: var(--blue); }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-card p  { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   SERVICES DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */
.service-detail-card {
  display: flex; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.sdc-left {
  width: 280px; flex-shrink: 0; padding: 40px 32px;
  background: var(--white); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.sdc-left h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.sdc-right { flex: 1; padding: 40px; background: var(--light); }
.sdc-right > p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.sdc-right h3  { font-weight: 700; margin-bottom: 16px; }
.feature-list  { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-weight: 500; font-size: .95rem; }
.feature-list svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   SERVICE AREAS PAGE
   ══════════════════════════════════════════════════════════════ */
.areas-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 48px; }
.areas-card-header { background: var(--navy); color: var(--white); padding: 32px; text-align: center; }
.areas-card-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.areas-card-header p  { color: rgba(255,255,255,.65); }
.areas-card-body { padding: 40px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.area-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  border-radius: var(--radius); border: 1px solid var(--border); background: var(--light);
  transition: border-color .2s;
}
.area-item:hover { border-color: var(--blue); }
.area-item svg { width: 24px; height: 24px; color: var(--muted); flex-shrink: 0; }
.area-item--primary { background: rgba(10,78,166,.05); border-color: rgba(10,78,166,.2); }
.area-item--primary svg { color: var(--blue); }
.area-name { font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.area-item--primary .area-name { color: var(--blue); }
.area-badge {
  display: inline-block; padding: 2px 8px; background: var(--blue); color: var(--white);
  border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.area-distance { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.areas-cta-box {
  margin-top: 32px; background: var(--light); padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.areas-cta-box strong { display: block; font-weight: 700; margin-bottom: 4px; }
.areas-cta-box p { color: var(--muted); font-size: .95rem; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-grid h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,78,166,.1);
}
.form-group textarea { resize: none; }
.form-error { font-size: .8rem; color: var(--red); min-height: 18px; }
.form-group input.invalid,
.form-group select.invalid { border-color: var(--red); }
.form-success {
  display: flex; align-items: center; gap: 12px; margin-top: 16px;
  background: #dcfce7; color: #166534; padding: 16px; border-radius: var(--radius);
  font-weight: 600;
}
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  padding: 24px; border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.contact-card--dark { background: var(--navy); color: var(--white); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon--light { background: var(--blue-light); }
.contact-card-icon--light svg { color: var(--blue); }
.contact-card-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-card-label { font-size: .8rem; font-weight: 600; opacity: .7; margin-bottom: 4px; }
.contact-card--dark a { color: var(--white); font-size: 1.2rem; font-weight: 700; transition: color .2s; }
.contact-card--dark a:hover { color: #60a5fa; }
.contact-card strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-card p { font-size: .875rem; color: var(--muted); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-address {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--white);
}
.map-address svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.map-address strong { display: block; font-weight: 700; margin-bottom: 4px; }
.map-address p { color: var(--muted); font-size: .9rem; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: var(--white); padding-top: 64px; border-top: 4px solid var(--blue); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; }
.footer-badge { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: .875rem; font-weight: 500; margin-top: 8px; }
.footer-badge svg { width: 18px; height: 18px; color: var(--blue); }
.footer-col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-col ul li + li { margin-top: 10px; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.55); font-size: .9rem; }
.footer-contact li + li { margin-top: 16px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.55); font-weight: 600; transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 8px; }
.footer-areas li { color: rgba(255,255,255,.55); font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; color: rgba(255,255,255,.4); font-size: .85rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .img-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-split { flex-direction: column; }
  .page-hero-img { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .primary-nav { display: none; }
  .nav-cta.nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .float-call { display: flex; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .service-detail-card { flex-direction: column; }
  .sdc-left { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
  .cta-band-btns .btn { justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
