/**********  Mobile Auto Glass LA — brand stylesheet
    Palette sampled from the logo: racing red, LA-skyline navy,
    sunset orange/gold, chrome silver, night black.
***********************************************************/

:root {
    --brand-red: #D6111B;
    --brand-red-lt: #F5252F;
    --brand-red-dk: #8E0007;
    --brand-navy: #00305F;
    --brand-navy-dk: #001B38;
    --brand-night: #050B14;
    --brand-orange: #FC7A00;
    --brand-gold: #FFB020;
    --chrome-1: #ffffff;
    --chrome-2: #d7dee7;
    --chrome-3: #93a3b5;
    --hp-light: #F5F8FC;
    --hp-line: #dbe4ef;
    --hp-body: #4a5b6b;
    --font-display: "Playfair Display", "Lora", Georgia, serif;
    --font-ui: "Inter", "Open Sans", system-ui, -apple-system, sans-serif;
    --hp-display: "Inter", "Open Sans", system-ui, -apple-system, sans-serif;
    --hp-shadow-sm: 0 4px 14px rgba(0, 27, 56, .07);
    --hp-shadow-md: 0 18px 40px rgba(0, 27, 56, .13);
    --hp-shadow-lg: 0 30px 70px rgba(5, 11, 20, .38);
}

/* ===== Bootstrap utility re-theme =====
   bootstrap.min.css was compiled with the old green/orange and hardcodes
   those hex values, so the CSS variables in style.css can't reach them.
   These overrides repaint every page in the logo's colours. */
.btn-primary {
    color: #fff !important;
    background-color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: var(--brand-red-dk) !important;
    border-color: var(--brand-red-dk) !important;
}

.btn-outline-primary {
    color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff !important;
    background-color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.btn-secondary {
    color: #fff !important;
    background-color: var(--brand-navy) !important;
    border-color: var(--brand-navy) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: #fff !important;
    background-color: var(--brand-navy-dk) !important;
    border-color: var(--brand-navy-dk) !important;
}

.text-primary {
    color: var(--brand-red) !important;
}

.bg-primary {
    background-color: var(--brand-red) !important;
}

.border-primary {
    border-color: var(--brand-red) !important;
}

.text-secondary {
    color: var(--brand-navy) !important;
}

.bg-secondary {
    background-color: var(--brand-navy) !important;
}

/* ===== Site-wide typography =====
   Playfair for headings, Inter for text, on every page — so the
   service/area pages read with the same voice as the homepage. */
body {
    font-family: var(--font-ui);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -.004em;
}

/* ===== Header / navbar ===== */
.brand-logo img {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .35));
    transition: transform .3s ease;
}

.brand-logo:hover img {
    transform: scale(1.04);
}

/* Night bar carrying the phone number, echoing the logo's black ground */
.container-fluid.fixed-top {
    background: transparent;
}

.top-bar.row {
    --bs-gutter-x: 0;
    height: auto;
    background: linear-gradient(90deg, var(--brand-night), var(--brand-navy) 45%, var(--brand-red-dk));
    border-bottom: none;
}

.top-header-bar .top-text {
    color: #ffd9db;
    letter-spacing: .02em;
}

.top-header-bar .top-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.top-header-bar .top-link:hover {
    color: var(--brand-gold);
}

.navbar.navbar-light {
    background: rgba(255, 255, 255, .97) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 26px rgba(0, 27, 56, .10);
    border-bottom: 3px solid var(--brand-red);
}

.navbar .navbar-nav .nav-link {
    font-family: var(--hp-display);
    font-weight: 600;
    color: var(--brand-navy);
    position: relative;
    /* style.css's base rule (25px 15px) and its 1200-1500px tablet/laptop
       media query (down to 25px 7px + 14px font) crowd the items together
       right where most visitors land — widen it back out here. */
    padding: 25px 22px !important;
}

.navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 16px;
    height: 2px;
    background: var(--brand-red);
    transform: scaleX(0);
    transition: transform .28s ease;
}

.navbar .navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
}

.scroll-dropdown {
    max-height: 372px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-red) transparent;
}

.scroll-dropdown::-webkit-scrollbar {
    width: 6px;
}

.scroll-dropdown::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 10px;
}

.navbar .dropdown-menu {
    border: none;
    border-top: 3px solid var(--brand-red);
    box-shadow: 0 18px 44px rgba(0, 27, 56, .18);
    min-width: 280px;
    padding: 8px 0;
}

.navbar .dropdown-item {
    white-space: normal;
    line-height: 1.4;
    padding: .5rem 1.25rem;
    color: var(--brand-navy);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(214, 17, 27, .07);
    color: var(--brand-red);
}

@media (max-width: 991.98px) {
    .brand-logo img {
        height: 56px;
    }

    .navbar .navbar-nav .nav-link::before {
        display: none;
    }

    /* the collapsed mobile menu stacks items full-width, so it doesn't need
       (or want) the desktop's tall 25px vertical padding */
    .navbar .navbar-nav .nav-link {
        padding: 14px 6px !important;
    }

    .navbar .dropdown-menu {
        min-width: 0;
    }
}

