/*
 * Sanborn's AC Theme Styles
 * Plugin : Sanborn's AC Theme Assets
 * Author : Birimian Solution
 * Version: 1.4.0
 *
 * HERO BACKGROUND IMAGE
 * ---------------------
 * Upload the hero photo to WordPress Media Library and paste
 * its URL into the --hero-bg variable below.
 * Example: url('https://sanbornsac.com/wp-content/uploads/2024/hero-bg.jpg')
 *
 * ABOUT SECTION IMAGE
 * ---------------------
 * The team photo used in the About section is referenced via an
 * <img> tag in the HTML widget. Update its src= to the WordPress
 * Media Library URL after uploading.
 */

/* ─────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────── */
:root {
    --red:     #CC2229;
    --navy:    #1B3A6B;
    --cream:   #F5EFE0;
    --white:   #ffffff;
    --hero-bg: url('https://sanbornsac.com/wp-content/uploads/sanborns/hero-bg.jpg');
}

/* ─────────────────────────────────────
   RESET (scoped to Sanborn's elements)
───────────────────────────────────── */
.top-bar, .navbar, .mega-panel, .hero,
.services, .about, .cta-banner, .finance,
.location, .why {
    box-sizing: border-box;
}

.top-bar *, .navbar *, .mega-panel *,
.hero *, .services *, .about *,
.cta-banner *, .finance *, .location *, .why * {
    box-sizing: border-box;
}

/* ─────────────────────────────────────
   TOP BAR
───────────────────────────────────── */
.top-bar {
    background: var(--navy);
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    font-weight: 500;
    font-family: 'Montserrat', Arial, sans-serif;
}

.top-bar .left,
.top-bar .right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar a { color: #fff; text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: #ffd966; }

.top-bar .sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.3);
}

.badge-emergency {
    background: var(--red);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* ─────────────────────────────────────
   NAVBAR
───────────────────────────────────── */
.navbar {
    background: #fff;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 900;
    font-family: 'Montserrat', Arial, sans-serif;
}

.navbar .logo img {
    height: 62px;
    width: auto;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar nav a {
    color: var(--navy);
    font-weight: 600;
    font-size: 14.5px;
    position: relative;
    transition: color .2s;
    text-decoration: none;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .25s;
}

.navbar nav a:hover { color: var(--red); }
.navbar nav a:hover::after { width: 100%; }

.btn-nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s, transform .15s !important;
}

.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover { background: #a81820 !important; transform: translateY(-1px); }

/* ─────────────────────────────────────
   MEGA MENU TRIGGER
───────────────────────────────────── */
.nav-mega { position: relative; cursor: default; }

.nav-mega > a {
    display: flex; align-items: center; gap: 4px;
    color: var(--navy); font-weight: 600; font-size: 14.5px;
    position: relative; transition: color .2s; text-decoration: none;
}

.nav-mega > a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: var(--red); transition: width .25s;
}

.nav-mega.active > a,
.nav-mega:hover  > a { color: var(--red); }

.nav-mega.active > a::after,
.nav-mega:hover  > a::after { width: 100%; }

.mega-caret {
    font-size: 10px; display: inline-block; transition: transform .2s;
}

.nav-mega.active .mega-caret { transform: rotate(180deg); }

/* ─────────────────────────────────────
   MEGA PANEL
───────────────────────────────────── */
.mega-panel {
    display: none;
    position: fixed;
    left: 0; width: 100%;
    background: #fff;
    border-top: 3px solid var(--red);
    box-shadow: 0 20px 60px rgba(0,0,0,.14);
    z-index: 9998;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    font-family: 'Montserrat', Arial, sans-serif;
}

.mega-panel.open { display: block; }

.mega-inner {
    max-width: 1440px; margin: 0 auto;
    padding: 24px 52px 32px;
}

.mega-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 44px;
}

.mega-row-b { grid-template-columns: 1fr 1fr 2fr; }

