/* ============================================================
   HERO SECTION — 50/50 grid, image left, content right
   Image stretches to match content height naturally
   Navbar offset: topbar ~52px + nav ~76px = ~128px
   ============================================================ */

.hero-section {
    all: unset;
    display: block;
    background: #ffffff;
    padding-top: 160px;
    padding-bottom: 48px;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Purple tint behind right column only */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(160deg, #faf8ff 0%, #ede8ff 100%);
    z-index: 0;
    pointer-events: none;
}

/* ── Grid — image 55%, content 45% ───────────────────────── */
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ── LEFT: Image ──────────────────────────────────────────── */
.hero-img-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    min-height: 480px;
}

.hero-img-col img {
    width: 100%;
    height: 100%;
    max-width: 610px;
    max-height: 640px;
    object-fit: cover;
    object-position: 0%;
    display: block;
    transition: transform 0.5s ease;
}

.hero-img-col:hover img {
    transform: scale(1.03);
}

/* Dark gradient at bottom for badge readability */
.hero-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.6) 0%,
            rgba(15, 23, 42, 0.08) 45%,
            transparent 100%);
    pointer-events: none;
}

/* Rating badge on image */
.hero-rating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.rating-stars-lg {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
    flex-shrink: 0;
}

.rating-info strong,
.rating-yrs strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.rating-info span,
.rating-yrs span {
    font-size: 0.73rem;
    color: #64748b;
    font-weight: 500;
}

.rating-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ── RIGHT: Content ───────────────────────────────────────── */
.hero-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

/* Location badge */
.hero-loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f5f3ff;
    color: #5b21b6;
    padding: 5px 14px 5px 10px;
    border-radius: 50px;
    font-size: 0.79rem;
    font-weight: 600;
    margin-bottom: 14px;
    width: fit-content;
    border: 1px solid #ddd6fe;
}

.loc-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: locpulse 2.5s ease-in-out infinite;
}

@keyframes locpulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.06);
    }
}

/* H1 */
.hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0 0 16px 0;
}

.hero-h1 .accent {
    color: #6a11cb;
}

/* Single hero paragraph */
.hero-p {
    font-size: 0.97rem;
    color: #475569;
    line-height: 1.72;
    margin: 0 0 20px 0;
}

/* Trust pills */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tpill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f3ff;
    color: #5b21b6;
    border: 1px solid #ddd6fe;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.79rem;
    font-weight: 600;
    white-space: nowrap;
}

.tpill i {
    font-size: 0.72rem;
}

/* Phone CTA */
.call-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: fit-content;
}

.call-cta:hover {
    background: #6a11cb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.22);
}

.call-cta-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.call-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-cta-text small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.72;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.call-cta-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-avail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.79rem;
    color: #64748b;
    font-weight: 500;
}

.avail-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* H1 wrap — left purple accent bar */
.hero-h1-wrap {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
}

.hero-h1-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, #6a11cb 0%, #a855f7 100%);
    border-radius: 4px;
}

.hero-h1-wrap .hero-h1 {
    margin-bottom: 0;
}

/* CTA buttons row */
.hero-btn-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Ghost "Get a Quote" button */
.hero-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #6a11cb;
    border: 2px solid #6a11cb;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.hero-quote-btn i {
    font-size: 0.85rem;
}

.hero-quote-btn:hover {
    background: #6a11cb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.2);
}

/* Footer micro-trust row */
.hero-footer-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    margin-top: 4px;
}

/* Thin vertical divider between footer items */
.hero-divider-v {
    width: 1px;
    height: 18px;
    background: #cbd5e1;
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .hero-grid {
        gap: 36px;
    }

    .hero-h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 150px;
        padding-bottom: 40px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 680px;
    }

    .hero-img-col {
        min-height: 280px;
        border-radius: 12px;
    }

    .hero-h1 {
        font-size: 1.9rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 130px !important;
        margin-top: 0 !important;
        padding-bottom: 32px;
    }

    .hero-grid {
        padding: 0 16px;
    }

    .hero-img-col {
        min-height: 240px;
    }

    .hero-h1 {
        font-size: 1.6rem;
    }

    .call-cta {
        width: 100%;
    }

    .hero-btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-quote-btn {
        justify-content: center;
    }

    .hero-footer-row {
        gap: 10px;
    }

    .hero-divider-v {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 125px !important;
    }

    .hero-h1 {
        font-size: 1.4rem;
    }

    .hero-img-col {
        min-height: 200px;
    }
}

/* ============================================================
   WHY DRIVERS TRUST SECTION
   ============================================================ */

.wdt-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* No top accent — white section sits after purple-tint contact */
.wdt-section::before {
    display: none;
}

.wdt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.wdt-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.wdt-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.wdt-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
}

.wdt-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* 3-column card grid */
.wdt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Individual card */
.wdt-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #ede9fe;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Purple left accent bar on hover */
.wdt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #6a11cb, #9c4dcc);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
    border-radius: 0 0 0 0;
}

.wdt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(106, 17, 203, 0.1);
    border-color: #c4b5fd;
}

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

/* Icon */
.wdt-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6a11cb, #9c4dcc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.25s ease;
}

.wdt-card:hover .wdt-icon-wrap {
    transform: scale(1.08);
}

.wdt-icon-wrap i {
    color: #ffffff;
    font-size: 1.15rem;
}

/* Card title — override global h5 rule */
.wdt-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* Card body text */
.wdt-card-body {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .wdt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wdt-section {
        padding: 64px 0;
    }
}

@media (max-width: 575px) {
    .wdt-grid {
        grid-template-columns: 1fr;
    }

    .wdt-section {
        padding: 48px 0;
    }

    .wdt-header {
        margin-bottom: 36px;
    }

    .wdt-card {
        padding: 24px 20px;
    }
}

/* ============================================================
   CONTACT SECTION OVERRIDES
   (style-new.css base; we override for design consistency)
   ============================================================ */

/* Purple tint bg — hero is white, this alternates */
.contact-section {
    background: #f8f7ff !important;
    padding: 72px 0 !important;
}

/* Purple gradient icon boxes — consistent with every other section */
.contact-icon {
    background: linear-gradient(135deg, #6a11cb, #9c4dcc) !important;
    border-radius: 10px !important;
}

.contact-icon i {
    color: #ffffff !important;
}

/* Purple call-to-action button */
.btn-contact-primary {
    background: #6a11cb !important;
    border-color: #6a11cb !important;
    border-radius: 10px !important;
}

.btn-contact-primary:hover {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* Contact items — subtle purple hover border */
.contact-item {
    border-radius: 12px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.contact-item:hover {
    border-color: #c4b5fd !important;
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.08) !important;
}

/* Form wrapper — purple top accent line */
.contact-form-wrapper {
    border-radius: 16px !important;
    border-top: 3px solid #6a11cb !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
}

/* ============================================================
   OUR AUTO GLASS SERVICES SECTION
   ============================================================ */

.svc-section {
    background: #f8f7ff;
    padding: 80px 0;
    position: relative;
}

.svc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #9c4dcc, #6a11cb);
}

.svc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.svc-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.svc-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.svc-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
}

.svc-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* 3-col grid, last card spans full width */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #9c4dcc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(106, 17, 203, 0.1);
    border-color: #c4b5fd;
}

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

.svc-card-full {
    grid-column: 1 / -1;
}

/* Full-width card uses a row layout */
.svc-card-full .svc-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.svc-card-full .svc-card-title {
    grid-column: 1 / -1;
}

.svc-card-full .svc-card-desc {
    grid-column: 1 / -1;
}

.svc-card-full .svc-card-label {
    grid-column: 1 / 2;
}

.svc-card-full .svc-list-inline {
    grid-column: 1 / -1;
    columns: 2;
    gap: 16px;
}

.svc-card-full .svc-link {
    grid-column: 1 / -1;
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6a11cb, #9c4dcc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.svc-card:hover .svc-card-icon {
    transform: scale(1.08);
}

.svc-card-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.svc-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.svc-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 12px;
}

.svc-card-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}

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

.svc-list li {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.6;
    padding: 4px 0 4px 18px;
    position: relative;
}

.svc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a11cb;
    font-weight: 700;
    font-size: 0.75rem;
    top: 5px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #6a11cb;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.svc-link:hover {
    gap: 10px;
    color: #5109a8;
}