/* ===== Hero — "LA night drive" ===== */
.hp-hero {
    position: relative;
    isolation: isolate;
    padding: 190px 0 150px;
    background:
        radial-gradient(120% 90% at 50% 105%, #10325c 0%, transparent 55%),
        linear-gradient(178deg, var(--brand-night) 0%, #071a33 42%, var(--brand-navy-dk) 100%);
    overflow: hidden;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* faint engineering grid */
.hp-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(115% 85% at 30% 15%, #000 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(115% 85% at 30% 15%, #000 20%, transparent 72%);
}

/* the logo's sunset, rising behind the skyline */
.hp-sun {
    position: absolute;
    left: 50%;
    bottom: 40px;
    width: 1150px;
    height: 560px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 50% 100%,
            rgba(255, 176, 32, .40) 0%,
            rgba(252, 122, 0, .26) 30%,
            rgba(214, 17, 27, .14) 52%,
            transparent 72%);
    filter: blur(10px);
}

.hp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
}

.hp-orb-1 {
    width: 500px;
    height: 500px;
    top: -170px;
    right: -110px;
    background: radial-gradient(circle, rgba(214, 17, 27, .62), transparent 68%);
}

.hp-orb-2 {
    width: 440px;
    height: 440px;
    top: 40px;
    left: -180px;
    background: radial-gradient(circle, rgba(0, 84, 168, .70), transparent 68%);
}

.hp-streak {
    position: absolute;
    top: -30%;
    left: 44%;
    width: 34%;
    height: 170%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .06) 45%, transparent 70%);
    transform: rotate(14deg);
}

/* impact-crack motif — the trade, drawn in light */
.hp-crack {
    position: absolute;
    top: 46px;
    right: 4%;
    width: 430px;
    height: 430px;
    color: rgba(255, 255, 255, .13);
    opacity: .85;
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hp-hero-inner > .row {
        align-items: stretch !important;
    }
}

.hp-hero-copy {
    color: #fff;
}

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--hp-display);
    color: #fff;
    background: linear-gradient(120deg, var(--brand-red), var(--brand-red-dk));
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(214, 17, 27, .42);
}

.hp-eyebrow i {
    color: var(--brand-gold);
}

/* chrome headline, like the logo's metal type */
.hp-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.85rem, 1.05rem + 2.45vw, 3.35rem);
    line-height: 1.22;
    letter-spacing: -.005em;
    margin-bottom: 24px;
    text-wrap: balance;
    color: #fff;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #e3ebf4 72%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .55));
}

@supports not (background-clip: text) {
    .hp-hero h1 {
        -webkit-text-fill-color: #fff;
        color: #fff;
    }
}

.hp-hero p.hp-lead a {
    color: var(--brand-gold);
    font-weight: 600;
    font-size: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.hp-hero p.hp-lead a:hover,
.hp-hero p.hp-lead a:focus {
    color: #fff;
}

.hp-hero p.hp-lead {
    font-family: var(--font-ui);
    color: #c3d3e6;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .003em;
    margin-bottom: 32px;
    max-width: 56ch;
}

/* Phone CTA — red, with sunset glow */
.hp-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(120deg, var(--brand-red) 0%, #ef2f14 55%, var(--brand-orange) 130%);
    color: #fff !important;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: .004em;
    padding: 13px 30px 13px 14px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(214, 17, 27, .48);
    transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
    margin-bottom: 34px;
}

.hp-cta-phone:hover,
.hp-cta-phone:focus {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 22px 50px rgba(252, 122, 0, .55);
    color: #fff !important;
}

.hp-cta-ring {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hp-cta-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    animation: hp-pulse 2.4s ease-out infinite;
}

@keyframes hp-pulse {
    0% { transform: scale(1); opacity: .85; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Feature chips — angled, red-edged like a racing stripe */
.hp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hp-feature-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-ui);
    color: #e9f1fa;
    font-size: .93rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .004em;
    padding: 12px 16px 12px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.hp-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-orange));
}

.hp-feature-list li:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(252, 122, 0, .5);
    transform: translateY(-2px);
}

.hp-feature-list li i {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hero image — chrome frame + light sweep */
.hp-hero-img-wrap {
    position: relative;
    order: -1;
}

.hp-hero-img-frame {
    position: relative;
    display: flex;
    border-radius: 20px;
    padding: 8px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .55), rgba(147, 163, 181, .18) 45%, rgba(255, 255, 255, .40));
    box-shadow: var(--hp-shadow-lg);
    overflow: hidden;
}

/* red corner accent */
.hp-hero-img-frame::after {
    content: "";
    position: absolute;
    left: -46px;
    bottom: -46px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--brand-red), transparent 62%);
    border-radius: 26px;
    opacity: .9;
    pointer-events: none;
}