.mega-sep { height: 1px; background: #e8e8e8; margin: 20px 0; }

.mega-col { padding: 4px 0; }

.mega-col-hd {
    margin-bottom: 8px; padding-bottom: 7px;
    border-bottom: 2px solid var(--red);
    display: flex; align-items: center; gap: 9px;
}

.mega-cat-icon {
    width: 26px; height: 26px; flex-shrink: 0;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}

.mega-cat-icon svg { width: 16px; height: 16px; display: block; }

.mega-cat {
    font-family: 'Oswald', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-links { list-style: none; display: flex; flex-direction: column; margin: 0; padding: 0; }
.mega-links li { border-bottom: 1px solid #f2f2f2; }
.mega-links li:last-child { border-bottom: none; }

.mega-links li a {
    display: flex; align-items: center; gap: 7px;
    padding: 5px 0;
    color: #555; font-size: 12.5px; font-weight: 500;
    text-decoration: none;
    transition: color .14s, padding-left .14s;
}

.mega-links li a:hover { color: var(--red); padding-left: 5px; }

.mi {
    width: 13px; height: 13px; flex-shrink: 0;
    display: inline-flex; color: #aab;
    transition: color .14s;
}

.mega-links li a:hover .mi { color: var(--red); }

.mega-see-all {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 8px;
    color: var(--red); font-size: 11.5px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; text-decoration: none;
}

.mega-see-all:hover { color: var(--navy); }

.mega-elec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center center;
    background-color: #1B3A6B;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(12, 22, 50, .78) 0%,
        rgba(12, 22, 50, .52) 50%,
        rgba(12, 22, 50, .18) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.hero-text { max-width: 640px; }

.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 82px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-text h1 .l1 { color: #fff; display: block; }
.hero-text h1 .l2 { color: var(--red); display: block; }

.hero-text .subhead {
    color: #fff;
    font-size: 18.5px;
    font-weight: 600;
    line-height: 1.55;
    margin: 20px 0 34px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.hero-text .subhead strong {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 15px 28px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: .8px;
    box-shadow: 0 4px 18px rgba(204,34,41,.42);
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-schedule:hover { background: #a81820; transform: translateY(-2px); }

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    padding: 15px 24px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    border: 2px solid rgba(255,255,255,.25);
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-phone:hover { background: #0f2248; transform: translateY(-2px); }

/* Google badge */
.google-badge {
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    flex-shrink: 0;
}

.g-wordmark {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 1;
    font-family: 'Montserrat', Arial, sans-serif;
}
.g-wordmark .gc  { color: #4285F4; }
.g-wordmark .go1 { color: #EA4335; }
.g-wordmark .go2 { color: #FBBC05; }
.g-wordmark .gg  { color: #4285F4; }
.g-wordmark .gl  { color: #34A853; }
.g-wordmark .ge  { color: #EA4335; }

.g-row { display: flex; align-items: center; gap: 7px; }
.g-score { font-size: 28px; font-weight: 700; color: #1a1a1a; line-height: 1; }
.g-stars { color: #F4B400; font-size: 17px; letter-spacing: 1px; line-height: 1; }
.g-count { font-size: 12px; color: #555; font-weight: 500; }

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.services {
    background: var(--cream);
    padding-bottom: 64px;
}

.services-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    transform: translateY(-56px);
    margin-bottom: -56px;
}

.service-card {
    background: var(--navy);
    border-radius: 10px;
    padding: 0 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    overflow: visible;
}

.icon-wrap {
    margin-top: -46px;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
}

.icon-wrap svg { width: 92px; height: 92px; display: block; }

.svc-title {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.svc-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-link {
    display: block;
    background: var(--cream);
    color: var(--navy);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background .2s, color .2s;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
}

.svc-link:hover { background: var(--red); color: #fff; }

.svc-link.all {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.svc-link.all:hover { background: var(--red); color: #fff; }

/* ─────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────── */
.s-eyebrow {
    display: block;
    color: var(--red);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.s-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--navy);
}

.s-title span { color: var(--red); }
.s-title.light { color: #fff; }

.sec-header { text-align: center; margin-bottom: 52px; }
.sec-header p {
    color: #666;
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 580px;
    margin: 14px auto 0;
    font-family: 'Montserrat', Arial, sans-serif;
}
.sec-header.light p { color: rgba(255,255,255,.7); }

.btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    padding: 14px 28px; border-radius: 6px;
    font-weight: 700; font-size: 14.5px;
    text-transform: uppercase; letter-spacing: .6px;
    box-shadow: 0 4px 16px rgba(204,34,41,.35);
    transition: background .2s, transform .15s;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
}
.btn-red:hover { background: #a81820; transform: translateY(-2px); }

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--navy);
    padding: 14px 28px; border-radius: 6px;
    font-weight: 700; font-size: 14.5px;
    text-transform: uppercase; letter-spacing: .6px;
    transition: background .2s, transform .15s;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 14px 28px; border-radius: 6px;
    font-weight: 700; font-size: 14.5px;
    text-transform: uppercase; letter-spacing: .6px;
    border: 2px solid rgba(255,255,255,.5);
    transition: border-color .2s, background .2s, transform .15s;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ─────────────────────────────────────
   ABOUT US
───────────────────────────────────── */
.about { background: #fff; padding: 96px 0; }

.about .inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 72px; align-items: center;
}

.about-text p {
    color: #555; font-size: 15.5px;
    line-height: 1.85; margin: 18px 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

.about-stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 14px; margin: 28px 0 30px;
}

.astat {
    background: var(--cream);
    border-left: 4px solid var(--red);
    padding: 16px 18px;
    border-radius: 0 6px 6px 0;
}

.astat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 26px; font-weight: 700;
    color: var(--navy); display: block; line-height: 1;
}

.astat-lbl {
    font-size: 11px; font-weight: 600; color: #888;
    text-transform: uppercase; letter-spacing: .5px;
    margin-top: 4px; display: block;
    font-family: 'Montserrat', Arial, sans-serif;
}

.about-certs {
    display: flex; gap: 10px;
    flex-wrap: wrap; margin-bottom: 30px;
}

.cert {
    background: var(--navy); color: rgba(255,255,255,.9);
    padding: 6px 14px; border-radius: 4px;
    font-size: 11px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    font-family: 'Montserrat', Arial, sans-serif;
}

.about-img-col { position: relative; }

.about-img-box {
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
    background: none;
    display: block;
    padding: 0;
}

.about-img-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 12px;
}

.about-badge {
    position: absolute; bottom: -28px; left: -28px;
    background: var(--red); color: #fff;
    padding: 22px 26px; border-radius: 10px;
    box-shadow: 0 8px 30px rgba(204,34,41,.42);
    text-align: center;
}

.about-badge .big-num {
    font-family: 'Oswald', sans-serif;
    font-size: 46px; font-weight: 700;
    line-height: 1; display: block;
}

.about-badge .big-lbl {
    font-size: 11.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    opacity: .9; margin-top: 4px; display: block;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* ─────────────────────────────────────
   CTA BANNERS
───────────────────────────────────── */
.cta-banner { padding: 72px 40px; text-align: center; }
.cta-banner.navy-bg { background: var(--navy); }
.cta-banner.red-bg  { background: var(--red); }

.cta-banner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px; font-weight: 700;
    color: #fff; text-transform: uppercase;
    margin-bottom: 12px; letter-spacing: .5px;
}

.cta-banner p {
    color: rgba(255,255,255,.82);
    font-size: 17px; line-height: 1.6;
    max-width: 580px; margin: 0 auto 36px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.cta-btns {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}

/* ─────────────────────────────────────
   FINANCE
───────────────────────────────────── */
.finance { background: var(--cream); padding: 96px 0; }

.finance .inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
}

.finance-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 44px;
}

.fin-card {
    background: var(--navy); border-radius: 10px;
    padding: 38px 30px; text-align: center; color: #fff;
    transition: transform .2s, box-shadow .2s;
}

.fin-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.22); }

.fin-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
}

.fin-icon svg { width: 32px; height: 32px; }

.fin-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 21px;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 10px; color: #fff;
}

.fin-card p { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.72); font-family: 'Montserrat', Arial, sans-serif; }

.finance-cta { text-align: center; }

/* ─────────────────────────────────────
   LOCATION
───────────────────────────────────── */
.location { background: #fff; padding: 96px 0; }

.location .inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 64px; align-items: start;
}

.info-block {
    display: flex; gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.info-block:last-of-type { border-bottom: none; }

.info-ico {
    width: 42px; height: 42px; border-radius: 8px;
    background: var(--cream); border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 17px; color: var(--red);
}

.info-body .lbl {
    display: block; font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #aaa; margin-bottom: 3px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.info-body .val {
    font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.55;
    font-family: 'Montserrat', Arial, sans-serif;
}

.info-body a.val { text-decoration: none; }
.info-body a.val:hover { color: var(--red); }

.divider-title {
    font-family: 'Oswald', sans-serif; font-size: 17px;
    font-weight: 600; color: var(--navy);
    text-transform: uppercase; letter-spacing: 1px;
    margin: 28px 0 10px; padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.hours-row {
    display: flex; justify-content: space-between;
    padding: 9px 0; border-bottom: 1px solid #f2f2f2;
    font-size: 14px; font-family: 'Montserrat', Arial, sans-serif;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: #444; }
.hours-row .time { font-weight: 700; color: var(--navy); }
.hours-row .time.emerg { color: var(--red); }

.areas-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.chip {
    background: var(--cream); color: var(--navy);
    padding: 5px 13px; border-radius: 50px;
    font-size: 12px; font-weight: 600;
    border: 1px solid #ddd;
    font-family: 'Montserrat', Arial, sans-serif;
}

.map-box {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
    min-height: 520px;
    background: #d0dae8;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; color: #6a7d9a;
}

.map-box iframe { width: 100%; height: 520px; border: none; display: block; }
.map-box span { font-size: 14px; font-weight: 600; text-align: center; padding: 0 24px; line-height: 1.6; }

/* ─────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────── */
.why { background: var(--navy); padding: 96px 0; }

.why .inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-top: 4px solid var(--red);
    border-radius: 10px; padding: 30px 26px;
    transition: background .2s, transform .2s;
}

.why-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }

.why-ico {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

.why-ico svg { width: 24px; height: 24px; }

.why-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 19px;
    font-weight: 600; color: #fff;
    text-transform: uppercase; letter-spacing: .8px;
    margin-bottom: 10px;
}

.why-card p { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,.68); font-family: 'Montserrat', Arial, sans-serif; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-text h1              { font-size: 62px; }
    .services-grid             { grid-template-columns: repeat(2, 1fr); }
    .about .inner              { grid-template-columns: 1fr; gap: 48px; }
    .finance-grid              { grid-template-columns: repeat(2, 1fr); }
    .location .inner           { grid-template-columns: 1fr; }
    .why-grid                  { grid-template-columns: repeat(2, 1fr); }
    .about-badge               { bottom: -20px; left: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU — Hamburger + Side Drawer
═══════════════════════════════════════════════════════════ */

/* Hamburger button — hidden by default, revealed on mobile */
.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; align-items: center;
    justify-content: center; padding: 6px; color: var(--navy);
    margin-left: 8px; border-radius: 6px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2.5px;
    background: currentColor; border-radius: 2px;
    transition: transform .22s ease, opacity .2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay behind the drawer */
.mobile-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.52); z-index: 9990;
    opacity: 0; transition: opacity .28s; cursor: pointer;
}
.mobile-overlay.open { opacity: 1; }

/* Slide-in drawer */
.mobile-drawer {
    display: none; position: fixed;
    top: 0; left: 0; bottom: 0; width: 300px; max-width: 88vw;
    background: #fff; z-index: 9995;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 32px rgba(0,0,0,.18);
}
.mobile-drawer.open { transform: translateX(0); }
body.drawer-open { overflow: hidden; }

/* Drawer header */
.mob-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-bottom: 1px solid #ebebeb;
    position: sticky; top: 0; background: #fff; z-index: 1;
}
.mob-logo img { height: 40px; display: block; }
.mob-close {
    background: none; border: none; cursor: pointer;
    padding: 6px; color: #888; display: flex; border-radius: 6px;
    transition: color .15s;
}
.mob-close:hover { color: var(--red); }

/* Drawer body */
.mob-body { padding-bottom: 36px; }

/* Service category accordion */
.mob-cat { border-bottom: 1px solid #ebebeb; }
.mob-cat-btn {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; text-align: left;
    font-family: 'Oswald', sans-serif; font-size: 14.5px; font-weight: 600;
    color: var(--navy); letter-spacing: .03em;
}
.mob-cat-btn:hover { color: var(--red); }
.mob-plus {
    font-size: 20px; line-height: 1; font-weight: 400;
    color: var(--red); transition: transform .2s;
}
.mob-cat.open .mob-plus { transform: rotate(45deg); }

/* Sub-links — max-height transition for smooth accordion */
.mob-cat-links {
    list-style: none; margin: 0; padding: 0;
    background: #f6f7fb; max-height: 0; overflow: hidden;
    transition: max-height .32s ease;
}
.mob-cat.open .mob-cat-links { max-height: 700px; }
.mob-cat-links li a {
    display: block; padding: 10px 30px;
    font-size: 14px; color: #444; text-decoration: none;
    transition: color .15s, padding-left .15s;
}
.mob-cat-links li a:hover { color: var(--red); padding-left: 36px; }
.mob-cat-links li a.mob-see-all {
    color: var(--navy); font-weight: 700; font-size: 13px;
    border-top: 1px solid #e0e0e8; margin-top: 4px; padding-top: 12px;
}
.mob-cat-links li a.mob-see-all:hover { color: var(--red); }

/* Divider between services and flat links */
.mob-divider { height: 6px; background: #f0f0f0; }

/* Flat nav links */
.mob-link {
    display: block; padding: 14px 18px; border-bottom: 1px solid #ebebeb;
    font-family: 'Oswald', sans-serif; font-size: 14.5px; font-weight: 600;
    color: var(--navy); text-decoration: none; letter-spacing: .03em;
    transition: color .15s;
}
.mob-link:hover { color: var(--red); }

/* CTA buttons at bottom of drawer */
.mob-actions { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; }
.mob-cta-btn {
    display: block; background: var(--red); color: #fff; text-align: center;
    padding: 13px 20px; border-radius: 8px; text-decoration: none;
    font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; transition: background .15s;
}
.mob-cta-btn:hover { background: #a91c22; }
.mob-phone-btn {
    display: block; background: var(--navy); color: #fff; text-align: center;
    padding: 13px 20px; border-radius: 8px; text-decoration: none;
    font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700;
    letter-spacing: .04em; transition: background .15s;
}
.mob-phone-btn:hover { background: #132d55; }

@media (max-width: 768px) {
    .top-bar                   { display: none; }
    .navbar                    { padding: 12px 20px; }
    .navbar nav .hide-mobile   { display: none; }
    .nav-hamburger             { display: flex; }
    .mobile-drawer,
    .mobile-overlay            { display: block; }
}
    .hero-inner                { flex-direction: column; gap: 28px; padding: 44px 20px 56px; }
    .hero-text h1              { font-size: 50px; }
    .hero-text .subhead        { font-size: 16px; }
    .services-grid             { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 16px; }
    .about .inner, .finance .inner,
    .location .inner, .why .inner { padding: 0 20px; }
    .cta-banner                { padding: 52px 20px; }
    .cta-banner h2             { font-size: 30px; }
    .cta-btns                  { flex-direction: column; align-items: center; }
    .finance-grid              { grid-template-columns: 1fr; }
    .why-grid                  { grid-template-columns: 1fr; }
    .about-stats               { grid-template-columns: 1fr 1fr; }
    .s-title                   { font-size: 32px; }
    .about, .finance, .location, .why { padding: 64px 0; }
}

@media (max-width: 520px) {
    .hero-text h1              { font-size: 40px; }
    .services-grid             { grid-template-columns: 1fr; }
    .btn-schedule, .btn-phone  { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE STYLES
   Used by: heating-elementor.html, heater-repair-elementor.html
   and all future main-service / sub-service pages.
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   PAGE HERO (all service pages)
───────────────────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 52px 0 48px;
    color: #fff;
}

.page-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-bottom: 22px;
}

.page-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
}

.page-breadcrumb a:hover { color: #fff; }

.page-breadcrumb .bc-sep { opacity: .4; }

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 30px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.page-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 13px 26px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s;
}

.btn-book:hover { background: #a61b21; }

.btn-call-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
    padding: 11px 24px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-call-hero:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.72);
}

.trust-badge .tbdot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #FFD93D;
    flex-shrink: 0;
}

/* ─────────────────────────────────────
   INTRO SECTION (main service page)
───────────────────────────────────── */
.svc-intro-wrap {
    background: #fff;
    padding: 88px 0;
}

.svc-intro {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 68px;
    align-items: center;
}

.svc-intro-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #d0dae8;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-intro-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.svc-intro-img .img-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: #7a95b2;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; text-align: center; padding: 20px;
}

.cert-badge-pill {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: .04em;
}

.svc-benefits {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: flex; flex-direction: column; gap: 13px;
}

.svc-benefits li {
    display: flex; align-items: flex-start; gap: 11px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; color: #374151; line-height: 1.5;
}

.svc-benefits li::before {
    content: '';
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #FFD93D;
    flex-shrink: 0; margin-top: 5px;
}

.svc-intro-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─────────────────────────────────────
   SUB-SERVICE CARDS GRID
───────────────────────────────────── */
.sub-svc-section {
    background: #f8f9fb;
    padding: 88px 0;
}

.sub-svc-section .inner {
    max-width: 1240px;
    margin: 0 auto; padding: 0 40px;
}

.sub-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 52px;
}

.sub-svc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none; display: block; color: inherit;
}

.sub-svc-card:hover {
    box-shadow: 0 8px 32px rgba(27,58,107,.11);
    transform: translateY(-3px);
}

.sub-svc-icon {
    width: 36px; height: 36px;
    color: var(--red); margin-bottom: 14px;
}

.sub-svc-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px; font-weight: 600;
    color: var(--navy); margin: 0 0 8px;
    text-transform: uppercase; letter-spacing: .4px;
}

.sub-svc-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px; color: #6b7280;
    margin: 0 0 16px; line-height: 1.6;
}

.learn-more-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700;
    color: var(--red); text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px;
}

.learn-more-link:hover { color: var(--navy); }

/* ─────────────────────────────────────
   HOW OUR SERVICE WORKS
───────────────────────────────────── */
.process-section {
    background: #fff;
    padding: 88px 0;
}

.process-section .inner {
    max-width: 1240px;
    margin: 0 auto; padding: 0 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px; margin-top: 52px;
}

.proc-step { text-align: center; }

.proc-num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--red); color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}

.proc-step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 17px; font-weight: 600;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: .5px; margin: 0 0 10px;
}

.proc-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; color: #6b7280;
    margin: 0; line-height: 1.7;
}