/* Responsive */
@media (max-width: 1100px) {
    .svc-card-full .svc-card-body {
        grid-template-columns: 1fr;
    }

    .svc-card-full .svc-card-label,
    .svc-card-full .svc-list-inline {
        grid-column: 1;
    }

    .svc-card-full .svc-list-inline {
        columns: 1;
    }
}

@media (max-width: 991px) {
    .svc-section {
        padding: 64px 0;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-card-full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .svc-section {
        padding: 48px 0;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        padding: 22px 18px 18px;
    }

    .svc-header {
        margin-bottom: 32px;
    }
}

/* ============================================================
   QUALIFICATIONS & ACCREDITATIONS SECTION
   ============================================================ */

.qual-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* No accent bar — white section */
.qual-section::before {
    display: none;
}

.qual-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.qual-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.qual-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.qual-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
}

.qual-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

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

/* Bottom row: 2 items centered at same width as grid columns */
.qual-grid-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.qual-grid-bottom .qual-item {
    flex: 0 0 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
}

.qual-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #ede9fe;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qual-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(106, 17, 203, 0.1);
}

.qual-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6a11cb, #9c4dcc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qual-icon i {
    color: #ffffff;
    font-size: 1rem;
}

.qual-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.35;
}

.qual-text p {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .qual-section {
        padding: 64px 0;
    }

    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 24px;
    }

    .qual-grid-bottom {
        flex-wrap: wrap;
    }

    .qual-grid-bottom .qual-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .qual-section {
        padding: 48px 0;
    }

    .qual-grid {
        grid-template-columns: 1fr;
    }

    .qual-grid-bottom {
        flex-direction: column;
    }

    .qual-grid-bottom .qual-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .qual-header {
        margin-bottom: 32px;
    }

    .qual-item {
        padding: 22px 18px;
    }
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

.cta-banner-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #2d1472 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative arc */
.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.18);
    pointer-events: none;
}

.cta-banner-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(156, 77, 204, 0.12);
    pointer-events: none;
}

.cta-banner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.cta-banner-content {
    flex: 1;
}

.cta-banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.cta-banner-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin: 0 0 12px;
}

.cta-banner-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.cta-banner-sub strong {
    color: #c4b5fd;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #6a11cb;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 12px;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.cta-btn-main:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(106, 17, 203, 0.4);
}

.cta-btn-main i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cta-btn-main span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-btn-main small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.cta-btn-main strong,
.cta-btn-main span> :last-child {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #c4b5fd;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid rgba(196, 181, 253, 0.4);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cta-btn-ghost:hover {
    background: rgba(196, 181, 253, 0.1);
    border-color: #c4b5fd;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cta-banner-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-banner-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .cta-banner-section {
        padding: 48px 0;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-main,
    .cta-btn-ghost {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   CUSTOMER TESTIMONIALS SECTION
   ============================================================ */

.testi-section {
    background: #f8f7ff;
    padding: 80px 0;
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testi-header {
    text-align: center;
    margin-bottom: 48px;
}

.testi-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.testi-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

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

.testi-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #ede9fe;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    height: 100%;
}

/* Quote icon */
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #ede9fe;
    line-height: 1;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(106, 17, 203, 0.1);
}

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.testi-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6a11cb, #9c4dcc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.testi-author span {
    font-size: 0.78rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-section {
        padding: 64px 0;
    }
}

@media (max-width: 575px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-section {
        padding: 48px 0;
    }

    .testi-card {
        padding: 24px 20px;
    }
}

/* ============================================================
   AREAS WE SERVE SECTION
   ============================================================ */

.areas-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* No accent bar — white section */
.areas-section::before {
    display: none;
}

.areas-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.areas-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 44px;
}

.areas-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.areas-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 14px;
}

.areas-subtitle {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #ddd6fe;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.area-chip::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #9c4dcc;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.area-chip:hover {
    background: #6a11cb;
    color: #ffffff;
    border-color: #6a11cb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(106, 17, 203, 0.2);
}

.area-chip:hover::before {
    background: #c4b5fd;
}

.area-chip-primary {
    background: #6a11cb;
    color: #ffffff;
    border-color: #6a11cb;
}

.area-chip-primary::before {
    background: #c4b5fd;
}

@media (max-width: 767px) {
    .areas-section {
        padding: 56px 0;
    }

    .areas-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .areas-section {
        padding: 48px 0;
    }

    .area-chip {
        font-size: 0.82rem;
        padding: 8px 14px;
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: #f8f7ff;
    padding: 80px 0;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #ede9fe;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.08);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
    line-height: 1.4;
}

.faq-q:hover {
    background: rgba(106, 17, 203, 0.04);
}

.faq-q.active {
    background: rgba(106, 17, 203, 0.06);
    color: #6a11cb;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: #ede9fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.3s ease;
}

.faq-icon i {
    color: #6a11cb;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.faq-q.active .faq-icon {
    background: #6a11cb;
    transform: rotate(45deg);
}

.faq-q.active .faq-icon i {
    color: #ffffff;
}

.faq-a {
    display: none;
    padding: 0 22px 18px;
}

.faq-a.open {
    display: block;
    animation: fadeSlideIn 0.2s ease;
}

.faq-a p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-header {
        margin-bottom: 32px;
    }

    .faq-q {
        font-size: 0.9rem;
        padding: 16px 18px;
    }

    .faq-a {
        padding: 0 18px 16px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 48px 0;
    }
}

/* ============================================================
   MAP + WEATHER SECTION
   ============================================================ */

.map-weather-section {
    background: #f8f7ff;
    padding: 64px 24px;
}

.map-weather-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-col {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-col iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.weather-col {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.weather-col a.weatherwidget-io {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .map-weather-section {
        padding: 48px 16px;
    }

    .map-col iframe {
        height: 300px;
    }
}

/* ============================================================
   FLOATING MOBILE CALL BUTTON
   ============================================================ */

.float-call-btn {
    display: none;
    /* hidden on desktop */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, #6a11cb, #9c4dcc);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(106, 17, 203, 0.45);
    display: none;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.float-call-btn i {
    font-size: 1rem;
    animation: ringShake 3s ease-in-out infinite;
}

@keyframes ringShake {

    0%,
    80%,
    100% {
        transform: rotate(0deg);
    }

    85% {
        transform: rotate(-15deg);
    }

    90% {
        transform: rotate(15deg);
    }

    95% {
        transform: rotate(-8deg);
    }
}

.float-call-btn:hover {
    color: #ffffff;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 14px 36px rgba(106, 17, 203, 0.55);
}

/* Show only on mobile */
@media (max-width: 767px) {
    .float-call-btn {
        display: flex;
    }

    /* Add bottom padding to body so last section content isn't hidden behind the button */
    body {
        padding-bottom: 80px;
    }
}


/* ============================================================
   LOCATION PAGES — Hero, sections, cards
   Navbar offset same as homepage: ~160px padding-top
   ============================================================ */

/* ── Shared container ─────────────────────────────────────── */
.loc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Shared section heading ────────────────────────────────── */
.loc-section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.loc-section-head-left {
    text-align: left;
    margin-left: 0;
}

.loc-eyebrow {
    display: inline-block;
    background: #ede9fe;
    color: #6a11cb;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.loc-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 12px 0;
}

/* Decorative underline bar below centered titles */
.loc-section-head .loc-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border-radius: 4px;
    margin: 12px auto 0;
}

.loc-section-head-left .loc-section-title::after {
    margin-left: 0;
}

.loc-section-sub {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.loc-sub-h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 4px solid #6a11cb;
}

/* ── HERO ──────────────────────────────────────────────────── */
.loc-hero-section {
    all: unset;
    display: block;
    background: #ffffff;
    padding-top: 160px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Purple tint behind right (form) column */
.loc-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background: linear-gradient(160deg, #faf8ff 0%, #ede8ff 100%);
    z-index: 0;
    pointer-events: none;
}

.loc-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left: text content */
.loc-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.loc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f5f3ff;
    color: #5b21b6;
    padding: 5px 14px 5px 10px;
    border-radius: 50px;
    font-size: 0.79rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
    border: 1px solid #ddd6fe;
}

.loc-hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 4px 0;
    /* Decorative underline accent */
    padding-bottom: 14px;
    border-bottom: 3px solid #ede9fe;
    margin-bottom: 16px;
}

.loc-hero-h1 .loc-h1-accent {
    color: #6a11cb;
    position: relative;
    display: inline;
}

.loc-hero-p {
    font-size: 0.97rem;
    color: #475569;
    line-height: 1.72;
    margin: 0 0 20px 0;
}

/* Check pills */
.loc-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.loc-check-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.79rem;
    font-weight: 600;
    white-space: nowrap;
}