.hp-frame-streak {
    position: absolute;
    top: -60%;
    left: -35%;
    width: 45%;
    height: 220%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .16) 45%, rgba(255, 255, 255, .20) 55%, transparent);
    transform: rotate(16deg);
    animation: hp-sweep 6.5s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes hp-sweep {
    0%, 62% { left: -35%; }
    92%, 100% { left: 115%; }
}

.hp-hero-picture {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* the whole photo, never cropped */
.hp-hero-img-main {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 13px;
}

/* a blurred copy of the same shot fills the frame edge-to-edge so the
   contained photo never sits on empty letterbox bars */
.hp-hero-img-fill {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    filter: blur(26px) saturate(115%);
    transform: scale(1.14);
    opacity: .55;
}

@media (min-width: 992px) {
    .hp-hero-img-wrap {
        order: 2;
        align-self: stretch;
        position: relative;
    }

    /* Taken out of flow so the photo's own height can't inflate the row:
       the copy column alone sets the height, and the frame fills exactly
       that box. Both columns therefore always end level, and the photo
       inside is contained (never cropped). */
    .hp-hero-img-frame {
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(var(--bs-gutter-x, 3rem) * .5);
        right: calc(var(--bs-gutter-x, 3rem) * .5);
        min-height: 460px;
    }
}

/* ===== LA skyline + palms band ===== */
.hp-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
}

.hp-skyline svg {
    display: block;
    width: 100%;
    height: 168px;
}

.hp-skyline > svg:first-child path {
    fill: #01162c;
    opacity: 1;
}

.hp-skyline .hp-palms {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
}

.hp-skyline .hp-palms path {
    fill: #01101f;
}

.hp-skyline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22px;
    background: linear-gradient(180deg, transparent, var(--hp-light) 92%);
}

/* ===== Section 2 ===== */
.hp-intro {
    position: relative;
    overflow-x: clip;
    padding: 76px 0 90px;
    background:
        radial-gradient(52% 46% at 88% 2%, rgba(214, 17, 27, .07), transparent 62%),
        radial-gradient(46% 40% at 6% 96%, rgba(0, 48, 95, .08), transparent 60%),
        var(--hp-light);
}

.hp-section-head {
    margin-bottom: 36px;
}

.hp-kicker {
    display: block;
    width: 68px;
    height: 5px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
    margin-bottom: 18px;
}

.hp-intro h2 {
    font-family: var(--font-display);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
    line-height: 1.24;
    letter-spacing: -.004em;
    margin-bottom: 18px;
    text-wrap: balance;
}

.hp-intro p.hp-intro-copy {
    font-family: var(--font-ui);
    color: var(--hp-body);
    font-size: 1.02rem;
    line-height: 1.9;
    letter-spacing: .003em;
    margin-bottom: 0;
    max-width: 60ch;
}

/* Why cards — numbered, diagonal red corner */
.hp-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.hp-why-card {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: var(--hp-shadow-sm);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* clipped corner flag */
.hp-why-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 46px 46px 0;
    border-color: transparent var(--brand-red) transparent transparent;
    opacity: .07;
    transition: opacity .3s ease;
}

.hp-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-orange));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease;
}

.hp-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hp-shadow-md);
    border-color: rgba(214, 17, 27, .3);
}

.hp-why-card:hover::before {
    transform: scaleY(1);
}

.hp-why-card:hover::after {
    opacity: .22;
}

.hp-why-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1;
    color: transparent;
    background: linear-gradient(180deg, #e9eef5, #c3cedb);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 1;
}

.hp-why-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--brand-red), var(--brand-red-dk));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 10px 20px rgba(214, 17, 27, .32);
}

.hp-why-body {
    padding-right: 40px;
}

.hp-why-body h3 {
    font-family: var(--font-ui);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: 1.03rem;
    line-height: 1.4;
    letter-spacing: -.005em;
    margin-bottom: 8px;
}

.hp-why-body p {
    font-family: var(--font-ui);
    color: var(--hp-body);
    font-size: .935rem;
    line-height: 1.75;
    margin: 0;
}

@media (min-width: 1200px) {
    .hp-why-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-why-card-wide {
        grid-column: 1 / -1;
    }
}

/* ===== Quote form — a night "dispatch card" ===== */
.hp-form-wrap {
    position: relative;
}

@media (min-width: 992px) {
    .hp-form-wrap {
        position: sticky;
        top: 150px;
    }
}

.hp-form-card {
    position: relative;
    background:
        radial-gradient(90% 60% at 90% 0%, rgba(214, 17, 27, .34), transparent 62%),
        linear-gradient(160deg, var(--brand-night) 0%, #08203c 52%, var(--brand-navy) 100%);
    border-radius: 22px;
    padding: 0 0 34px;
    box-shadow: var(--hp-shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
}

/* chrome cap on the card */
.hp-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--brand-gold));
}