/* ─────────────────────────────────────
   FAQ ACCORDION (main service page)
───────────────────────────────────── */
.faq-section {
    background: #f8f9fb;
    padding: 88px 0;
}

.faq-section .inner {
    max-width: 1240px;
    margin: 0 auto; padding: 0 40px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px; margin-top: 48px; align-items: start;
}

.faq-list { }

.faq-item { border-bottom: 1px solid #e5e7eb; }

.faq-q {
    cursor: pointer; padding: 18px 0;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px; font-weight: 600; color: var(--navy);
    user-select: none;
}

.faq-icon {
    flex-shrink: 0; width: 26px; height: 26px;
    border-radius: 50%; background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--red); font-weight: 400;
    transition: transform .25s;
    line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .32s ease, padding-bottom .32s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px; color: #4b5563; line-height: 1.78;
    padding-bottom: 0;
}

.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

.faq-aside {
    border-radius: 12px; overflow: hidden;
    background: var(--cream);
    min-height: 300px;
    display: flex; align-items: center; justify-content: center;
}

.faq-aside img { width: 100%; display: block; }

.faq-aside-placeholder {
    color: #b5a48a;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; text-align: center; padding: 24px;
    line-height: 1.5;
}

/* ─────────────────────────────────────
   ZIP / SERVICE AREA CHECKER
───────────────────────────────────── */
.zip-section {
    background: #fff;
    padding: 80px 0; text-align: center;
}