.loc-check-pill i {
    font-size: 0.75rem;
}

/* Hero call button */
.loc-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 18px;
    width: fit-content;
}

.loc-hero-call:hover {
    background: #6a11cb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.22);
}

.loc-call-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.loc-call-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loc-call-text small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.72;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.loc-call-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero trust row */
.loc-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.loc-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.79rem;
    color: #64748b;
    font-weight: 500;
}

.loc-hero-trust i {
    color: #6a11cb;
    font-size: 0.72rem;
}

/* Right: Form card */
.loc-hero-form {
    position: sticky;
    top: 170px;
}

.loc-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(106, 17, 203, 0.12);
    border: 1px solid #ede9fe;
    overflow: hidden;
}

.loc-form-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.loc-form-header i {
    font-size: 1.1rem;
}

.loc-form-card form {
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border-bottom: none !important;
    background: #fff !important;
}

/* Override invisible submit button inside hero form */
.loc-form-card form button[type="submit"],
.loc-bottom-form-card form button[type="submit"] {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
    transition: all 0.2s ease !important;
}

.loc-form-card form button[type="submit"]:hover,
.loc-bottom-form-card form button[type="submit"]:hover {
    opacity: 0.9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.3) !important;
}

/* Form inputs focus ring */
.loc-form-card .form-control:focus,
.loc-bottom-form-card .form-control:focus {
    border-color: #a78bfa !important;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1) !important;
}

/* Reuse loc-dot from homepage */
.loc-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: locpulse 2.5s ease-in-out infinite;
}

/* ── INTRO SECTION ─────────────────────────────────────────── */
.loc-intro-section {
    background: #f8f7ff;
    padding: 56px 24px;
    position: relative;
}

.loc-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 50%, transparent 100%);
}

.loc-intro-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.loc-intro-p {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.78;
    margin: 0;
    padding: 24px 28px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ede9fe;
    box-shadow: 0 2px 12px rgba(106, 17, 203, 0.05);
    position: relative;
}

.loc-intro-p::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 20px;
    background: #6a11cb;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    line-height: 28px;
    text-align: center;
}

@media (max-width: 767px) {
    .loc-intro-inner {
        grid-template-columns: 1fr;
    }
}

/* ── WHY #1 SECTION ────────────────────────────────────────── */
.loc-why-section {
    background: #ffffff;
    padding: 72px 0;
}

/* Stats bar above the paragraphs */
.loc-why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 40px;
}

.loc-stat-card {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #faf8ff 0%, #ede9fe 100%);
    border: 1px solid #ddd6fe;
    border-radius: 16px;
    transition: all 0.25s ease;
}

.loc-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(106, 17, 203, 0.12);
}

.loc-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #6a11cb;
    line-height: 1;
    margin-bottom: 6px;
}

.loc-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.loc-why-content {
    max-width: 860px;
    margin: 0 auto;
}

.loc-why-content p {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.78;
    margin-bottom: 0;
    padding: 18px 20px 18px 20px;
    border-left: 4px solid #6a11cb;
    background: #fafafa;
    border-radius: 0 8px 8px 0;
    margin-bottom: 12px;
}

.loc-why-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .loc-why-stats {
        grid-template-columns: 1fr;
    }
}

/* ── SERVICES SECTION ──────────────────────────────────────── */
.loc-svc-section {
    background: #f8f7ff;
    padding: 72px 0;
    position: relative;
}

.loc-svc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.loc-svc-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    border-top: 3px solid #e2e8f0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.loc-svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.loc-svc-card:hover::after {
    transform: scaleX(1);
}

.loc-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(106, 17, 203, 0.13);
    border-color: #ddd6fe;
}

.loc-svc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(106, 17, 203, 0.25);
}

.loc-svc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.loc-svc-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.68;
    margin: 0 0 18px 0;
    flex: 1;
}

.loc-svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f3ff;
    color: #6a11cb;
    border: 1px solid #ddd6fe;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 8px;
    margin-top: auto;
    transition: all 0.2s ease;
    width: fit-content;
}

.loc-svc-cta:hover {
    background: #6a11cb;
    color: #fff;
    border-color: #6a11cb;
    gap: 12px;
}

.loc-svc-cta i {
    font-size: 0.72rem;
}

/* ── CERTIFIED SECTION ─────────────────────────────────────── */
.loc-cert-section {
    background: #ffffff;
    padding: 72px 0;
}

.loc-cert-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loc-cert-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f7ff;
    border: 1px solid #ede9fe;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.2s ease;
}

.loc-cert-badge-item:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
}

.loc-cert-badge-item>i {
    font-size: 1.4rem;
    color: #6a11cb;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.loc-cert-badge-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.loc-cert-badge-item span {
    font-size: 0.78rem;
    color: #64748b;
}

.loc-cert-section p {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* ── SERVICE AREAS SECTION ─────────────────────────────────── */
.loc-areas-section {
    background: #f8f7ff;
    padding: 72px 0;
}

.loc-areas-intro {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto 24px;
}

.loc-areas-section p {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 14px;
}

.loc-tags-group {
    margin-top: 28px;
}

.loc-tags-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6a11cb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.loc-tags-label i {
    font-size: 0.78rem;
}

.loc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.loc-tag {
    display: inline-block;
    background: #fff;
    color: #374151;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.loc-tag:hover {
    background: #6a11cb;
    color: #fff;
    border-color: #6a11cb;
}

.loc-tag-outline {
    background: transparent;
    color: #6a11cb;
    border-color: #c4b5fd;
}

.loc-tag-outline:hover {
    background: #6a11cb;
    color: #fff;
}

.loc-datacommons {
    margin-top: 36px;
}

.loc-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6a11cb;
    margin-bottom: 12px;
}

.loc-datacommons embed,
.loc-datacommons iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    border: none;
}

/* ── TESTIMONIALS SECTION ──────────────────────────────────── */
.loc-testi-section {
    background: #ffffff;
    padding: 72px 0;
}

.loc-review-card {
    background: #fff;
    border: 1px solid #ede9fe;
    border-radius: 16px;
    padding: 32px 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Large decorative quote mark */
.loc-review-card::before {
    content: '\201C';
    position: absolute;
    top: -4px;
    right: 20px;
    font-size: 7rem;
    line-height: 1;
    color: #ede9fe;
    font-family: Georgia, serif;
    pointer-events: none;
    font-weight: 700;
}

.loc-review-card:hover {
    box-shadow: 0 12px 40px rgba(106, 17, 203, 0.12);
    transform: translateY(-4px);
    border-color: #c4b5fd;
}

.loc-review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 3px;
}

.loc-review-text {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.75;
    flex: 1;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.loc-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

/* Initials avatar circle */
.loc-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
}

.loc-review-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.loc-review-verified {
    font-size: 0.72rem;
    color: #16a34a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.loc-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.loc-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.loc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.loc-cta-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.loc-cta-text p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 580px;
    line-height: 1.65;
}

.loc-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.loc-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6a11cb;
    color: #fff;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.loc-cta-call:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.35);
}

.loc-cta-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.loc-cta-quote:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* ── MAP + WEATHER ─────────────────────────────────────────── */
.loc-map-section {
    background: #f8f7ff;
    padding: 64px 24px;
}

.loc-map-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.loc-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.loc-map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.loc-weather-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ── BOTTOM FORM SECTION ───────────────────────────────────── */
.loc-bottom-form-section {
    background: #ffffff;
    padding: 72px 0;
}

.loc-bottom-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(106, 17, 203, 0.1);
    border: 1px solid #ede9fe;
    overflow: hidden;
}

.loc-bottom-form-card form {
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 32px !important;
    border-bottom: none !important;
    background: #fff !important;
}

/* ── INTRO STRIP (dark navy, like feature band) ─────────────── */
.loc-intro-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.loc-intro-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.loc-intro-strip::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.12);
    pointer-events: none;
}