.hp-form-card form#quote_form,
.hp-form-card form#quote_form2 {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 34px 30px 0;
    margin: 0;
    color: #fff;
}

.hp-form-card h2 {
    font-family: var(--font-display);
    color: #fff;
    font-weight: 600;
    font-size: 1.72rem;
    letter-spacing: 0;
    margin-bottom: 1.6rem !important;
}

.hp-form-card .form-control {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .97);
    color: #10202f;
    box-shadow: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.hp-form-card .form-control:focus {
    border-color: var(--brand-red-lt);
    box-shadow: 0 0 0 4px rgba(214, 17, 27, .25);
    background: #fff;
}

/* style.css styles every `label` like an input (white bg + border) */
.hp-form-card .form-floating > label {
    background: transparent;
    background-color: transparent;
    border-color: transparent;
    border-radius: 12px;
    color: #6a7c8c;
    font-size: .95rem;
}

.hp-form-card .btn,
.hp-form-card button.btn.btn-outline-light {
    background: linear-gradient(120deg, var(--brand-red), #f0330f 60%, var(--brand-orange));
    border: none;
    border-radius: 60px;
    color: #fff;
    font-family: var(--hp-display);
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 14px 32px rgba(214, 17, 27, .45);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.hp-form-card .btn:hover,
.hp-form-card .btn:focus,
.hp-form-card button.btn.btn-outline-light:hover,
.hp-form-card button.btn.btn-outline-light:focus {
    color: #fff;
    filter: brightness(1.09);
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(252, 122, 0, .5);
}

.hp-form-card #response,
.hp-form-card #response2 {
    color: #e9f1fa;
    font-size: .9rem;
}

/* ===== Footer ===== */
.hp-footer {
    background:
        radial-gradient(70% 60% at 88% 0%, rgba(214, 17, 27, .18), transparent 60%),
        var(--brand-night) !important;
    position: relative;
}

.footer-logo img {
    height: 84px;
    width: auto;
    margin-bottom: 6px;
}

.hp-footer h4,
.hp-footer h5 {
    font-family: var(--font-display);
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.hp-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
}

.hp-footer .hp-tagline {
    color: #9fb4cb;
    font-size: .94rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hp-footer p {
    margin-bottom: 9px;
}

.hp-footer a.footer-link,
.hp-footer .text-setup a {
    color: #c2d2e4;
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
}

.hp-footer a.footer-link:hover,
.hp-footer .text-setup a:hover {
    color: var(--brand-orange);
}

.hp-footer .hp-areas-grid a.footer-link:hover {
    padding-left: 5px;
}

.hp-footer .text-setup {
    color: #9fb4cb;
    font-size: .94rem;
    line-height: 1.9;
}

/* the address wraps onto a second line (street, then city/state/zip) — as an
   inline-block it gets its own left edge, so the second line lines up under
   the first ("1158 26th St...") instead of back under the "Address:" label */
.hp-footer-addr-value {
    display: inline-block;
    vertical-align: top;
}

.hp-footer .hp-areas-grid {
    column-count: 2;
    column-gap: 26px;
}

.hp-footer .hp-areas-grid p {
    break-inside: avoid;
}

.hp-footer-bottom {
    background: #01060d;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.hp-footer-bottom .copyright_text,
.hp-footer-bottom a {
    color: #9fb4cb;
    font-size: .89rem;
    text-decoration: none;
}

.hp-footer-bottom a:hover {
    color: var(--brand-orange);
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .hp-hero {
        padding-top: 180px;
    }

    .hp-crack {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 991.98px) {
    .hp-hero {
        padding: 150px 0 130px;
        text-align: center;
    }

    .hp-hero p.hp-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hp-cta-phone,
    .hp-feature-list {
        text-align: left;
    }

    .hp-skyline svg {
        height: 120px;
    }

    .hp-skyline .hp-palms {
        height: 138px;
    }

    .hp-sun {
        width: 760px;
        height: 380px;
        bottom: 30px;
    }

    .hp-intro {
        padding: 58px 0 70px;
    }

    .hp-form-wrap {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .hp-hero {
        padding: 138px 0 140px;
    }

    .hp-crack {
        display: none;
    }

    .hp-orb-1,
    .hp-orb-2 {
        width: 290px;
        height: 290px;
    }

    .hp-feature-list {
        grid-template-columns: 1fr;
    }

    .hp-cta-phone {
        width: 100%;
        font-size: .95rem;
        padding: 12px 22px 12px 12px;
    }

    .hp-hero-img-frame::after {
        width: 96px;
        height: 96px;
    }

    .hp-skyline svg {
        height: 92px;
    }

    .hp-skyline .hp-palms {
        height: 104px;
    }

    .hp-why-card {
        padding: 22px 20px;
    }

    .hp-why-body {
        padding-right: 34px;
    }

    .hp-form-card form#quote_form,
.hp-form-card form#quote_form2 {
        padding: 28px 20px 0;
    }

    .hp-form-card h2 {
        font-size: 1.35rem;
    }

    .hp-footer .hp-areas-grid {
        column-count: 1;
    }
}

@media (max-width: 575.98px) {
    /* Below 576px .container is full-width (12px padding) while g-5 rows
       pull -24px margins — trim the gutter so nothing overhangs. */
    .hp-hero .row,
    .hp-intro .row {
        --bs-gutter-x: 1.5rem;
    }

    .hp-hero {
        padding-top: 128px;
    }

    .hp-eyebrow {
        font-size: .72rem;
        padding: 6px 15px;
    }

    .hp-hero p.hp-lead {
        font-size: .97rem;
    }

    .hp-hero-img-frame {
        padding: 6px;
        border-radius: 16px;
    }

    .hp-why-num {
        font-size: 1.25rem;
    }

    .hp-why-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hp-cta-ring::after,
    .hp-frame-streak {
        animation: none;
    }

    .hp-frame-streak {
        display: none;
    }

    .hp-cta-phone,
    .hp-feature-list li,
    .hp-why-card,
    .hp-form-card .btn,
    .brand-logo img {
        transition: none;
    }

    .hp-cta-phone:hover,
    .hp-why-card:hover,
    .hp-feature-list li:hover,
    .hp-form-card .btn:hover,
    .brand-logo:hover img {
        transform: none;
    }
}

/* ===== Section head variants ===== */
.hp-head-center {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.hp-head-center .hp-kicker {
    margin-left: auto;
    margin-right: auto;
}

.hp-head-center .hp-intro-copy {
    margin-left: auto;
    margin-right: auto;
}

.hp-on-dark h2 {
    color: #fff;
}

.hp-on-dark .hp-intro-copy {
    color: #c3d3e6;
}

/* ===== Services ===== */
.hp-services {
    position: relative;
    overflow-x: clip;
    padding: 90px 0 96px;
    background:
        radial-gradient(48% 40% at 4% 4%, rgba(0, 48, 95, .06), transparent 62%),
        #fff;
}

.hp-services h2,
.hp-areas h2 {
    font-family: var(--font-display);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
    line-height: 1.24;
    letter-spacing: -.004em;
    margin-bottom: 18px;
    text-wrap: balance;
}

.hp-svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 26px;
}

.hp-svc-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 18px;
    padding: 0 28px 26px;
    box-shadow: var(--hp-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hp-svc-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    height: 4px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
    transform: scaleX(0);
    transition: transform .35s ease;
}

.hp-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-md);
    border-color: rgba(214, 17, 27, .28);
}

.hp-svc-card:hover::before {
    transform: scaleX(1);
}

/* photo header + floating icon badge */
.hp-svc-media {
    position: relative;
    margin: 0 -28px 22px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(150deg, var(--brand-navy-dk), var(--brand-navy));
}

.hp-svc-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.hp-svc-card:hover .hp-svc-media img {
    transform: scale(1.06);
}

.hp-svc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 20, 0) 45%, rgba(5, 11, 20, .55) 100%);
    pointer-events: none;
}