.zip-section .inner {
    max-width: 640px;
    margin: 0 auto; padding: 0 40px;
}

.zip-row {
    display: flex; gap: 12px;
    margin-top: 32px; justify-content: center;
}

.zip-input {
    padding: 13px 18px;
    border: 2px solid #d1d5db; border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; color: var(--navy);
    width: 190px; outline: none;
    transition: border-color .2s;
}

.zip-input:focus { border-color: var(--navy); }

.btn-zip {
    background: var(--red); color: #fff; border: none;
    padding: 13px 24px; border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s;
}

.btn-zip:hover { background: #a61b21; }

.zip-result {
    margin-top: 16px; min-height: 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; color: #374151;
}

.zip-result.served { color: #15803d; font-weight: 600; }
.zip-result.not-served { color: var(--red); font-weight: 600; }

/* ─────────────────────────────────────
   SUB-SERVICE PAGE: CONTENT + SIDEBAR
───────────────────────────────────── */
.svc-content-wrap {
    background: #fff;
    padding: 72px 0 88px;
}

.svc-content-inner {
    max-width: 1240px;
    margin: 0 auto; padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px; align-items: start;
}

.svc-main-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; color: #4b5563; line-height: 1.82;
    margin-bottom: 18px;
}

.svc-main-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.btn-sched {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    padding: 13px 24px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 14px;
    text-decoration: none; letter-spacing: .03em;
    transition: background .2s;
}

.btn-sched:hover { background: #a61b21; }

.btn-call-navy {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--navy); color: var(--navy);
    padding: 11px 22px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 14px;
    text-decoration: none; letter-spacing: .03em;
    transition: background .2s, color .2s;
}

.btn-call-navy:hover { background: var(--navy); color: #fff; }

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-other-svc {
    border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden;
}

.sidebar-other-hd {
    background: var(--navy); color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 14px 20px; letter-spacing: .06em; text-transform: uppercase;
}

.sidebar-links {
    list-style: none; padding: 0; margin: 0;
}

.sidebar-links li { border-bottom: 1px solid #f1f5f9; }
.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; color: #374151;
    text-decoration: none;
    transition: color .15s, background .15s;
}

.sidebar-links a::before { content: '›'; color: var(--red); font-size: 18px; font-weight: 700; }
.sidebar-links a:hover { color: var(--red); background: #fef7f7; }

.sidebar-see-all {
    display: block; text-align: center; padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; color: var(--red);
    text-decoration: none; border-top: 1px solid #e5e7eb;
    transition: color .15s;
}

.sidebar-see-all:hover { color: var(--navy); }

/* Lead form */
.svc-lead-form {
    background: var(--navy);
    border-radius: 12px; padding: 28px 24px;
}

.form-hd {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 19px; font-weight: 700; color: #fff;
    margin-bottom: 20px;
}

.form-hd svg { width: 22px; height: 22px; flex-shrink: 0; }

.form-field { margin-bottom: 14px; }

.form-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px; padding: 11px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; color: #fff; outline: none;
    transition: border-color .2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.38); }

.form-field input:focus,
.form-field textarea:focus { border-color: rgba(255,255,255,.6); }

.form-field textarea { height: 80px; resize: none; }

.btn-form-submit {
    width: 100%; background: var(--red); color: #fff; border: none;
    border-radius: 6px; padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    letter-spacing: .03em; margin-top: 6px;
    transition: background .2s;
}

.btn-form-submit:hover { background: #a61b21; }

/* ─────────────────────────────────────
   WHAT WE COVER SECTION
───────────────────────────────────── */
.what-we-cover {
    background: #f8f9fb; padding: 72px 0;
}

.what-we-cover .inner {
    max-width: 860px; margin: 0 auto; padding: 0 40px;
}

.what-we-cover h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700; color: var(--navy);
    margin: 0 0 24px; line-height: 1.15; text-transform: uppercase;
}

.what-we-cover p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; color: #4b5563;
    line-height: 1.82; margin-bottom: 16px;
}