.loc-intro-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.loc-intro-strip p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.78;
    margin: 0;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 3px solid #6a11cb;
}

@media (max-width: 767px) {
    .loc-intro-strip-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── WHY SECTION — 2-col split with feature box ─────────────── */
.loc-why-split {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

.loc-why-left p {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.78;
    margin-bottom: 12px;
    padding: 18px 20px;
    border-left: 4px solid #6a11cb;
    background: #fafafa;
    border-radius: 0 8px 8px 0;
}

.loc-why-left p:last-child {
    margin-bottom: 0;
}

.loc-why-box {
    background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 16px;
    padding: 32px 28px;
    position: sticky;
    top: 180px;
}

.loc-why-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.loc-why-box p {
    font-size: 0.88rem;
    color: #a5b4fc;
    line-height: 1.65;
    margin: 0 0 22px 0;
}

.loc-why-box-list {
    list-style: none;
    margin: 0 0 26px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loc-why-box-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.loc-why-box-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.loc-why-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.loc-why-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}

.loc-why-cta i {
    font-size: 0.85rem;
}

.loc-why-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .loc-why-split {
        grid-template-columns: 1fr;
    }

    .loc-why-box {
        position: static;
    }
}

/* ── CERT SECTION — dark horizontal band ────────────────────── */
.loc-cert-band {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.loc-cert-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.loc-cert-band .loc-eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: #c4b5fd;
}

.loc-cert-band .loc-section-title {
    color: #fff;
}

.loc-cert-band .loc-section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.loc-cert-band .loc-section-head .loc-section-title::after {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.loc-cert-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.loc-cert-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.loc-cert-tile:hover {
    background: rgba(106, 17, 203, 0.25);
    border-color: rgba(106, 17, 203, 0.4);
    transform: translateY(-4px);
}

.loc-cert-tile-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.loc-cert-tile h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
}

.loc-cert-tile span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.loc-cert-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.loc-cert-text p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 14px;
}

.loc-cert-text p:last-child {
    margin-bottom: 0;
}

.loc-cert-warranty-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
}

.loc-cert-warranty-box .warranty-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 16px;
}

.loc-cert-warranty-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.loc-cert-warranty-box p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .loc-cert-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-cert-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .loc-cert-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── TESTIMONIALS — enhanced with header row ────────────────── */
.loc-testi-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.loc-testi-rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f7ff;
    border: 1px solid #ede9fe;
    border-radius: 14px;
    padding: 14px 22px;
}

.loc-testi-big-stars {
    font-size: 1.3rem;
    color: #f59e0b;
    letter-spacing: 2px;
    line-height: 1;
}

.loc-testi-rating-info strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.loc-testi-rating-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.loc-review-card {
    position: relative;
}

.loc-review-card-top-accent {
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    margin: -32px -28px 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.loc-review-card:hover .loc-review-card-top-accent {
    transform: scaleX(1);
}

/* ── CTA — split 2-col with phone tile ──────────────────────── */
.loc-cta-phone-tile {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    flex-shrink: 0;
    min-width: 260px;
}

.loc-cta-phone-tile .cta-phone-icon {
    width: 52px;
    height: 52px;
    background: #6a11cb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto 12px;
    animation: locPulse 2s infinite;
}

.loc-cta-phone-tile p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 6px 0;
}

.loc-cta-phone-tile a.cta-phone-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

.loc-cta-phone-tile a.cta-phone-num:hover {
    color: #c4b5fd;
}

.loc-cta-phone-tile .cta-avail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #86efac;
    margin-top: 10px;
}

.loc-cta-phone-tile .cta-avail::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    flex-shrink: 0;
}

/* ── BOTTOM FORM — 2-col with perks ────────────────────────── */
.loc-bottom-form-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 56px;
    align-items: start;
}

.loc-bottom-form-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.loc-bottom-form-left p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 28px 0;
}

.loc-bottom-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loc-bottom-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.loc-bottom-perk i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a11cb;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.loc-bottom-trust {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e8e3f8;
    flex-wrap: wrap;
}

.loc-bottom-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    min-width: 70px;
}

.loc-bottom-trust-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #6a11cb;
    line-height: 1;
}

.loc-bottom-trust-lbl {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 991px) {
    .loc-bottom-form-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 560px;
    }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .loc-hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 36px;
    }
}

@media (max-width: 991px) {
    .loc-hero-section {
        padding-top: 150px;
        padding-bottom: 40px;
    }

    .loc-hero-section::before {
        display: none;
    }

    .loc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 680px;
    }

    .loc-hero-form {
        position: static;
    }

    .loc-hero-h1 {
        font-size: 1.8rem;
    }

    .loc-section-title {
        font-size: 1.6rem;
    }

    .loc-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .loc-hero-section {
        padding-top: 130px !important;
        margin-top: 0 !important;
    }

    .loc-hero-grid {
        padding: 0 16px;
    }

    .loc-hero-h1 {
        font-size: 1.55rem;
    }

    .loc-hero-call {
        width: 100%;
    }

    .loc-section-title {
        font-size: 1.4rem;
    }

    .loc-why-section,
    .loc-svc-section,
    .loc-cert-section,
    .loc-areas-section,
    .loc-testi-section,
    .loc-cta-section,
    .loc-bottom-form-section {
        padding: 48px 0;
    }

    .loc-cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .loc-cta-call,
    .loc-cta-quote {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .loc-hero-section {
        padding-top: 125px !important;
    }

    .loc-hero-h1 {
        font-size: 1.35rem;
    }
}


/* ============================================================
   SERVICE PAGES — Hero, Highlights, Warning, Why, Process,
   Brands, FAQ, Table
   ============================================================ */

/* ── SERVICE HERO ─────────────────────────────────────────── */
.svc-hero-section {
    all: unset;
    display: block;
    background: #ffffff;
    padding-top: 160px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Deep purple gradient behind form side */
.svc-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background: linear-gradient(160deg, #faf8ff 0%, #ede8ff 100%);
    z-index: 0;
    pointer-events: none;
}

/* Subtle accent line across top */
.svc-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    z-index: 2;
}

.svc-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.svc-hero-content {
    display: flex;
    flex-direction: column;
}

.svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f5f3ff;
    color: #5b21b6;
    padding: 5px 14px 5px 10px;
    border-radius: 50px;
    font-size: 0.79rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
    border: 1px solid #ddd6fe;
}

.svc-hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0 0 14px 0;
    padding-bottom: 14px;
    border-bottom: 3px solid #ede9fe;
}

.svc-hero-sub {
    font-size: 1rem;
    color: #475569;
    line-height: 1.72;
    margin: 0 0 24px 0;
    font-style: italic;
}

.svc-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.svc-hero-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #6a11cb;
    border: 2px solid #6a11cb;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.svc-hero-quote-btn:hover {
    background: #6a11cb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.2);
}

.svc-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.svc-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.79rem;
    color: #64748b;
    font-weight: 500;
}

.svc-hero-trust i {
    color: #6a11cb;
    font-size: 0.72rem;
}

.svc-hero-form {
    position: sticky;
    top: 170px;
}

/* ── HIGHLIGHTS SECTION ───────────────────────────────────── */
.svc-hl-section {
    background: #f8f7ff;
    padding: 72px 0;
    position: relative;
}

.svc-hl-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.svc-hl-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ede9fe;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.svc-hl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.svc-hl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(106, 17, 203, 0.13);
}

.svc-hl-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(106, 17, 203, 0.25);
}

.svc-hl-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.svc-hl-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.68;
    margin: 0;
    flex: 1;
}

/* ── WARNING SIGNS SECTION ────────────────────────────────── */
.svc-warn-section {
    background: #ffffff;
    padding: 72px 0;
}

.svc-warn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.svc-warn-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff8f0;
    border: 1px solid #fed7aa;
    border-left: 4px solid #f97316;
    border-radius: 0 12px 12px 0;
    padding: 18px 20px;
    transition: all 0.2s ease;
}

.svc-warn-item:hover {
    background: #fff3e7;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.svc-warn-icon {
    color: #f97316;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-warn-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.svc-warn-item p {
    font-size: 0.855rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.svc-why-section {
    background: #f8f7ff;
    padding: 72px 0;
    position: relative;
}

.svc-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.svc-why-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.svc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(106, 17, 203, 0.12);
    border-color: #ddd6fe;
}