.hp-svc-media-plain {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-svc-media-plain::after {
    background: radial-gradient(70% 70% at 50% 40%, rgba(214, 17, 27, .30), transparent 70%);
}

.hp-svc-icon {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(145deg, var(--brand-red), var(--brand-red-dk));
    border: 3px solid #fff;
    box-shadow: 0 10px 22px rgba(214, 17, 27, .34);
    transition: transform .3s ease;
}

.hp-svc-media-plain .hp-svc-icon {
    position: static;
    width: 68px;
    height: 68px;
    font-size: 27px;
    border-color: rgba(255, 255, 255, .18);
}

.hp-svc-card:hover .hp-svc-icon {
    transform: translateY(-3px) scale(1.05);
}



.hp-svc-card h3 {
    margin-top: 0;
    font-family: var(--font-display);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: 1.32rem;
    line-height: 1.3;
    letter-spacing: -.004em;
    margin-bottom: 12px;
}

.hp-svc-copy {
    font-family: var(--font-ui);
    color: var(--hp-body);
    font-size: .94rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hp-svc-label {
    font-family: var(--font-ui);
    color: var(--brand-navy);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hp-svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.hp-svc-list li {
    position: relative;
    font-family: var(--font-ui);
    color: var(--hp-body);
    font-size: .91rem;
    line-height: 1.55;
    padding: 0 0 0 26px;
    margin-bottom: 9px;
}

.hp-svc-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: .58em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
}

.hp-svc-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: .92rem;
    color: var(--brand-red);
    text-decoration: none;
    padding-top: 18px;
    border-top: 1px solid var(--hp-line);
    transition: color .25s ease, gap .25s ease;
}

.hp-svc-link i {
    font-size: .78rem;
    transition: transform .25s ease;
}

.hp-svc-link:hover {
    color: var(--brand-red-dk);
    gap: 14px;
}

.hp-svc-link:hover i {
    transform: translateX(3px);
}

/* ===== Process / steps (dark band) ===== */
.hp-steps {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 92px 0 100px;
    background:
        radial-gradient(100% 80% at 50% 0%, #0d2a4d 0%, transparent 60%),
        linear-gradient(170deg, var(--brand-navy-dk) 0%, var(--brand-night) 100%);
}

.hp-steps-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hp-steps-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(90% 70% at 50% 40%, #000 15%, transparent 74%);
    -webkit-mask-image: radial-gradient(90% 70% at 50% 40%, #000 15%, transparent 74%);
}

.hp-orb-3 {
    width: 620px;
    height: 620px;
    top: -260px;
    right: -160px;
    background: radial-gradient(circle, rgba(214, 17, 27, .40), transparent 68%);
}

.hp-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
    position: relative;
}

/* connecting rail */
.hp-step-list::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(252, 122, 0, .45), rgba(214, 17, 27, .45), transparent);
}

