/* ══════════════════════════════════════════════════════
   MAVRAX HOME SERVICES — Main Stylesheet v2.0
   Central Florida Home Services & Garage Door Repair
══════════════════════════════════════════════════════ */

:root {
  --lime:       #AABC00;
  --lime-dark:  #8A9A00;
  --lime-light: #C8DC00;
  --lime-bg:    #F3F7D4;
  --ink:        #1A1D0F;
  --ink2:       #2E3318;
  --body:       #4A4E3A;
  --muted:      #7A7E6A;
  --rule:       #E4E7D8;
  --surface:    #FFFFFF;
  --bg:         #F8F9F3;
  --bg2:        #F0F2E8;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
  --radius:     10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--surface);
  color: var(--body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 60px 0; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lime-dark); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--lime); }
.h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem,6vw,5.2rem); font-weight: 800; line-height: 0.95; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); }
.accent { color: var(--lime-dark); }
.lead { font-size: 1.08rem; color: var(--body); line-height: 1.75; font-weight: 400; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Manrope', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em; padding: 14px 28px; border: none; cursor: pointer; border-radius: 6px; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--lime); color: var(--ink); box-shadow: 0 4px 18px rgba(170,188,0,0.35); }
.btn-primary:hover { background: var(--lime-light); box-shadow: 0 6px 24px rgba(170,188,0,0.5); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--ink2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-lime { background: transparent; color: var(--lime-dark); border: 2px solid var(--lime); }
.btn-outline-lime:hover { background: var(--lime); color: var(--ink); }
.btn-lg  { padding: 17px 36px; font-size: 0.95rem; }
.btn-xl  { padding: 20px 44px; font-size: 1rem; }

/* ── ANNOUNCEMENT ── */
.announcement { background: var(--ink); color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-align: center; padding: 9px 16px; }
.announcement strong { color: var(--lime); }
.announcement a { color: var(--lime); font-weight: 700; }

/* ── NAV ── */
.nav { background: var(--surface); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-chevrons { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.lc { width: 28px; height: 10px; background: var(--lime); clip-path: polygon(0 0, 50% 100%, 100% 0, 87% 0, 50% 76%, 13% 0); }
.logo-wordmark { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; letter-spacing: 0.08em; color: var(--ink); line-height: 1; }
.logo-wordmark span { color: var(--ink); }
.logo-sub { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.03em; color: var(--body); padding: 8px 12px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--lime-dark); background: var(--bg2); }
.nav-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 6px; padding: 8px 0; transition: color 0.2s; }
.nav-phone:hover { color: var(--lime-dark); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mmb-line { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; background: var(--surface); border-top: 1px solid var(--rule); padding: 20px 24px 28px; position: absolute; top: 100%; left: 0; right: 0; box-shadow: var(--shadow-md); z-index: 199; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 1rem; font-weight: 600; color: var(--ink); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--lime-dark); }
.mobile-nav .btn { display: flex; margin-top: 18px; justify-content: center; }

/* ── HERO LAYOUT ── */
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }


.stats-strip { background: var(--ink); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--lime); letter-spacing: 0.02em; }
.stat-l { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 5px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--bg); padding: 72px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px); background-size: 26px 26px; }
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--lime); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--lime-dark); font-weight: 600; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 32px 26px; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(170,188,0,0.3); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: var(--lime-bg); border: 1px solid rgba(170,188,0,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.svc-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.svc-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime-dark); transition: gap 0.2s; }
.svc-card:hover .svc-link { gap: 10px; }