/* ─────────────────────────────────────
   MINI CTA BANNER (inside sub-page)
───────────────────────────────────── */
.page-cta-mini-wrap {
    max-width: 900px; margin: 0 auto; padding: 0 40px 72px;
}

.page-cta-mini {
    background: var(--navy); border-radius: 12px;
    padding: 28px 36px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

.page-cta-mini p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; font-weight: 600; color: #fff; margin: 0;
}

.page-cta-mini-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

.btn-mini-book {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    padding: 11px 22px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 14px;
    text-decoration: none; transition: background .2s;
}

.btn-mini-book:hover { background: #a61b21; }

.btn-mini-call {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,.45); color: #fff;
    padding: 9px 20px; border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 14px;
    text-decoration: none; transition: border-color .2s;
}

.btn-mini-call:hover { border-color: #fff; }

/* ─────────────────────────────────────
   WARNING SIGNS SECTION
───────────────────────────────────── */
.warning-signs {
    background: #fff; padding: 80px 0;
}

.warning-signs .inner {
    max-width: 860px; margin: 0 auto; padding: 0 40px;
}

.warning-list {
    list-style: none; padding: 0; margin: 36px 0 0;
    display: flex; flex-direction: column; gap: 26px;
}

.warning-item {
    display: flex; gap: 18px; align-items: flex-start;
}

.w-dot {
    width: 13px; height: 13px; border-radius: 50%;
    background: #FFD93D; flex-shrink: 0; margin-top: 5px;
}

.warning-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
}