.hp-step {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.hp-step-num {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(145deg, var(--brand-red), var(--brand-red-dk));
    box-shadow: 0 12px 26px rgba(214, 17, 27, .42), 0 0 0 8px rgba(214, 17, 27, .10);
    margin-bottom: 22px;
}

.hp-step h3 {
    font-family: var(--font-ui);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.45;
    letter-spacing: -.004em;
    margin-bottom: 10px;
}

.hp-step p {
    font-family: var(--font-ui);
    color: #a9c0d8;
    font-size: .92rem;
    line-height: 1.8;
    margin: 0;
}

/* ===== Areas we serve ===== */
.hp-areas {
    position: relative;
    overflow-x: clip;
    padding: 90px 0 96px;
    background:
        radial-gradient(50% 44% at 92% 8%, rgba(214, 17, 27, .06), transparent 62%),
        var(--hp-light);
}

.hp-areas .hp-section-head {
    max-width: 780px;
}

.hp-areas .hp-intro-copy + .hp-intro-copy {
    margin-top: 14px;
}

.hp-areas-row {
    margin-top: 6px;
}

.hp-primary-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image:
        linear-gradient(155deg, rgba(0, 27, 56, .90) 0%, rgba(0, 48, 95, .78) 55%, rgba(142, 0, 7, .62) 150%),
        url(../img/Mobile-Auto-Glass-LA-Santa-Monica-Service-Area-Background.jpg);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
    border-radius: 18px;
    padding: 36px 28px;
    min-height: 260px;
    box-shadow: var(--hp-shadow-md);
    position: relative;
    overflow: hidden;
}

.hp-primary-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 122, 0, .34), transparent 70%);
}

.hp-primary-card h3,
.hp-nearby h3 {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hp-primary-card h3 {
    color: #b8d3ee;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}

.hp-nearby h3 {
    color: var(--brand-navy);
}

.hp-primary-link {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}

.hp-primary-link i {
    color: var(--brand-orange);
    font-size: 1.1rem;
}

.hp-primary-link:hover {
    color: var(--brand-gold);
}

.hp-area-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
}

.hp-area-grid a {
    display: block;
    font-family: var(--font-ui);
    font-size: .92rem;
    color: var(--brand-navy-dk);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 10px;
    padding: 12px 16px;
    transition: border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.hp-area-grid a:hover {
    color: var(--brand-red);
    border-color: rgba(214, 17, 27, .35);
    transform: translateY(-2px);
    box-shadow: var(--hp-shadow-sm);
}

@media (max-width: 991.98px) {
    .hp-services,
    .hp-areas {
        padding: 62px 0 68px;
    }

    .hp-steps {
        padding: 64px 0 70px;
    }

    .hp-step-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
    }

    .hp-step-list::before {
        display: none;
    }

    .hp-head-center {
        margin-bottom: 36px;
    }
}

@media (max-width: 767.98px) {
    .hp-svc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hp-svc-card {
        padding: 0 22px 22px;
    }

    .hp-svc-media {
        margin: 0 -22px 22px;
    }

    .hp-step-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hp-step {
        text-align: left;
        display: grid;
        grid-template-columns: 56px 1fr;
        column-gap: 18px;
        padding: 0;
    }

    .hp-step-num {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .hp-primary-link {
        font-size: 1.3rem;
    }

    .hp-area-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* ===== Quote form refinements ===== */
.hp-form-card form#quote_form,
.hp-form-card form#quote_form2 {
    padding: 36px 32px 4px;
}

/* hairline rule under the form heading */
.hp-form-card h2 {
    position: relative;
    padding-bottom: 18px;
    text-align: center;
}

.hp-form-card h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
}

.hp-form-card .form-control {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    border-radius: 12px;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.hp-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, .45);
}

.hp-form-card .form-control:hover {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .09);
}

