/* ============================================================
   Abril Auto Glass Inc. — style.css v3
   Corrections: White sticky header, left-aligned hero with real bg image
   Full SEO silo structure styles added
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --navy:      #0d1b2e;
  --navy-mid:  #152338;
  --red:       #cc2200;
  --red-dark:  #a81b00;
  --gold:      #e8a020;
  --gold-lt:   #f5c050;
  --white:     #ffffff;
  --off-white: #f5f2ec;
  --light-gray:#e8e4dc;
  --mid-gray:  #888;
  --dark-gray: #333;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 16px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 28px rgba(0,0,0,0.15);
  --trans:     all 0.25s ease;
  --font-head: 'Roboto Condensed', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; line-height: 1.65; color: var(--dark-gray); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }

.section-tag { display: inline-block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-tag.light { color: rgba(255,255,255,0.75); }
.section-title { margin-bottom: 12px; }
.section-intro { color: #555; font-size: 1rem; margin-bottom: 36px; }
.section-intro.centered { max-width: 680px; margin-left: auto; margin-right: auto; }
.text-white { color: #fff !important; }

/* ── Buttons ── */
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy); padding: 13px 28px; border-radius: var(--radius); font-family: var(--font-head); font-size: 1rem; font-weight: 700; border: 2px solid #fff; transition: var(--trans); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-red { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 13px 28px; border-radius: var(--radius); font-family: var(--font-head); font-size: 1rem; font-weight: 700; border: 2px solid var(--red); transition: var(--trans); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

/* ================================================================
   HEADER — WHITE BACKGROUND (correction from v2)
================================================================ */
#main-header {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.header-inner { display: flex; align-items: center; gap: 16px; max-width: 1180px; margin: 0 auto; padding: 0 20px; min-height: 68px; }

.logo a { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 46px; height: 46px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
/* SVG strokes use navy on white header */
.logo-icon svg rect, .logo-icon svg path { stroke: var(--navy) !important; }
.logo-text strong { display: block; font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; color: var(--navy); line-height: 1.15; }
.logo-text span { display: block; font-size: 0.75rem; color: var(--mid-gray); }

.header-phone { margin-left: auto; text-align: right; }
.header-phone-label { display: block; font-size: 0.72rem; color: var(--mid-gray); margin-bottom: 2px; }
.header-phone a { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--red); transition: var(--trans); }
.header-phone a:hover { color: var(--red-dark); }

#main-nav ul { display: flex; align-items: center; gap: 4px; }
#main-nav ul li a { padding: 8px 13px; font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--navy); border-radius: var(--radius); transition: var(--trans); text-transform: uppercase; letter-spacing: 0.3px; }
#main-nav ul li a:hover { color: var(--red); background: var(--off-white); }
.nav-cta-btn { background: var(--red) !important; color: #fff !important; padding: 8px 16px !important; border-radius: var(--radius) !important; }
.nav-cta-btn:hover { background: var(--red-dark) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; margin-left: 8px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO — LEFT-ALIGNED + REAL BACKGROUND IMAGE (correction from v2)
================================================================ */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* LEFT aligned */
  overflow: hidden;
  background: #0d1b2e;           /* fallback */
}
/* Real background image from murrietaautoglass.com */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://murrietaautoglass.com/assets/images/banner/mobile-autoglass-murrieta.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Dark overlay so text is readable */
  filter: brightness(0.45);
  z-index: 0;
}
/* Gradient fade so left side is darker for text readability */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,46,0.82) 0%, rgba(13,27,46,0.45) 60%, rgba(13,27,46,0.10) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 48px 20px 48px 0;
  text-align: left;              /* LEFT aligned text */
}
.hero-badge { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 18px; border-radius: 4px; margin-bottom: 20px; }
#hero h1 { color: #fff; margin-bottom: 6px; text-align: left; }
#hero h1 span { display: block; color: var(--gold); margin-top: 4px; }
.hero-sub { color: rgba(255,255,255,0.90); font-size: 1.1rem; max-width: 560px; margin: 14px 0 28px; text-align: left; }