.warning-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px; color: #4b5563;
    line-height: 1.78; margin: 0;
}

/* ─────────────────────────────────────
   FAQ CARDS GRID (sub-service page)
───────────────────────────────────── */
.faq-cards-section {
    background: #f8f9fb; padding: 80px 0;
}

.faq-cards-section .inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
}

.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}

.faq-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 28px 24px;
}

.faq-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--navy); margin: 0 0 12px; line-height: 1.4;
}

.faq-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; color: #6b7280;
    line-height: 1.75; margin: 0;
}

/* ─────────────────────────────────────
   FINAL PAGE CTA (shared)
───────────────────────────────────── */
.page-final-cta {
    background: var(--navy); padding: 72px 40px; text-align: center;
}

.page-final-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; color: #fff; text-transform: uppercase;
    letter-spacing: .5px; margin: 0 0 14px;
}

.page-final-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; color: rgba(255,255,255,.78);
    line-height: 1.65; margin: 0 auto 36px; max-width: 560px;
}

.page-final-cta-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ─────────────────────────────────────
   SERVICE PAGE RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
    .faq-layout           { grid-template-columns: 1fr; }
    .faq-aside            { display: none; }
    .process-steps        { grid-template-columns: repeat(2, 1fr); }
    .sub-svc-grid         { grid-template-columns: repeat(2, 1fr); }
    .svc-content-inner    { grid-template-columns: 1fr; }
    .svc-sidebar          { order: -1; }
    .svc-intro            { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .page-hero-inner,
    .svc-intro, .sub-svc-section .inner,
    .process-section .inner, .faq-section .inner,
    .zip-section .inner, .svc-content-inner,
    .what-we-cover .inner, .page-cta-mini-wrap,
    .warning-signs .inner, .faq-cards-section .inner { padding: 0 20px; }
    .page-cta-mini-wrap               { padding: 0 20px 52px; }
    .page-hero                        { padding: 40px 0 36px; }
    .page-hero h1                     { font-size: 34px; }
    .page-hero-btns, .trust-badges    { flex-direction: column; }
    .trust-badges                     { gap: 12px; }
    .page-cta-mini                    { flex-direction: column; text-align: center; }
    .faq-cards-grid                   { grid-template-columns: 1fr; }
    .process-steps                    { grid-template-columns: repeat(2, 1fr); }
    .page-final-cta                   { padding: 60px 20px; }
    .page-final-cta-btns              { flex-direction: column; align-items: center; }
}