.hp-form-card .form-control:focus {
    background: rgba(255, 255, 255, .12);
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(252, 122, 0, .22);
    color: #fff;
}

.hp-form-card .form-floating > label {
    color: rgba(255, 255, 255, .6);
    font-family: var(--font-ui);
    font-size: .92rem;
}

.hp-form-card .form-floating > .form-control:focus ~ label,
.hp-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--brand-gold);
    opacity: 1;
}

/* Captcha row layout/colors are handled globally in style.css (.captcha-row,
   .captcha-refresh, .captcha-input) so they're consistent on every page,
   including this one. */
.hp-form-card .captcha-row img {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .28);
}

.hp-form-card .btn,
.hp-form-card button.btn.btn-outline-light {
    margin-top: 6px;
    padding-top: .95rem;
    padding-bottom: .95rem;
    font-size: 1rem;
    letter-spacing: .015em;
}

.hp-form-card #response:not(:empty),
.hp-form-card #response2:not(:empty) {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
}

@media (max-width: 767.98px) {
    .hp-form-card form#quote_form,
.hp-form-card form#quote_form2 {
        padding: 30px 22px 4px;
    }
}

/* ===== Reviews ===== */
.hp-reviews {
    position: relative;
    overflow-x: clip;
    padding: 90px 0 96px;
    background:
        radial-gradient(46% 40% at 8% 10%, rgba(252, 122, 0, .06), transparent 62%),
        #fff;
}

.hp-reviews h2 {
    font-family: var(--font-display);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
    line-height: 1.24;
    letter-spacing: -.004em;
    margin-bottom: 18px;
    text-wrap: balance;
}

.hp-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    align-items: stretch;
}

.hp-review {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 18px;
    padding: 40px 30px 28px;
    box-shadow: var(--hp-shadow-sm);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hp-review:hover {
    transform: translateY(-5px);
    box-shadow: var(--hp-shadow-md);
    border-color: rgba(214, 17, 27, .25);
}

.hp-quote-mark {
    position: absolute;
    top: -18px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 1;
    color: rgba(214, 17, 27, .09);
    pointer-events: none;
}

.hp-stars {
    display: flex;
    gap: 4px;
    color: var(--brand-gold);
    font-size: .95rem;
    margin-bottom: 16px;
}

.hp-review blockquote {
    font-family: var(--font-ui);
    color: var(--hp-body);
    font-size: .95rem;
    line-height: 1.85;
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
}

.hp-review figcaption {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--hp-line);
}

.hp-review-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.06rem;
    color: var(--brand-navy-dk);
}

.hp-review-src {
    font-family: var(--font-ui);
    font-size: .82rem;
    color: var(--hp-body);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hp-review-src i {
    color: var(--brand-red);
}

/* ===== Schedule CTA band ===== */
.hp-cta-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 84px 0 90px;
    /* brand gradient kept semi-transparent so the photo reads through it
       while the copy stays high-contrast white */
    background-image:
        radial-gradient(90% 120% at 12% 0%, rgba(214, 17, 27, .50), transparent 60%),
        linear-gradient(140deg, rgba(0, 27, 56, .93) 0%, rgba(5, 11, 20, .88) 52%, rgba(142, 0, 7, .86) 150%),
        url(../img/Mobile-Auto-Glass-LA-Schedule-Service-Background-Santa-Monica-CA.jpg);
    background-size: cover, cover, cover;
    background-position: center, center, center 32%;
    background-repeat: no-repeat;
}

.hp-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hp-cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(80% 70% at 70% 50%, #000 10%, transparent 72%);
    -webkit-mask-image: radial-gradient(80% 70% at 70% 50%, #000 10%, transparent 72%);
}

.hp-orb-4 {
    width: 560px;
    height: 560px;
    bottom: -280px;
    right: -120px;
    background: radial-gradient(circle, rgba(252, 122, 0, .38), transparent 68%);
}

.hp-cta-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.hp-cta-inner .hp-kicker {
    margin-left: auto;
    margin-right: auto;
}

.hp-cta-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 78ch;
}

.hp-cta-band h2 {
    font-family: var(--font-display);
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
    font-weight: 600;
    font-size: clamp(1.7rem, 1.15rem + 1.8vw, 2.6rem);
    line-height: 1.22;
    letter-spacing: -.004em;
    margin-bottom: 20px;
    text-wrap: balance;
}

.hp-cta-copy {
    font-family: var(--font-ui);
    color: #dbe6f2;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.hp-cta-copy-lead {
    color: #e7eef7;
    margin-bottom: 0;
}

.hp-cta-tel {
    color: #fff;
    font-weight: 700;
    /* a leftover legacy rule in style.css (`@media (min-width:1200px) and
       (max-width:1500px) { a { font-size: 12px } }`) otherwise wins the cascade
       for the font-size property and shrinks the phone number below the
       surrounding CTA-band text at that viewport range (e.g. 1440px). */
    font-size: inherit;
    text-decoration: none;
    white-space: nowrap;
    padding: 2px 4px;
    transition: color .25s ease;
}