/* ── SERVICE CATEGORY BADGE ── */
.svc-badge { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 14px; }
.svc-badge-garage { background: var(--lime-bg); color: var(--lime-dark); border: 1px solid rgba(170,188,0,0.35); }
.svc-badge-home { background: #EDF2FF; color: #3B5BDB; border: 1px solid rgba(59,91,219,0.2); }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { position: relative; overflow: visible; padding-bottom: 0; display: block; }
.why-img-main { width: 100%; border-radius: 14px; height: 520px; object-fit: cover; object-position: right center; box-shadow: var(--shadow-lg); display: block; }
.why-img-accent { display: none; }
.why-badge { display: none; }
.why-badge .nb { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800; line-height: 1; display: block; }
.why-badge .lb { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.why-list { list-style: none; margin: 28px 0 36px; display: grid; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; background: var(--lime-bg); border: 1.5px solid rgba(170,188,0,0.4); display: flex; align-items: center; justify-content: center; color: var(--lime-dark); font-size: 0.85rem; font-weight: 900; margin-top: 2px; }
.why-item strong { display: block; font-size: 0.97rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.why-item span { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 50px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--lime) 0, var(--lime) 6px, transparent 6px, transparent 16px); }
.step-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px 22px; text-align: center; position: relative; z-index: 1; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: var(--lime); font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── ABOUT / DARK SECTION ── */
.about-section { background: var(--ink); }
.about-section .eyebrow::before { background: var(--lime); }
.about-section .eyebrow { color: var(--lime); }
.about-section .h2 { color: #fff; }
.about-section .lead { color: rgba(255,255,255,0.6); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: 0 24px 60px rgba(0,0,0,0.4); filter: saturate(0.85); }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.ah-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 18px; }
.ah-icon { font-size: 1.4rem; margin-bottom: 8px; }
.ah-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); margin-bottom: 3px; }
.ah-val { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.rev-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px 26px; transition: box-shadow 0.25s; }
.rev-card:hover { box-shadow: var(--shadow-md); }
.rev-stars { color: #F5A623; letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.rev-text { font-size: 0.92rem; color: var(--body); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lime-bg); border: 2px solid rgba(170,188,0,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--lime-dark); flex-shrink: 0; }
.rev-name { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.rev-source { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }

/* ── SERVICE AREAS ── */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tag { background: var(--bg2); border: 1px solid var(--rule); border-radius: 6px; padding: 8px 16px; font-size: 0.82rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; transition: background 0.2s, border-color 0.2s; cursor: default; }
.area-tag:hover { background: var(--lime-bg); border-color: rgba(170,188,0,0.4); color: var(--lime-dark); }
.area-tag::before { content: '📍'; font-size: 0.75rem; }
.area-map { border-radius: 12px; overflow: hidden; height: 380px; border: 1px solid var(--rule); box-shadow: var(--shadow-sm); }
.area-map iframe { width: 100%; height: 100%; border: none; }

/* ── FORMS ── */
.quote-card { background: var(--surface); border-radius: 16px; border: 1px solid var(--rule); box-shadow: var(--shadow-lg); overflow: hidden; }
.qc-header { background: var(--ink); padding: 22px 28px; display: flex; align-items: center; gap: 12px; }
.qc-chevrons { display: flex; flex-direction: column; gap: 2px; }
.qcc { width: 18px; height: 7px; background: var(--lime); clip-path: polygon(0 0, 50% 100%, 100% 0, 87% 0, 50% 76%, 13% 0); }
.qc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; line-height: 1; }
.qc-subtitle { font-size: 0.73rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.qc-body { padding: 24px 28px; }
.qc-footer { padding: 12px 28px 20px; text-align: center; font-size: 0.73rem; color: var(--muted); }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--rule); border-radius: 7px; font-family: 'Manrope', sans-serif; font-size: 0.88rem; color: var(--ink); background: var(--surface); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(170,188,0,0.15); }
.fg textarea { height: 100px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; padding: 15px; background: var(--lime); color: var(--ink); font-family: 'Manrope', sans-serif; font-size: 0.92rem; font-weight: 800; letter-spacing: 0.04em; border: none; border-radius: 7px; cursor: pointer; box-shadow: 0 4px 18px rgba(170,188,0,0.35); transition: all 0.2s; margin-top: 4px; }
.btn-submit:hover { background: var(--lime-light); transform: translateY(-1px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
.contact-form-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 14px; padding: 36px 32px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.contact-form-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.cib { margin-bottom: 28px; }
.cib-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--lime-bg); border: 1px solid rgba(170,188,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 12px; }
.cib-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cib-value { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.cib-value a { color: var(--ink); }
.cib-value a:hover { color: var(--lime-dark); }

/* ── CTA BAND ── */
.cta-band { background: var(--lime); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px); background-size: 22px 22px; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem,5vw,4rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { font-size: 1.05rem; color: var(--ink2); opacity: 0.75; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-band-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 20px 22px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--ink); transition: color 0.2s; }
.faq-q:hover { color: var(--lime-dark); }
.faq-icon { font-size: 1.2rem; color: var(--lime-dark); font-weight: 400; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 22px; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.f-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: 0.08em; color: #fff; }
.f-logo-text span { color: #fff; }
.f-desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.72; margin-bottom: 22px; }
.f-contact-row { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.f-contact-row a { color: rgba(255,255,255,0.45); }
.f-contact-row a:hover { color: var(--lime); }
.f-icon { color: var(--lime); font-size: 0.9rem; }
.f-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.f-links li { margin-bottom: 10px; }
.f-links a { font-size: 0.86rem; color: rgba(255,255,255,0.45); font-weight: 500; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.f-links a::before { content: '→'; font-size: 0.7rem; color: var(--lime); }
.f-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { color: rgba(255,255,255,0.25); }
.fb-links a:hover { color: var(--lime); }

/* ── STICKY CTA ── */
.sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.sticky-call { background: var(--ink); color: #fff; font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 800; padding: 13px 22px; border-radius: 50px; text-decoration: none; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 28px rgba(0,0,0,0.25); transition: transform 0.2s; }
.sticky-call:hover { transform: scale(1.04); }
.sticky-quote { background: var(--lime); color: var(--ink); font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 800; padding: 13px 22px; border-radius: 50px; text-decoration: none; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 28px rgba(170,188,0,0.4); animation: glow 2.8s ease-in-out infinite; }
@keyframes glow { 0%,100% { box-shadow: 0 8px 28px rgba(170,188,0,0.4); } 50% { box-shadow: 0 8px 40px rgba(170,188,0,0.7); } }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════ */
@media(max-width: 1024px) {
  .why-grid, .about-grid, .contact-grid, .areas-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .why-grid { gap: 32px; }
  .why-grid > div:last-child { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .quote-card { max-width: 100%; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media(max-width: 768px) {
  /* Sections spacing */
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }

  /* Typography scale down */
  .h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .lead { font-size: .97rem; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stats-strip .stat-n { font-size: 2.2rem; }

  /* Fix ALL inline repeat(3,1fr) grids on this page */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Contact quick boxes — stack on mobile */
  .contact-methods-grid { grid-template-columns: 1fr !important; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  /* Announcement bar */
  .announcement { font-size: 0.72rem; padding: 8px 12px; }
  .announcement br { display: block; }

  /* CTA band */
  .cta-band { padding: 50px 0; }
  .cta-band h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Sticky CTA — smaller on mobile */
  .sticky-cta { bottom: 16px; right: 12px; gap: 6px; }
  .sticky-call, .sticky-quote { padding: 11px 18px; font-size: 0.8rem; border-radius: 50px; }

  /* Page hero */
  .page-hero { padding: 50px 0 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .fb-links { justify-content: center; }

  /* Why us list */
  .why-item { flex-direction: row; }

  /* Process steps */
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* Area map height */
  .area-map { height: 280px; }

  /* Form card */
  .quote-card { border-radius: 12px; }
  .qc-body { padding: 18px 20px; }
  .qc-header { padding: 18px 20px; }

  /* Contact form card */
  .contact-form-card { padding: 24px 20px; }

  /* About highlights */
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ah-item { padding: 14px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 560px)
══════════════════════════════════════ */
@media(max-width: 560px) {
  /* Container padding */
  .container { padding: 0 16px; }

  /* Grids go single column */
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }

  /* All inline repeat(3) grids go 1 column */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Nav */
  .nav-actions .btn { display: none; }
  .nav-actions .nav-phone { font-size: 0.82rem; }
  .logo-sub { display: none; }
  .logo-wordmark { font-size: 1.4rem; }

  /* Hero buttons stack */
  .hero-actions, [style*="display:flex;gap:12px;flex-wrap:wrap;margin-bottom:44px"] {
    flex-direction: column;
  }
  .hero-actions .btn, .btn-xl { width: 100%; justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 12px; }
  .stat-n { font-size: 1.9rem; }
  .stat-l { font-size: 0.68rem; }

  /* Service cards */
  .svc-card { padding: 24px 20px; }

  /* Reviews */
  .rev-card { padding: 22px 18px; }

  /* Sticky CTA — pill style, side by side on small screens */
  .sticky-cta {
    bottom: 12px; right: 0; left: 0;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
  }
  .sticky-call, .sticky-quote {
    flex: 1; max-width: 170px;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.78rem;
    border-radius: 50px;
    text-align: center;
  }

  /* CTA band buttons */
  .cta-band-btns .btn { font-size: 0.88rem; padding: 15px 24px; }

  /* Announcement */
  .announcement { font-size: 0.7rem; }

  /* Form */
  .btn-submit { font-size: 0.85rem; padding: 14px; }

  /* Thank you card */
  .thankyou-card { padding: 36px 24px; }
  .ty-title { font-size: 2rem; }

  /* Footer */
  .f-logo-text { font-size: 1.4rem; }
  .footer-bottom { font-size: 0.7rem; }
}