.hero-steps { background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-lg); padding: 20px 24px; margin: 0 0 28px; max-width: 520px; text-align: left; backdrop-filter: blur(4px); }
.hero-steps h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--gold); margin-bottom: 12px; }
.hero-steps ol { padding-left: 20px; color: rgba(255,255,255,0.90); font-size: 0.94rem; }
.hero-steps ol li { margin-bottom: 6px; line-height: 1.5; }
.hero-steps ol li strong { color: var(--gold-lt); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; justify-content: flex-start; }
.hero-trust { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-start; }
.trust-item { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); padding: 5px 13px; border-radius: 40px; font-size: 0.83rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.2); }

/* ── INFO BAR ── */
.info-bar { background: var(--red); padding: 14px 0; }
.info-bar-grid { display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: center; align-items: center; }
.info-item { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 7px; }

/* ── ABOUT ── */
.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; }
.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--red); color: #fff; width: 88px; height: 88px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 4px 16px rgba(204,34,0,0.4); }
.about-badge strong { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 0.68rem; font-weight: 500; opacity: 0.9; line-height: 1.2; margin-top: 2px; }
.about-bullets { margin: 14px 0 20px; }
.about-bullets li { padding: 6px 0 6px 22px; position: relative; font-size: 0.95rem; border-bottom: 1px solid var(--light-gray); color: #444; }
.about-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.about-bullets li:last-child { border-bottom: none; }
.about-stats { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.a-stat { text-align: center; }
.a-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--red); font-weight: 700; line-height: 1; }
.a-stat span { font-size: 0.8rem; color: var(--mid-gray); font-weight: 500; }