.svc-why-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #6a11cb;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.svc-why-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.svc-why-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.68;
    margin: 0;
    flex: 1;
}

/* ── PROCESS STEPS ────────────────────────────────────────── */
.svc-proc-section {
    background: #ffffff;
    padding: 72px 0;
}

.svc-steps-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: steps;
}

.svc-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.svc-step:last-child {
    border-bottom: none;
}

/* Connecting vertical line */
.svc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6a11cb 0%, #e2e8f0 100%);
}

.svc-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.3);
    position: relative;
    z-index: 1;
}

.svc-step-body {
    padding-top: 4px;
    flex: 1;
}

.svc-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.svc-step-detail {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ── BRANDS SECTION ───────────────────────────────────────── */
.svc-brands-section {
    background: #f8f7ff;
    padding: 64px 0;
    position: relative;
}

.svc-brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.svc-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.svc-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd6fe;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.875rem;
    color: #374151;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.svc-brand-chip:hover {
    background: #ede9fe;
    border-color: #a78bfa;
    transform: translateY(-2px);
}

.svc-brand-chip i {
    color: #6a11cb;
    font-size: 0.75rem;
}

.svc-brand-chip strong {
    color: #0f172a;
    font-weight: 700;
}

/* ── FAQ SECTION ──────────────────────────────────────────── */
.svc-faq-section {
    background: #ffffff;
    padding: 72px 0;
}

.svc-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.svc-faq-item:hover {
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.08);
}

.svc-faq-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.svc-faq-btn span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.svc-faq-btn.active {
    background: #f5f3ff;
    border-bottom: 1px solid #e2e8f0;
}

.svc-faq-btn.active span {
    color: #6a11cb;
}

.svc-faq-chevron {
    color: #6a11cb;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.svc-faq-btn.active .svc-faq-chevron {
    transform: rotate(180deg);
}

.svc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.svc-faq-answer p {
    padding: 16px 20px 20px;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.72;
    margin: 0;
    background: #fafafa;
}

/* ── TABLE/ACCORDION SECTION ──────────────────────────────── */
.svc-table-section {
    background: #f8f7ff;
    padding: 48px 0;
}

.svc-table-section details summary {
    background: #fff !important;
    border: 1px solid #ede9fe !important;
    border-radius: 10px !important;
    color: #6a11cb;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem !important;
    padding: 14px 20px !important;
    cursor: pointer;
    transition: background 0.2s;
}

.svc-table-section details summary:hover {
    background: #f5f3ff !important;
}

.svc-table-section details[open] summary {
    background: #ede9fe !important;
    border-radius: 10px 10px 0 0 !important;
}

.svc-table-section .accordion-content {
    border: 1px solid #ede9fe !important;
    border-top: none !important;
    border-radius: 0 0 10px 10px !important;
    background: #fff;
    overflow-x: auto;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .svc-hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 36px;
    }
}

@media (max-width: 991px) {
    .svc-hero-section {
        padding-top: 150px;
        padding-bottom: 40px;
    }

    .svc-hero-section::before {
        display: none;
    }

    .svc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 680px;
    }

    .svc-hero-form {
        position: static;
    }

    .svc-hero-h1 {
        font-size: 1.9rem;
    }

    .svc-warn-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .svc-hero-section {
        padding-top: 130px !important;
        margin-top: 0 !important;
    }

    .svc-hero-grid {
        padding: 0 16px;
    }

    .svc-hero-h1 {
        font-size: 1.6rem;
    }

    .svc-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .svc-hero-quote-btn {
        justify-content: center;
    }

    .svc-hl-section,
    .svc-warn-section,
    .svc-why-section,
    .svc-proc-section,
    .svc-brands-section,
    .svc-faq-section {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .svc-hero-section {
        padding-top: 125px !important;
    }

    .svc-hero-h1 {
        font-size: 1.4rem;
    }
}


/* ============================================================
   SERVICE PAGE v2 — Image-left hero (like homepage 55/45 grid)
   Class prefix: .sp- (service page)
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.sp-hero {
    all: unset;
    display: block;
    background: #ffffff;
    padding-top: 160px;
    padding-bottom: 48px;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.sp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(160deg, #faf8ff 0%, #ede8ff 100%);
    z-index: 0;
    pointer-events: none;
}

.sp-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Image column */
.sp-hero-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    min-height: 480px;
}

.sp-hero-img img {
    width: 100%;
    height: 100%;
    max-width: 610px;
    max-height: 650px;
    object-fit: cover;
    object-position: 0%;
    display: block;
}

.sp-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.08) 45%, transparent 100%);
}

.sp-rating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sp-rating-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.sp-rating-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sp-rating-info strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.sp-rating-info span {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.2;
}

.sp-rating-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* Content column */
.sp-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0ebff;
    border: 1px solid #d8b4fe;
    color: #6a11cb;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.sp-hero-badge .loc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6a11cb;
    flex-shrink: 0;
    animation: locPulse 2s infinite;
}

.sp-hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0 0 16px 0;
}

.sp-hero-h1 .accent {
    color: #6a11cb;
}

.sp-hero-sub {
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 20px 0;
}

/* Trust pills */
.sp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.sp-tpill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f7ff;
    border: 1px solid #d8b4fe;
    color: #5b21b6;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.sp-tpill i {
    font-size: 0.7rem;
}

/* Button row */
.sp-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.sp-hero-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 2px solid #6a11cb;
    color: #6a11cb;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.sp-hero-quote-btn:hover {
    background: #6a11cb;
    color: #fff;
}

/* Footer row */
.sp-hero-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid #e8e3f8;
    padding-top: 18px;
}

.sp-hero-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.sp-hero-meta i {
    color: #6a11cb;
    font-size: 0.7rem;
}

.sp-divider-v {
    width: 1px;
    height: 16px;
    background: #d1d5db;
}

/* ── QUOTE FORM SECTION (below hero) ─────────────────────── */
.sp-form-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.sp-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.sp-form-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 56px;
    align-items: center;
}

.sp-form-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.sp-form-left p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.sp-form-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-form-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.sp-form-perk i {
    width: 28px;
    height: 28px;
    background: rgba(106, 17, 203, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.sp-form-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sp-form-card-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 20px 24px;
    text-align: center;
}

.sp-form-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 4px 0 0;
    display: inline;
}

.sp-form-card-header i {
    color: #c4b5fd;
    margin-right: 8px;
}

.sp-form-card form {
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border-bottom: none !important;
    background: #fff !important;
}

.sp-form-card form button[type="submit"] {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 14px !important;
    transition: opacity 0.2s !important;
}

.sp-form-card form button[type="submit"]:hover {
    opacity: 0.9 !important;
}

/* ── HIGHLIGHTS SECTION ───────────────────────────────────── */
.sp-hl-section {
    background: #f8f7ff;
    padding: 80px 0;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Centered section header wrapper */
.sp-section-head-center {
    text-align: center;
    margin-bottom: 48px;
}

.sp-section-head-center .sp-section-eyebrow {
    margin-bottom: 10px;
}

.sp-section-head-center .sp-section-title {
    margin: 0 auto 0;
    max-width: 780px;
}

.sp-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6a11cb;
    margin-bottom: 8px;
}

.sp-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.sp-section-sub {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 0 48px 0;
}

.sp-hl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sp-hl-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #ede9fe;
    border-top: 4px solid #6a11cb;
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-hl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(106, 17, 203, 0.12);
}

.sp-hl-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
}

.sp-hl-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.sp-hl-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── WARNING SIGNS SECTION ────────────────────────────────── */
.sp-warn-section {
    background: #ffffff;
    padding: 80px 0;
}

.sp-warn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.sp-warn-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sp-warn-item:hover {
    border-color: #d8b4fe;
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.07);
}

.sp-warn-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-warn-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.sp-warn-body p {
    font-size: 0.83rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── WHY CHOOSE US SECTION ────────────────────────────────── */
.sp-why-section {
    background: #0f172a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sp-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.sp-why-section .sp-section-eyebrow {
    color: #c4b5fd;
}

.sp-why-section .sp-section-title {
    color: #fff;
}

.sp-why-section .sp-section-sub {
    color: rgba(255, 255, 255, 0.65);
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sp-why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 20px;
    transition: background 0.2s, border-color 0.2s;
}

.sp-why-card:hover {
    background: rgba(106, 17, 203, 0.2);
    border-color: rgba(106, 17, 203, 0.4);
}

.sp-why-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.sp-why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 8px 0;
}