@media (max-width: 540px) {
    .sub-svc-grid                     { grid-template-columns: 1fr; }
    .process-steps                    { grid-template-columns: 1fr; }
    .faq-cards-grid                   { grid-template-columns: 1fr; }
    .zip-row                          { flex-direction: column; }
    .zip-input                        { width: 100%; }
    .svc-main-btns, .svc-intro-btns  { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    background: #0c1f42;
    color: rgba(255,255,255,.68);
    font-family: 'Montserrat', sans-serif;
    /* Break out of Elementor's widget container to span full viewport width */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.footer-main {
    max-width: 1240px; margin: 0 auto;
    padding: 72px 40px 60px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
    gap: 52px;
}

/* Brand column */
.footer-brand-col { }

.footer-logo {
    display: inline-block; margin-bottom: 18px;
}

.footer-logo img {
    max-height: 50px; width: auto; display: block;
}

.footer-tagline {
    font-size: 14px; line-height: 1.72;
    color: rgba(255,255,255,.55);
    margin: 0 0 26px; max-width: 280px;
}

.footer-social {
    display: flex; gap: 10px; flex-wrap: wrap;
}

.social-btn {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    text-decoration: none; font-size: 15px;
    transition: background .2s, color .2s, border-color .2s;
}

.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Column headings */
.footer-col-hd {
    font-family: 'Oswald', sans-serif;
    font-size: 13px; font-weight: 600;
    color: #fff; text-transform: uppercase;
    letter-spacing: .1em; margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

/* Nav links */
.footer-nav {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 11px;
}

.footer-nav a {
    color: rgba(255,255,255,.6); text-decoration: none;
    font-size: 14px;
    display: flex; align-items: center; gap: 7px;
    transition: color .15s;
}

.footer-nav a::before {
    content: '›'; color: var(--red);
    font-size: 17px; font-weight: 700;
}

.footer-nav a:hover { color: #fff; }

/* Contact list */
.footer-contact-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 16px;
}

.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55;
}

.fc-icon {
    flex-shrink: 0; width: 32px; height: 32px;
    border-radius: 7px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; margin-top: 1px;
}

.footer-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none; transition: color .15s;
}

.footer-contact-list a:hover { color: #fff; }

.footer-emergency-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--red); color: #fff;
    font-size: 11.5px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px;
    letter-spacing: .04em; margin-top: 6px;
}

/* Divider */
.footer-divider {
    max-width: 1240px; margin: 0 auto;
    border: none; border-top: 1px solid rgba(255,255,255,.07);
}

/* Bottom bar */
.footer-bottom {
    background: #080f1f;
    padding: 18px 40px;
}

.footer-bottom-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: rgba(255,255,255,.35);
}

.footer-legal {
    display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,.35);
    text-decoration: none; transition: color .15s;
}

.footer-legal a:hover { color: rgba(255,255,255,.7); }