.hp-cta-tel:hover {
    color: var(--brand-gold);
}

/* ===== FAQ ===== */
.hp-faq {
    position: relative;
    overflow-x: clip;
    padding: 90px 0 100px;
    background:
        radial-gradient(46% 38% at 92% 6%, rgba(0, 48, 95, .07), transparent 62%),
        var(--hp-light);
}

.hp-faq h2 {
    font-family: var(--font-display);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
    line-height: 1.24;
    letter-spacing: -.004em;
    margin-bottom: 0;
    text-wrap: balance;
}

.hp-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.hp-faq-item {
    background: #fff;
    border: 1px solid var(--hp-line);
    border-radius: 14px;
    box-shadow: var(--hp-shadow-sm);
    overflow: hidden;
    transition: border-color .28s ease, box-shadow .28s ease;
}

.hp-faq-item[open] {
    border-color: rgba(214, 17, 27, .3);
    box-shadow: var(--hp-shadow-md);
}

.hp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    padding: 22px 26px;
    list-style: none;
}

.hp-faq-item summary::-webkit-details-marker {
    display: none;
}

.hp-faq-item summary h3 {
    font-family: var(--font-ui);
    color: var(--brand-navy-dk);
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.5;
    letter-spacing: -.004em;
    margin: 0;
    transition: color .25s ease;
}

.hp-faq-item summary:hover h3,
.hp-faq-item[open] summary h3 {
    color: var(--brand-red);
}

.hp-faq-icon {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(214, 17, 27, .09);
    transition: background .28s ease, transform .28s ease;
}

.hp-faq-icon::before,
.hp-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--brand-red);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: opacity .28s ease, background .28s ease;
}

.hp-faq-icon::before {
    width: 12px;
    height: 2px;
}

.hp-faq-icon::after {
    width: 2px;
    height: 12px;
}

.hp-faq-item[open] .hp-faq-icon {
    background: var(--brand-red);
    transform: rotate(180deg);
}

.hp-faq-item[open] .hp-faq-icon::before {
    background: #fff;
}

.hp-faq-item[open] .hp-faq-icon::after {
    opacity: 0;
}

.hp-faq-answer {
    padding: 0 26px 24px;
}

.hp-faq-answer p {
    font-family: var(--font-ui);
    color: var(--hp-body);
    font-size: .95rem;
    line-height: 1.9;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid var(--hp-line);
    padding-top: 18px;
}

@media (max-width: 991.98px) {
    .hp-reviews,
    .hp-faq {
        padding: 62px 0 70px;
    }

    .hp-cta-band {
        padding: 60px 0 66px;
        background-position: center, center, 62% center;
    }
}

@media (max-width: 767.98px) {
    .hp-review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hp-review {
        padding: 34px 22px 24px;
    }

    .hp-faq-item summary {
        padding: 18px 20px;
    }

    .hp-faq-answer {
        padding: 0 20px 20px;
    }

    .hp-quote-mark {
        font-size: 5.5rem;
    }
}

/* ===== Location (GBP map) + weather ===== */
.hp-locate {
    position: relative;
    overflow-x: clip;
    padding: 0 0 90px;
    background:
        radial-gradient(46% 40% at 6% 100%, rgba(0, 48, 95, .06), transparent 62%),
        #fff;
}

/* --- map --- */
.hp-map-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--hp-line);
    box-shadow: var(--hp-shadow-md);
    background: var(--hp-light);
    transition: box-shadow .3s ease, border-color .3s ease;
}

/* brand rule across the top of the map, matching the quote card */
.hp-map-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--brand-gold));
}

.hp-map-frame:hover {
    box-shadow: var(--hp-shadow-lg);
    border-color: rgba(214, 17, 27, .25);
}

.hp-map-frame iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
    filter: saturate(1.05);
}

/* --- weather: full-width strip under the map, no panel behind it --- */
.hp-weather-frame {
    position: relative;
    margin-top: 22px;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
}

/* the theme paints its own coloured panel — give it the site's card
   treatment (rounded + lifted) so it reads as designed, not a raw box */
.hp-weather-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    background: none;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--hp-shadow-md);
}

.hp-weather-inner .weatherwidget-io {
    display: block;
    width: 100% !important;
    font-family: var(--font-ui);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--brand-navy-dk);
    text-decoration: none;
}

.hp-weather-inner .weatherwidget-io-frame {
    width: 100% !important;
    border-radius: 16px;
}

@media (max-width: 991.98px) {
    .hp-locate {
        padding-bottom: 62px;
    }

    .hp-map-frame iframe {
        height: 380px;
    }

    .hp-weather-frame {
        margin-top: 18px;
    }
}

@media (max-width: 767.98px) {
    .hp-map-frame iframe {
        height: 300px;
    }

    .hp-weather-frame {
        margin-top: 14px;
    }
}