.sp-why-card p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* ── SERVICES SUB-SECTION ─────────────────────────────────── */
.sp-sub-section {
    background: #f8f7ff;
    padding: 80px 0;
}

.sp-sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sp-sub-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #ede9fe;
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.sp-sub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    transition: height 0.3s ease;
}

.sp-sub-card:hover::before {
    height: 4px;
}

.sp-sub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(106, 17, 203, 0.12);
}

.sp-sub-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a11cb;
    font-size: 1.1rem;
    margin-bottom: 14px;
    transition: background 0.3s;
}

.sp-sub-card:hover .sp-sub-card-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.sp-sub-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.sp-sub-card p {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 14px 0;
}

.sp-sub-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6a11cb;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
}

.sp-sub-link:hover {
    gap: 10px;
    color: #5b21b6;
}

/* ── PROCESS SECTION ──────────────────────────────────────── */
.sp-proc-section {
    background: #ffffff;
    padding: 80px 0;
}

.sp-proc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    counter-reset: step-counter;
}

.sp-proc-item {
    position: relative;
    padding: 24px 20px 24px 72px;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    counter-increment: step-counter;
}

.sp-proc-item:hover {
    border-color: #d8b4fe;
    box-shadow: 0 6px 24px rgba(106, 17, 203, 0.08);
}

.sp-proc-item::before {
    content: counter(step-counter);
    position: absolute;
    top: 22px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-proc-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.sp-proc-item p {
    font-size: 0.83rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── BRANDS SECTION ───────────────────────────────────────── */
.sp-brands-section {
    background: #f8f7ff;
    padding: 64px 0;
}

.sp-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.sp-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ede9fe;
    color: #5b21b6;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(106, 17, 203, 0.05);
    transition: border-color 0.2s, background 0.2s;
}

.sp-brand-pill:hover {
    background: #f0ebff;
    border-color: #c4b5fd;
}

.sp-brand-pill i {
    color: #6a11cb;
    font-size: 0.72rem;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.sp-cta-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.sp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.sp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.sp-cta-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.sp-cta-text p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 580px;
    line-height: 1.65;
}

.sp-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.sp-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #6a11cb;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sp-cta-call:hover {
    background: #f0ebff;
    color: #5b21b6;
}

.sp-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sp-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ── FAQ SECTION ──────────────────────────────────────────── */
.sp-faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.sp-faq-item {
    border: 1px solid #e8e3f8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.sp-faq-item:hover {
    border-color: #c4b5fd;
}

.sp-faq-q {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s;
}

.sp-faq-q:hover {
    background: #faf8ff;
}

.sp-faq-q.active {
    background: #f0ebff;
    color: #6a11cb;
}

.sp-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a11cb;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sp-faq-q.active .sp-faq-icon {
    transform: rotate(45deg);
    background: #6a11cb;
    color: #fff;
}

.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.sp-faq-a.open {
    max-height: 400px;
}

.sp-faq-a p {
    padding: 0 20px 18px;
    font-size: 0.87rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid #f1eeff;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sp-hero-grid {
        grid-template-columns: 55fr 45fr;
        gap: 32px;
    }

    .sp-form-inner {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .sp-hero {
        padding-top: 150px;
        padding-bottom: 36px;
    }

    .sp-hero::before {
        display: none;
    }

    .sp-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 680px;
    }

    .sp-hero-img {
        min-height: 300px;
    }

    .sp-hero-h1 {
        font-size: 1.9rem;
    }

    .sp-form-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 560px;
    }

    .sp-proc-item::before {
        display: flex;
    }

    .sp-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .sp-hero {
        padding-top: 130px !important;
        margin-top: 0 !important;
    }

    .sp-hero-grid,
    .sp-form-inner {
        padding: 0 16px;
    }

    .sp-hero-h1 {
        font-size: 1.6rem;
    }

    .sp-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .sp-hero-quote-btn {
        justify-content: center;
    }

    .sp-section-title {
        font-size: 1.6rem;
    }

    .sp-hl-section,
    .sp-warn-section,
    .sp-why-section,
    .sp-sub-section,
    .sp-proc-section,
    .sp-brands-section,
    .sp-faq-section {
        padding: 52px 0;
    }

    .sp-cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .sp-cta-call,
    .sp-cta-ghost {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sp-hero {
        padding-top: 125px !important;
    }

    .sp-hero-h1 {
        font-size: 1.4rem;
    }

    .sp-section-title {
        font-size: 1.4rem;
    }
}


/* ============================================================
   PREMIUM ITERATION 2 — Location page refinements
   Targeted upgrades across all sections
   ============================================================ */

/* ── GLOBAL: smoother section transitions ─────────────────── */
html {
    scroll-behavior: smooth;
}

.loc-hero-section,
.loc-intro-strip,
.loc-why-section,
.loc-svc-section,
.loc-cert-band,
.loc-areas-section,
.loc-testi-section,
.loc-cta-section,
.loc-map-section,
.loc-bottom-form-section {
    position: relative;
}

/* Subtle shadow-divider between white sections */
.loc-why-section,
.loc-areas-section,
.loc-testi-section,
.loc-bottom-form-section {
    box-shadow: inset 0 1px 0 #f0ebff, inset 0 -1px 0 #f0ebff;
}

/* ── TYPOGRAPHY: tighten section titles ───────────────────── */
.loc-section-title {
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    font-size: 2rem !important;
}

/* Eyebrow gets a left pip */
.loc-eyebrow {
    position: relative;
    padding-left: 20px !important;
    background: transparent !important;
    color: #6a11cb !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.14em !important;
    border-radius: 0 !important;
}

.loc-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border-radius: 2px;
}

/* ── HERO: check pills — purple on-brand ─────────────────── */
.loc-check-pill {
    background: #f0ebff !important;
    color: #5b21b6 !important;
    border: 1px solid #d8b4fe !important;
    font-size: 0.76rem !important;
    padding: 5px 11px !important;
    transition: all 0.2s ease;
}

.loc-check-pill:hover {
    background: #ede9fe !important;
    border-color: #a78bfa !important;
}

/* H1 underline thicker + gradient */
.loc-hero-h1 {
    border-bottom: 0 !important;
    margin-bottom: 16px !important;
    padding-bottom: 0 !important;
}

/* Hero trust row — refined pill treatment */
.loc-hero-trust span {
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 0.75rem !important;
    transition: border-color 0.2s;
}

.loc-hero-trust span:hover {
    border-color: #d8b4fe;
}

/* ── INTRO STRIP: numbered editorial cards ────────────────── */
.loc-intro-strip-inner {
    counter-reset: intro-counter;
}

.loc-intro-strip p {
    counter-increment: intro-counter;
    padding-left: 52px !important;
    position: relative;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04) !important;
}

.loc-intro-strip p::before {
    content: '0' counter(intro-counter);
    position: absolute;
    left: 16px;
    top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #6a11cb;
    line-height: 1;
}

/* ── STATS: add subtle shimmer line at top ────────────────── */
.loc-stat-card {
    border-top: 3px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #6a11cb, #2575fc) border-box !important;
    border: 3px solid transparent;
    border-radius: 16px !important;
}

.loc-stat-number {
    font-size: 2.6rem !important;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── WHY SECTION: feature box checklist fix ──────────────── */
.loc-why-box-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-size: 58% 58%;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── SERVICES: stronger icon shadow + hover glow ─────────── */
.loc-svc-icon {
    box-shadow: 0 4px 14px rgba(106, 17, 203, 0.2) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.loc-svc-card:hover .loc-svc-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.35) !important;
}

/* Card separator line above CTA */
.loc-svc-cta {
    margin-top: 16px !important;
    padding-top: 14px !important;
    border-top: 1px solid #f1eeff;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid #f1eeff !important;
    color: #6a11cb !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.loc-svc-cta:hover {
    gap: 12px !important;
    color: #5b21b6 !important;
    background: transparent !important;
    border-color: #e9e0ff !important;
}

/* ── CERT BAND: tile icon polish ──────────────────────────── */
.loc-cert-tile-icon {
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.3);
}