.footer-legal .leg-sep { opacity: .3; }

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .footer-main { grid-template-columns: 1fr; padding: 52px 20px 44px; gap: 36px; }
    .footer-bottom { padding: 16px 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
    .footer-legal { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */

.contact-section { padding: 72px 0; background: #fff; }

.contact-section-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start;
}

/* Info column */
.ci-hd {
    font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700;
    color: var(--navy); margin: 0 0 10px;
}

.ci-intro { font-size: 15.5px; color: #555; line-height: 1.7; margin-bottom: 36px; }

.ci-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }

.ci-icon {
    width: 46px; height: 46px; min-width: 46px;
    background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; color: #fff;
}

.ci-body { display: flex; flex-direction: column; }

.ci-label {
    font-size: 11.5px; text-transform: uppercase; letter-spacing: .09em;
    color: var(--red); font-weight: 700; margin-bottom: 5px;
}

.ci-val { font-size: 15.5px; color: #333; line-height: 1.6; }
.ci-val a { color: var(--navy); text-decoration: none; font-weight: 600; }
.ci-val a:hover { color: var(--red); }

.ci-hours { margin-top: 6px; }

.ci-hours-row {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 8px 0; border-bottom: 1px solid #ebebeb; font-size: 14.5px;
}
.ci-hours-row:last-child { border-bottom: none; }
.ci-day { color: #555; }
.ci-time { font-weight: 700; color: var(--navy); }
.ci-hours-row.emerg .ci-day,
.ci-hours-row.emerg .ci-time { color: var(--red); }

/* Form column — override sidebar sizing inside the contact page */
.contact-form-col .svc-lead-form { border-radius: 14px; }

/* 2-column form row */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Select element inside lead form */
.form-field select {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 7px; padding: 10px 14px;
    color: #fff; font-size: 14.5px; font-family: 'Montserrat', sans-serif;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    cursor: pointer;
}
.form-field select:focus { outline: none; border-color: rgba(255,255,255,.6); }
.form-field select option { background: #1B3A6B; color: #fff; }
.form-field select optgroup { background: #132d55; color: rgba(255,255,255,.6); font-size: 12px; }

/* Map section */
.contact-map-section { line-height: 0; }

.contact-map-section iframe { display: block; width: 100%; height: 440px; border: 0; }

.map-placeholder-box {
    height: 440px; background: #e8eef5;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}

/* Service areas on contact page */
.contact-areas { padding: 72px 0; background: var(--cream); }

.contact-areas-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px; text-align: center;
}
.contact-areas-inner .areas-chips { justify-content: center; }

/* Contact page responsive */
@media (max-width: 900px) {
    .contact-section-inner { grid-template-columns: 1fr; gap: 48px; }
    .form-row-2 { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 640px) {
    .contact-section-inner { padding: 0 20px; }
    .contact-areas-inner { padding: 0 20px; }
    .map-placeholder-box { height: 280px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */

/* Our Story */
.about-story { padding: 80px 0; background: #fff; }

.about-story-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

.about-story-text p { font-size: 15.5px; color: #4a4a4a; line-height: 1.75; margin-bottom: 18px; }
.about-story-text .btn-red { margin-top: 10px; display: inline-block; }

.about-story-photo { position: relative; }
.about-story-photo img {
    width: 100%; border-radius: 12px;
    object-fit: cover; aspect-ratio: 4/3; display: block;
}

/* Stats bar */
.ab-stats-bar { background: var(--navy); padding: 52px 0; }

.ab-stats-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}

.ab-stat { display: flex; flex-direction: column; align-items: center; }

.ab-stat-num {
    font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700;
    color: #fff; line-height: 1; letter-spacing: -.01em;
}

.ab-stat-lbl {
    font-size: 12.5px; color: rgba(255,255,255,.55);
    text-transform: uppercase; letter-spacing: .09em; margin-top: 8px;
}

/* Divider between stats */
.ab-stat + .ab-stat {
    border-left: 1px solid rgba(255,255,255,.12);
}

/* Meet the Owner */
.about-owner { padding: 80px 0; background: var(--cream); }

.about-owner-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start;
}

.about-owner-photo img {
    width: 100%; border-radius: 12px;
    object-fit: cover; aspect-ratio: 3/4; display: block;
    box-shadow: 0 8px 32px rgba(27,58,107,.14);
}

.about-owner-text p { font-size: 15.5px; color: #4a4a4a; line-height: 1.75; margin-bottom: 16px; }

.owner-quote {
    border-left: 4px solid var(--red); margin: 28px 0 8px;
    padding: 16px 20px; background: rgba(204,34,41,.05); border-radius: 0 8px 8px 0;
    font-size: 16px; color: var(--navy); font-style: italic; line-height: 1.7;
}

.quote-attr { font-size: 14px; font-weight: 700; color: var(--red); margin-top: 0; }

/* Certifications */
.about-certs { padding: 80px 0; background: #fff; }

.about-certs-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px; text-align: center;
}

.certs-flex {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 20px; margin-top: 48px;
}

.cert-badge-block {
    background: var(--cream); border: 2px solid #e2d9c5; border-radius: 12px;
    padding: 28px 24px; text-align: center; min-width: 170px; flex: 0 1 180px;
    transition: border-color .2s, box-shadow .2s;
}
.cert-badge-block:hover {
    border-color: var(--navy); box-shadow: 0 4px 18px rgba(27,58,107,.1);
}

.cert-icon-wrap {
    width: 60px; height: 60px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
}
.cert-icon-wrap svg { width: 40px; height: 40px; }

.cert-badge-name {
    font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--navy); margin-bottom: 5px;
}

.cert-badge-sub { font-size: 12px; color: #888; line-height: 1.4; }

/* About page responsive */
@media (max-width: 1024px) {
    .about-owner-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
    .ab-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ab-stat + .ab-stat { border-left: none; }
    .ab-stats-inner .ab-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
    .about-owner-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-owner-photo img { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
    .about-story-inner,
    .about-owner-inner,
    .about-certs-inner { padding: 0 20px; }
    .ab-stats-inner { padding: 0 20px; }
    .ab-stats-inner { grid-template-columns: 1fr 1fr; }
    .ab-stat-num { font-size: 38px; }
    .cert-badge-block { min-width: 140px; flex: 0 1 45%; padding: 20px 16px; }
}