/* ── SERVICES ── */
.services-section { background: var(--off-white); padding: 72px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 8px; }
.svc-card { background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--red); position: relative; transition: var(--trans); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-num { position: absolute; top: 16px; right: 18px; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--light-gray); line-height: 1; }
.svc-icon { font-size: 2rem; margin-bottom: 12px; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.svc-card p { font-size: 0.92rem; color: #555; margin-bottom: 16px; line-height: 1.6; }
.svc-card a { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 4px; transition: var(--trans); }
.svc-card a:hover { gap: 8px; }

/* ── HOW IT WORKS ── */
.hiw-section { background: var(--navy); padding: 72px 0; }
.hiw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px; margin-top: 40px; }
.hiw-step { text-align: center; }
.step-circle { width: 64px; height: 64px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-circle span { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: #fff; }
.hiw-step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.hiw-step p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* ── ESTIMATE ── */
.estimate-section { background: var(--gold); padding: 64px 0; }
.estimate-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.estimate-text h2 { color: var(--navy); font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 12px; }
.estimate-text p { color: var(--navy); opacity: 0.85; font-size: 1rem; }
.estimate-box { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.estimate-box h3 { font-family: var(--font-head); color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.estimate-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.est-step { display: flex; gap: 14px; align-items: flex-start; }
.est-num { width: 32px; height: 32px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.est-step p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.est-step p strong { color: var(--gold-lt); }
.estimate-cta a { display: block; background: var(--red); color: #fff; text-align: center; padding: 14px; border-radius: var(--radius); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; transition: var(--trans); }
.estimate-cta a:hover { background: var(--red-dark); }

/* ── REVIEWS ── */
.reviews-section { padding: 72px 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 8px; }
.review-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; border-left: 4px solid var(--red); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: 0.93rem; color: #444; margin-bottom: 14px; line-height: 1.65; font-style: italic; }
.review-author strong { font-family: var(--font-head); color: var(--navy); }
.review-author span { font-size: 0.85rem; color: var(--mid-gray); }

/* ── FAQ ── */
.faq-section { background: var(--off-white); padding: 72px 0; }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 18px 0; font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: var(--trans); }
.faq-q:hover { color: var(--red); }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: var(--red); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 18px; }
.faq-a p { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 8px; }

.acc-panel { margin-top: 14px; }
.county-block { margin-bottom: 20px; }
.county-name { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.city-link { display: inline-block; background: var(--navy); color: #fff; padding: 5px 14px; border-radius: 40px; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; transition: var(--trans); }
.city-link:hover { background: var(--red); color: #fff; }
.zip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.zip-tag { display: inline-block; background: var(--navy-mid); color: rgba(255,255,255,0.9); padding: 4px 12px; border-radius: var(--radius); font-family: monospace; font-size: 0.85rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.15); transition: var(--trans); }
.zip-tag:hover { background: var(--red); border-color: var(--red); }

/* ── SEO SECTION ── */
.seo-section { padding: 60px 0; background: #fff; }
.seo-section h2 { margin-bottom: 16px; font-size: clamp(1.3rem,2.5vw,1.8rem); }
.seo-section h3 { font-size: 1.15rem; margin: 24px 0 8px; color: var(--navy); }
.seo-section p { font-size: 0.95rem; color: #444; }

/* ── PAYMENT ── */
.payment-section { background: var(--off-white); padding: 40px 0; border-top: 1px solid var(--light-gray); }
.payment-section h3 { font-family: var(--font-head); font-size: 1rem; color: var(--mid-gray); text-align: center; margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; }
.payment-logos { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.pay-badge { background: #fff; border: 1.5px solid #ddd; border-radius: 8px; padding: 7px 14px; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: #333; display: flex; align-items: center; gap: 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); transition: var(--trans); }
.pay-badge:hover { border-color: var(--red); transform: translateY(-2px); }

/* ── INTERLINKING PANELS (new for silo structure) ── */
.silo-links-section { padding: 48px 0; background: var(--navy); }
.silo-links-section h3 { color: var(--gold); font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.silo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.silo-col ul { display: flex; flex-wrap: wrap; gap: 7px; }
.silo-col ul li a { display: inline-block; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); padding: 4px 12px; border-radius: 40px; font-size: 0.82rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.12); transition: var(--trans); font-family: var(--font-head); }
.silo-col ul li a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.silo-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 32px 0; }

/* ── SERVICE LANDING PAGE ── */
.svc-lp-hero { background: var(--navy); padding: 64px 0 52px; position: relative; overflow: hidden; }
.svc-lp-hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://murrietaautoglass.com/assets/images/banner/mobile-autoglass-murrieta-ca.jpg'); background-size: cover; background-position: center; opacity: 0.18; }
.svc-lp-hero .container { position: relative; z-index: 2; }
.svc-lp-hero h1 { color: #fff; }
.svc-lp-hero h1 span { color: var(--gold); }
.svc-lp-hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 680px; margin: 16px 0 28px; }

/* ── CITY LANDING PAGE ── */
.lp-hero { background: var(--navy); padding: 64px 0 52px; position: relative; overflow: hidden; }
.lp-hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://murrietaautoglass.com/assets/images/banner/mobile-autoglass-murrieta.jpg'); background-size: cover; background-position: center; opacity: 0.20; }
.lp-hero .container { position: relative; z-index: 2; }
.lp-hero h1 { color: #fff; }
.lp-hero h1 span { color: var(--gold); }
.lp-hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 660px; margin: 16px 0 28px; }

.lp-body { padding: 56px 0; background: #fff; }
.lp-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.lp-call-box { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 88px; box-shadow: var(--shadow-md); }
.lp-call-box h3 { font-family: var(--font-head); color: var(--gold); font-size: 1.15rem; margin-bottom: 10px; }
.lp-call-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 14px; }
.lp-call-box a[href^="tel"] { display: block; background: var(--red); color: #fff; text-align: center; padding: 14px; border-radius: var(--radius); font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; transition: var(--trans); }
.lp-call-box a[href^="tel"]:hover { background: var(--red-dark); }
.lp-note { font-size: 0.82rem !important; color: rgba(255,255,255,0.55) !important; text-align: center; margin-top: 12px !important; }
.lp-body h2 { font-size: clamp(1.2rem,2.5vw,1.65rem); margin-bottom: 14px; }

/* Inline city/service/zip link tags in page content */
.inline-links { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 20px; }
.inline-link-city { display: inline-block; background: var(--navy); color: #fff; padding: 4px 13px; border-radius: 40px; font-family: var(--font-head); font-size: 0.80rem; font-weight: 700; transition: var(--trans); }
.inline-link-city:hover { background: var(--red); }
.inline-link-svc { display: inline-block; background: var(--red); color: #fff; padding: 4px 13px; border-radius: 40px; font-family: var(--font-head); font-size: 0.80rem; font-weight: 700; transition: var(--trans); }
.inline-link-svc:hover { background: var(--red-dark); }
.inline-link-zip { display: inline-block; background: var(--off-white); color: var(--navy); padding: 4px 12px; border-radius: var(--radius); font-family: monospace; font-size: 0.82rem; font-weight: 700; border: 1px solid var(--light-gray); transition: var(--trans); }
.inline-link-zip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── FOOTER ── */
#main-footer { background: var(--navy); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { margin-bottom: 14px; }
/* Footer logo — white strokes */
.footer-brand .logo-icon svg rect,
.footer-brand .logo-icon svg path { stroke: white !important; }
.footer-brand .logo-text strong { color: #fff !important; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.55) !important; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.6; }
.footer-phone-big { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold); display: block; transition: var(--trans); }
.footer-phone-big:hover { color: var(--gold-lt); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--trans); }
.footer-col ul li a:hover { color: #fff; }
.footer-hours p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 6px; line-height: 1.5; }
.footer-hours a { color: var(--gold); }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--trans); }
.footer-bottom a:hover { color: var(--gold); }
.footer-seo { font-size: 0.75rem !important; color: rgba(255,255,255,0.22) !important; }
.footer-dev { font-size: 0.78rem !important; color: rgba(255,255,255,0.38) !important; margin-top: 8px !important; }
.footer-dev a { color: rgba(255,255,255,0.5) !important; }
.footer-dev a:hover { color: var(--gold) !important; }

/* ── FLOATING CALL ── */
.float-call { position: fixed; bottom: 20px; right: 20px; z-index: 999; background: var(--red); color: #fff; padding: 13px 20px; border-radius: 50px; font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; box-shadow: 0 4px 20px rgba(204,34,0,0.45); transition: var(--trans); display: none; align-items: center; gap: 8px; animation: pulse 2.5s infinite; }
.float-call:hover { background: var(--red-dark); transform: scale(1.05); color: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(204,34,0,0.45); } 50% { box-shadow: 0 4px 30px rgba(204,34,0,0.7); } }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 520px; }
  .estimate-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-call-box { position: static; }
  .silo-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  #main-nav { position: fixed; top: 0; right: -100%; width: min(300px,82vw); height: 100vh; background: var(--navy); padding: 76px 24px 32px; overflow-y: auto; transition: right 0.32s ease; z-index: 998; }
  #main-nav.open { right: 0; }
  #main-nav ul { flex-direction: column; gap: 2px; }
  #main-nav ul li a { color: rgba(255,255,255,0.9); padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .nav-cta-btn { border-radius: var(--radius) !important; margin-top: 8px; color: #fff !important; }
  .header-phone { display: none; }
  #hero { min-height: 75vh; }
  .hero-content { padding: 32px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -12px; width: 72px; height: 72px; }
  .about-badge strong { font-size: 1.3rem; }
  .silo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .lp-hero { padding: 44px 0 36px; }
  .svc-lp-hero { padding: 44px 0 36px; }
}

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 997; }
.nav-overlay.active { display: block; }