.loc-cert-tile:hover .loc-cert-tile-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.45);
}

.loc-cert-tile h3 {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
}

/* Warranty box icon polish */
.loc-cert-warranty-box .warranty-icon {
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.35);
    transition: transform 0.25s ease;
}

.loc-cert-warranty-box:hover .warranty-icon {
    transform: scale(1.08);
}

/* ── TESTIMONIALS: left accent strip on cards ─────────────── */
.loc-review-card {
    border-left: 4px solid #ede9fe !important;
    border-radius: 16px !important;
    transition: border-left-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.loc-review-card:hover {
    border-left-color: #6a11cb !important;
}

/* Quote mark repositioned to not clip */
.loc-review-card::before {
    top: 12px !important;
    right: 16px !important;
    font-size: 5.5rem !important;
    color: '#f3effff' !important;
    opacity: 0.6;
}

.loc-review-stars {
    font-size: 1.05rem !important;
    letter-spacing: 2px !important;
}

/* Verified badge styled green pill */
.loc-review-verified {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 50px;
    padding: 2px 8px;
    color: #16a34a !important;
    font-size: 0.71rem !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

/* Header row rating summary — bigger star */
.loc-testi-big-stars {
    font-size: 1.6rem !important;
    line-height: 1 !important;
}

.loc-testi-rating-info strong {
    font-size: 1.6rem !important;
}

/* ── CTA BANNER: phone tile pulse fix ────────────────────── */
@keyframes locPhonePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(106, 17, 203, 0);
    }
}

.loc-cta-phone-tile .cta-phone-icon {
    animation: locPhonePulse 2s ease-in-out infinite !important;
}

.loc-cta-phone-tile a.cta-phone-num {
    font-size: 1.6rem !important;
    margin-top: 4px;
}

/* ── BOTTOM FORM: perk icon upgrade ──────────────────────── */
.loc-bottom-perk i {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    font-size: 0.8rem !important;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.25);
    transition: transform 0.2s ease;
}

.loc-bottom-perk:hover i {
    transform: scale(1.1);
}

/* Trust items — vertical divider between them */
.loc-bottom-trust {
    gap: 0 !important;
}

.loc-bottom-trust-item {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #e8e3f8;
}

.loc-bottom-trust-item:first-child {
    padding-left: 0;
}

.loc-bottom-trust-item:last-child {
    border-right: none;
}

/* Trust numbers gradient */
.loc-bottom-trust-num {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem !important;
}

/* ── FORM CARD: focus ring & input refinement ────────────── */
.loc-form-card .form-control,
.loc-bottom-form-card .form-control {
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    padding: 10px 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

.loc-form-card .form-floating label,
.loc-bottom-form-card .form-floating label {
    font-size: 0.88rem !important;
    color: #94a3b8 !important;
}

/* ── FLOAT CALL BTN: upgrade ──────────────────────────────── */
.float-call-btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    padding: 13px 22px !important;
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.35) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.float-call-btn:hover {
    box-shadow: 0 14px 36px rgba(106, 17, 203, 0.45) !important;
}

/* ── SERVICE AREAS: tags container box ───────────────────── */
.loc-tags-group {
    background: #fff;
    border: 1px solid #ede9fe;
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 24px !important;
}

.loc-tags-label {
    margin-bottom: 14px !important;
    font-size: 0.8rem !important;
}

.loc-tag {
    font-size: 0.8rem !important;
    padding: 5px 14px !important;
    transition: all 0.18s ease !important;
    cursor: default;
}

/* ── HERO FORM CARD: header icon size ─────────────────────── */
.loc-form-header {
    font-size: 0.95rem !important;
    padding: 16px 20px !important;
    letter-spacing: 0.04em !important;
}

/* ── SECTION head underline bar: thicker ─────────────────── */
.loc-section-head .loc-section-title::after {
    width: 56px !important;
    height: 5px !important;
    border-radius: 6px !important;
    margin-top: 14px !important;
}

/* ── RESPONSIVE additions ─────────────────────────────────── */
@media (max-width: 767px) {
    .loc-testi-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .loc-testi-rating-summary {
        width: 100%;
    }

    .loc-bottom-trust {
        flex-wrap: wrap;
    }

    .loc-bottom-trust-item {
        border-right: none !important;
        border-bottom: 1px solid #e8e3f8;
        padding: 12px 0 !important;
        width: 100%;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        align-items: center;
        flex: unset;
    }

    .loc-bottom-trust-item:last-child {
        border-bottom: none;
    }

    .loc-cta-inner {
        flex-direction: column;
    }

    .loc-cta-phone-tile {
        width: 100%;
    }
}

/* ============================================================
   HOMEPAGE PREMIUM REDESIGN — Deep Depth & Animations
   ============================================================ */

/* ── Scroll-reveal base states ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
    transform: translateX(-32px);
}

.reveal.reveal-right {
    transform: translateX(32px);
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.40s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

/* ── HERO: richer background & shimmer ──────────────────────── */
.hero-section {
    background: linear-gradient(160deg, #ffffff 0%, #faf8ff 60%, #f3eeff 100%) !important;
}

/* Animated subtle grid pattern behind hero */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(106, 17, 203, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106, 17, 203, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

/* Floating orbs behind hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.07) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

/* Hero image: subtle entrance + shimmer border */
.hero-img-col {
    box-shadow: 0 24px 80px rgba(106, 17, 203, 0.15), 0 0 0 1px rgba(106, 17, 203, 0.06) !important;
    animation: heroImgDrop 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroImgDrop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Hero content entrance */
.hero-content-col {
    animation: heroContentSlide 0.85s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Rating badge: pulse glow */
.hero-rating-badge {
    animation: badgePop 0.6s 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(106, 17, 203, 0.2) !important;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Trust pills: staggered pop-in */
.tpill {
    animation: pillPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe) !important;
    border-color: #c4b5fd !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}

.tpill:nth-child(1) {
    animation-delay: 0.45s;
}

.tpill:nth-child(2) {
    animation-delay: 0.52s;
}

.tpill:nth-child(3) {
    animation-delay: 0.59s;
}

.tpill:nth-child(4) {
    animation-delay: 0.66s;
}

@keyframes pillPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.tpill:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(106, 17, 203, 0.22);
}

.tpill:hover i {
    color: #fff !important;
}

/* Call CTA: gradient shimmer on hover */
.call-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) !important;
    position: relative;
    overflow: hidden;
}

.call-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.call-cta:hover::after {
    left: 150%;
}

/* ── CONTACT SECTION: richer card ──────────────────────────── */
.contact-section {
    background: linear-gradient(160deg, #f8f7ff 0%, #ede8ff 100%) !important;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.contact-form-wrapper {
    border-top: 4px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #6a11cb, #2575fc) border-box !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(106, 17, 203, 0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(106, 17, 203, 0.16) !important;
}

/* ── WDT SECTION: deeper cards ─────────────────────────────── */
.wdt-section {
    position: relative;
    overflow: hidden;
}

.wdt-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(106, 17, 203, 0.025) 0%, transparent 70%);
    pointer-events: none;
}

.wdt-card {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(106, 17, 203, 0.04);
    border: 1px solid #ede9fe !important;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease !important;
}

.wdt-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 48px rgba(106, 17, 203, 0.13) !important;
    border-color: #a78bfa !important;
}

/* Number badge on each card */
.wdt-card-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(106, 17, 203, 0.05);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    user-select: none;
}

.wdt-icon-wrap {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.25);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease !important;
}

.wdt-card:hover .wdt-icon-wrap {
    transform: scale(1.12) rotate(-4deg) !important;
    box-shadow: 0 10px 28px rgba(106, 17, 203, 0.35);
}

/* ── SERVICES SECTION: card depth upgrade ──────────────────── */
.svc-section {
    background: linear-gradient(180deg, #f8f7ff 0%, #f0ebff 100%) !important;
}

.svc-card {
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.05);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease !important;
}

.svc-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 56px rgba(106, 17, 203, 0.13) !important;
    border-color: #a78bfa !important;
}

/* Gradient icon bg */
.svc-card-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 6px 18px rgba(106, 17, 203, 0.25);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.svc-card:hover .svc-card-icon {
    transform: scale(1.12) rotate(-4deg) !important;
}

/* Arrow bullets: animated */
.svc-list li {
    transition: padding-left 0.2s ease;
}

.svc-list li:hover {
    padding-left: 24px;
    color: #1e293b;
}

.svc-link {
    position: relative;
    padding-bottom: 2px;
}

.svc-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: #6a11cb;
    transition: right 0.25s ease;
}

.svc-link:hover::after {
    right: 0;
}

/* ── QUALIFICATIONS: numbered tiles redesign ───────────────── */
.qual-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%) !important;
    position: relative;
    overflow: hidden;
}

.qual-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.qual-item {
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.05);
    border: 1px solid #ede9fe !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease !important;
}

/* Gradient left border on hover */
.qual-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.qual-item:hover::before {
    transform: scaleY(1);
}

.qual-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 44px rgba(106, 17, 203, 0.12) !important;
    border-color: #c4b5fd !important;
}

.qual-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 6px 18px rgba(106, 17, 203, 0.22);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.qual-item:hover .qual-icon {
    transform: rotate(-8deg) scale(1.1);
}

/* ── CTA BANNER: animated gradient & particle dots ─────────── */
.cta-banner-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1055 45%, #3b0764 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Animated gradient sweep */
.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg,
            rgba(106, 17, 203, 0.22) 0%,
            transparent 50%,
            rgba(37, 117, 252, 0.15) 100%);
    animation: ctaGradientShift 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ctaGradientShift {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Dot grid overlay */
.cta-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.cta-banner-container {
    z-index: 1;
}

/* Glowing circle accent */
.cta-banner-title {
    text-shadow: 0 0 40px rgba(167, 139, 250, 0.15);
}

.cta-btn-main {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-btn-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.5s ease;
}

.cta-btn-main:hover::after {
    left: 150%;
}

.cta-btn-main:hover {
    box-shadow: 0 14px 36px rgba(106, 17, 203, 0.5) !important;
    transform: translateY(-3px) !important;
}

.cta-btn-ghost {
    border-color: rgba(167, 139, 250, 0.5) !important;
    color: #c4b5fd !important;
    backdrop-filter: blur(4px);
}

.cta-btn-ghost:hover {
    background: rgba(106, 17, 203, 0.2) !important;
    border-color: #a78bfa !important;
    color: #fff !important;
}

/* ── TESTIMONIALS: premium depth ──────────────────────────── */
.testi-section {
    background: linear-gradient(160deg, #f8f7ff 0%, #ede8ff 100%) !important;
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testi-card {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.06);
    border: 1px solid #ede9fe !important;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease !important;
    position: relative;
    overflow: hidden;
}

/* Animated top gradient line */
.testi-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    transition: right 0.4s ease;
    border-radius: 0 0 4px 0;
}

.testi-card:hover::after {
    right: 0;
}

.testi-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 56px rgba(106, 17, 203, 0.14) !important;
}

/* Large quote mark: gradient */
.testi-card::before {
    background: linear-gradient(135deg, #ede9fe, #f5f3ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 6rem !important;
    opacity: 0.6;
}

.testi-avatar {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.25);
}

/* Star rating gradient */
.testi-stars {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem !important;
}

/* ── AREAS SECTION: premium card chips ─────────────────────── */
.areas-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%) !important;
    position: relative;
    overflow: hidden;
}

.areas-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(106, 17, 203, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.area-chip {
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(106, 17, 203, 0.05);
    border: 1px solid rgba(196, 181, 253, 0.5) !important;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.area-chip:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 22px rgba(106, 17, 203, 0.25) !important;
    transform: translateY(-3px) scale(1.03) !important;
    color: #fff !important;
}

.area-chip-primary,
.area-chip-primary:not(:hover) {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(106, 17, 203, 0.3) !important;
}

/* ── FAQ SECTION: richer toggle ────────────────────────────── */
.faq-section {
    background: linear-gradient(180deg, #f8f7ff 0%, #ede8ff 100%) !important;
    position: relative;
}

.faq-item {
    box-shadow: 0 2px 10px rgba(106, 17, 203, 0.04);
    border: 1px solid rgba(196, 181, 253, 0.4) !important;
    transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}

.faq-item:hover {
    box-shadow: 0 8px 28px rgba(106, 17, 203, 0.1) !important;
    transform: translateY(-2px);
}

.faq-item:has(.faq-q.active) {
    border-color: #a78bfa !important;
    box-shadow: 0 8px 32px rgba(106, 17, 203, 0.12) !important;
}

.faq-q.active {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.06), rgba(37, 117, 252, 0.04)) !important;
}

.faq-icon {
    background: linear-gradient(135deg, #f0ebff, #ede9fe) !important;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.faq-q.active .faq-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc) !important;
    transform: rotate(135deg) !important;
}

.faq-a {
    border-top: 1px solid rgba(196, 181, 253, 0.3);
}

.faq-a.open {
    animation: faqOpen 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ── SECTION DIVIDERS: smooth wave transitions ─────────────── */
.wdt-section,
.qual-section,
.areas-section {
    position: relative;
}

/* Subtle gradient top line on alternating sections */
.svc-section::before,
.testi-section::before+.testi-section::before {
    background: linear-gradient(90deg, transparent, #6a11cb 30%, #2575fc 70%, transparent) !important;
    height: 2px !important;
}

/* ── Section headers: enhanced eyebrow ─────────────────────── */
.wdt-eyebrow,
.svc-eyebrow,
.qual-eyebrow,
.testi-eyebrow,
.areas-eyebrow,
.faq-eyebrow {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe) !important;
    border: 1px solid rgba(196, 181, 253, 0.5);
    box-shadow: 0 2px 8px rgba(106, 17, 203, 0.08);
    transition: box-shadow 0.2s ease;
}

/* ── Map section: premium frame ────────────────────────────── */
.map-weather-section {
    background: linear-gradient(180deg, #f0ebff, #ede8ff) !important;
}

.map-col {
    box-shadow: 0 12px 48px rgba(106, 17, 203, 0.12),
        0 0 0 1px rgba(106, 17, 203, 0.06) !important;
    transition: box-shadow 0.3s ease;
}

.map-col:hover {
    box-shadow: 0 20px 64px rgba(106, 17, 203, 0.18),
        0 0 0 1px rgba(106, 17, 203, 0.1) !important;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE — SUPPLEMENTAL CLASSES
   Missing sections: intro strip, prose warn/proc, bottom form
   ══════════════════════════════════════════════════════════════ */

/* ── Intro Strip ─────────────────────────────────────────────── */
.sp-intro-section {
    background: #fff;
    padding: 48px 0 32px;
    border-bottom: 1px solid #ede9fe;
}

.sp-intro-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-intro-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

/* ── Warning prose (paragraphs instead of numbered list) ──────── */
.sp-warn-prose {
    max-width: 860px;
    margin: 0 auto;
}

.sp-warn-prose p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

/* ── Process prose (paragraphs instead of step grid) ──────────── */
.sp-proc-prose {
    max-width: 860px;
    margin: 0 auto;
}

.sp-proc-prose p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

/* ── Bottom form section ─────────────────────────────────────── */
.sp-bottom-form-section {
    background: linear-gradient(135deg, #f8f7ff, #ede8ff);
    padding: 72px 0;
}

.sp-bottom-form-section .sp-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(106, 17, 203, 0.1);
}

/* ── Accordion/table section ─────────────────────────────────── */
.svc-table-section {
    background: #fff;
    padding: 32px 0 48px;
}

.svc-table-section details {
    border: 1px solid #ede9fe;
    border-radius: 12px;
    overflow: hidden;
}

.svc-table-section details summary {
    padding: 16px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4c1d95;
    cursor: pointer;
    background: #faf8ff;
    list-style: none;
    user-select: none;
}

.svc-table-section details summary:hover {
    background: #f0ebff;
}

.svc-table-section .accordion-content {
    padding: 20px 22px;
}

.svc-table-section .roof-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    color: #374151;
}

.svc-table-section .roof-table td {
    padding: 4px 12px 4px 0;
    vertical-align: top;
    line-height: 1.7;
}

/* ── sp-brands-section missing wrapper ──────────────────────── */
.sp-brands-section {
    background: #f8f7ff;
    padding: 64px 0;
}

/* ── Responsive: keep animations off for reduced motion ─────── */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .hero-img-col,
    .hero-content-col,
    .tpill,
    .hero-rating-badge {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}