/*
 * Service Area page styles
 * @author Fudo
 * @date   2026-05-05
 */

/* ── TOKENS ── */
:root {
    --sa-teal: #22c4c4;
    --sa-teal-deep: #0fb6b6;
}

/* ── BREADCRUMB ── */
.sa-breadcrumb {
    background: #f4f7fb;
    border-bottom: 1px solid #e6ecf4;
    padding: 14px 0;
    font-size: 0.8125rem;
    color: #5a6b82;
}

.sa-breadcrumb a {
    color: var(--navy-800);
    font-weight: 600;
    text-decoration: none;
}

.sa-breadcrumb a:hover { text-decoration: underline; }

.sa-breadcrumb__sep {
    margin: 0 8px;
    color: #5a6b82;
}

/* ── HERO ── */
.sa-hero {
    background:
        radial-gradient(1200px 600px at 80% 0%, rgba(34,196,196,.3), transparent 60%),
        radial-gradient(900px 500px at 0% 100%, rgba(20,83,196,.55), transparent 60%),
        linear-gradient(135deg, #06214f 0%, #0b3a8a 50%, #1453c4 100%);
    padding: 88px 0 110px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.sa-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'><path d='M0,420 C200,360 400,500 720,440 C1040,380 1240,500 1440,440 L1440,600 L0,600 Z' fill='rgba(255,255,255,0.04)'/></svg>");
    background-size: cover;
    background-position: bottom;
}

.sa-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.sa-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 14px;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #cfe5ff;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
}

.sa-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sa-teal);
    box-shadow: 0 0 0 4px rgba(34,196,196,.25);
    flex-shrink: 0;
}

.sa-hero h1 {
    color: #fff;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.sa-hero__lede {
    font-size: 1.125rem;
    color: #cfe0ff;
    max-width: 560px;
    margin: 0 0 32px;
    line-height: 1.65;
}

.sa-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── DATA CARD ── */
.sa-data-card {
    background: #fff;
    color: var(--navy-800);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 60px -20px rgba(11,58,138,.3), 0 12px 30px -12px rgba(11,58,138,.18);
    position: relative;
}

.sa-data-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--sa-teal), transparent 40%);
    z-index: -1;
    opacity: .4;
}

.sa-data-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.sa-data-card__sub {
    color: #5a6b82;
    font-size: 0.8125rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sa-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sa-data-stat {
    background: #f4f7fb;
    border: 1px solid #e6ecf4;
    border-radius: 12px;
    padding: 14px;
}

.sa-data-stat--hi {
    background: linear-gradient(135deg, #fff4e3, #ffe9c9);
    border-color: #ffd699;
}

.sa-data-stat__label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #5a6b82;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sa-data-stat__val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 4px;
}

.sa-data-stat--hi .sa-data-stat__val { color: #e07a1c; }

.sa-data-stat__val em {
    font-style: normal;
    font-size: 0.875rem;
    color: #5a6b82;
    font-weight: 600;
}

.sa-data-stat__val--sm { font-size: 1rem; padding-top: 4px; }

.sa-data-stat__note {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--sa-teal-deep);
    margin-top: 4px;
}

.sa-data-stat__note--warn { color: #e07a1c; }

/* ── SALE STRIP ── */
.sa-sale-strip {
    background: linear-gradient(90deg, #fff8e8 0%, #fff3d6 100%);
    border-top: 1px solid #ffe7b3;
    border-bottom: 1px solid #ffe7b3;
}

.sa-sale-strip__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 0;
    flex-wrap: wrap;
    text-align: center;
}

.sa-sale-strip__tag {
    background: var(--orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sa-sale-strip__row strong {
    font-size: 1.125rem;
    color: var(--navy-900);
}

.sa-sale-strip__row a {
    color: var(--navy-800);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ── EYEBROW ── */
.sa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy-700);
    margin-bottom: 12px;
}

.sa-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--sa-teal);
    border-radius: 2px;
    flex-shrink: 0;
}

.sa-eyebrow--light { color: var(--sa-teal); }
.sa-eyebrow--light::before { background: var(--sa-teal); }

/* ── SEC HEADER ── */
.sa-sec-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.sa-sec-header h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sa-sec-header p {
    color: #5a6b82;
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
}

.sa-sec-header .sa-eyebrow { justify-content: center; }
.sa-sec-header .sa-eyebrow::before { display: none; }

/* ── INTRO ── */
.sa-intro {
    padding: 80px 0;
    background: #fff;
}

.sa-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.sa-intro__copy .sa-eyebrow { display: flex; }

.sa-intro__copy h2 {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.sa-intro__copy p {
    color: #324159;
    line-height: 1.75;
    font-size: var(--text-base);
    margin-bottom: 16px;
}

.sa-intro__pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.sa-pill {
    background: #f4f7fb;
    border: 1px solid #e6ecf4;
    border-radius: 12px;
    padding: 14px 16px;
}

.sa-pill__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #5a6b82;
    margin-bottom: 4px;
}

.sa-pill__val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1;
}

.sa-pill__val--sm { font-size: 0.9375rem; padding-top: 4px; }

.sa-pill__val em {
    font-style: normal;
    font-size: 0.8125rem;
    color: #5a6b82;
    font-weight: 600;
}

/* ── SOURCE DIAGRAM ── */
.sa-intro__vis {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-source-diagram {
    position: relative;
    width: 320px;
    height: 320px;
    background: linear-gradient(180deg, #eaf6ff 0%, #d6eeff 50%, #c5d8e8 100%);
    border-radius: 20px;
    border: 1px solid #d6e6ff;
    overflow: hidden;
}

.sa-source-diagram__sun {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd86e, #f5a623);
    box-shadow: 0 0 0 8px rgba(245,166,35,.15);
}

.sa-source-diagram__well {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 80px;
    background: linear-gradient(180deg, #0b3a8a, #1453c4);
    border-radius: 8px 8px 0 0;
}

.sa-source-diagram__well::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -8px;
    right: -8px;
    height: 16px;
    background: #0b3a8a;
    border-radius: 4px;
}

.sa-source-diagram__label {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border: 1px solid #d6e6ff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.75rem;
    line-height: 1.4;
    backdrop-filter: blur(4px);
    max-width: 130px;
}

.sa-source-diagram__label strong {
    display: block;
    color: var(--navy-800);
    font-weight: 700;
    font-size: 0.8125rem;
}

.sa-source-diagram__label--1 { top: 20px; left: 16px; }
.sa-source-diagram__label--2 { top: 50%; left: 12px; transform: translateY(-50%); }
.sa-source-diagram__label--3 { bottom: 20px; right: 16px; }

/* ── STATS BAR ── */
.sa-stats-bar {
    background: var(--navy-800);
    padding: 40px 0;
}

.sa-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.sa-stat__val {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.sa-stat__val em {
    font-style: normal;
    color: var(--sa-teal);
    font-size: 60%;
}

.sa-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9fb6dd;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 6px;
}

/* ── SERVICES GRID ── */
.sa-services {
    padding: 80px 0;
    background: #f4f7fb;
}

.sa-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sa-service-card {
    background: #fff;
    border: 1.5px solid #e6ecf4;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.sa-service-card:hover {
    box-shadow: 0 8px 32px rgba(11,58,138,.12);
    border-color: var(--navy-700);
    transform: translateY(-2px);
}

.sa-service-card--cta {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-color: var(--navy-700);
}

.sa-service-card--cta h3,
.sa-service-card--cta.sa-service-card h3 {
    color: #fff !important;
}

.sa-service-card--cta p,
.sa-service-card--cta.sa-service-card p {
    color: rgba(255,255,255,0.85) !important;
}

.sa-service-card--cta .sa-service-card__link {
    color: #fff !important;
    font-weight: 700;
}

.sa-service-card--cta .sa-service-card__icon {
    background: rgba(255,255,255,0.12);
    color: var(--sa-teal);
}

.sa-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eaf1f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.sa-service-card--cta .sa-service-card__icon {
    background: rgba(255,255,255,0.12);
    color: var(--sa-teal);
}

.sa-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 8px;
    line-height: 1.3;
}

.sa-service-card p {
    font-size: 0.875rem;
    color: #5a6b82;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.sa-service-card__link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy-700);
    margin-top: auto;
}

/* ── WHY US ── */
.sa-why {
    padding: 80px 0;
    background: #fff;
}

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

.sa-why-card {
    padding: 32px 28px;
    border: 1.5px solid #e6ecf4;
    border-radius: 16px;
    background: #f4f7fb;
}

.sa-why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sa-why-card__icon--a { background: #eaf1f8; color: var(--navy-700); }
.sa-why-card__icon--b { background: #e6fafa; color: var(--sa-teal-deep); }
.sa-why-card__icon--c { background: #fff3e6; color: var(--orange); }

.sa-why-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sa-why-card p {
    font-size: 0.875rem;
    color: #5a6b82;
    line-height: 1.7;
    margin: 0;
}

/* ── SERVICE AREA ── */
.sa-area {
    padding: 80px 0;
    background: #f4f7fb;
}

.sa-area__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.sa-area__copy .sa-eyebrow { display: flex; }

.sa-area__copy h2 {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.sa-area__copy p {
    color: #324159;
    line-height: 1.75;
    font-size: var(--text-base);
    margin-bottom: 24px;
}

.sa-neighborhoods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.sa-neighborhoods ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sa-neighborhoods ul li {
    padding-left: 18px;
    position: relative;
    font-size: 0.875rem;
    color: #324159;
    font-weight: 500;
    line-height: 1.5;
}

.sa-neighborhoods ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sa-teal);
}

/* ── MAP CARD ── */
.sa-map-card {
    background: #fff;
    border: 1.5px solid #e6ecf4;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(11,58,138,.08);
}

.sa-map-card__legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #5a6b82;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sa-map-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sa-teal);
    flex-shrink: 0;
}

.sa-map-card svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ── REVIEWS ── */
.sa-reviews {
    padding: 80px 0;
    background: var(--navy-900);
}

.sa-reviews .sa-sec-header h2 { color: #fff; }
.sa-reviews .sa-sec-header .sa-eyebrow { color: var(--sa-teal); }
.sa-reviews .sa-sec-header .sa-eyebrow::before { display: none; }

.sa-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sa-review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sa-review-card__stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 2px;
}

.sa-review-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex: 1;
    margin: 0;
    font-style: italic;
}

.sa-review-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.sa-review-card__av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.sa-review-card__av--1 { background: var(--navy-700); }
.sa-review-card__av--2 { background: var(--sa-teal-deep); }
.sa-review-card__av--3 { background: var(--orange); }

.sa-review-card__meta > div strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.sa-review-card__meta > div span {
    font-size: 0.75rem;
    color: #9fb6dd;
}

.sa-review-card__source {
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #9fb6dd;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ── FAQ ── */
.sa-faq {
    padding: 80px 0;
    background: #fff;
}

.sa-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sa-faq__item {
    border-bottom: 1px solid #e6ecf4;
}

.sa-faq__item:first-child { border-top: 1px solid #e6ecf4; }

.sa-faq__item summary {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.sa-faq__item summary::-webkit-details-marker { display: none; }

.sa-faq__item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--navy-700);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.sa-faq__item[open] summary::after {
    transform: rotate(45deg);
}

.sa-faq__answer {
    padding: 0 0 20px;
}

.sa-faq__answer p {
    font-size: 0.9375rem;
    color: #324159;
    line-height: 1.75;
    margin: 0;
}

/* ── CTA BANNER ── */
.sa-cta-section {
    padding: 40px 0 80px;
    background: #f4f7fb;
}

.sa-cta-banner {
    background: linear-gradient(135deg, var(--navy-900), #1453c4);
    border-radius: 20px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.sa-cta-banner__copy .sa-eyebrow { color: var(--sa-teal); }
.sa-cta-banner__copy .sa-eyebrow::before { background: var(--sa-teal); }

.sa-cta-banner__copy h2 {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 14px 0 12px;
}

.sa-cta-banner__copy p {
    color: #cfe0ff;
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

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

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
    .sa-hero {
        padding: 56px 0 72px;
    }
    .sa-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sa-intro__grid,
    .sa-area__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sa-services__grid {
        grid-template-columns: 1fr 1fr;
    }
    .sa-why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sa-reviews__grid {
        grid-template-columns: 1fr;
    }
    .sa-stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sa-cta-banner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 32px;
    }
    .sa-cta-banner__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sa-intro__vis {
        display: none;
    }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
    .sa-hero {
        padding: 40px 0 56px;
    }
    .sa-hero h1 {
        font-size: 1.875rem;
    }
    .sa-hero__lede {
        font-size: 1rem;
    }
    .sa-hero__actions {
        flex-direction: column;
    }
    .sa-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .sa-data-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sa-sale-strip__row {
        flex-direction: column;
        gap: 10px;
    }
    .sa-intro__pills {
        grid-template-columns: 1fr 1fr;
    }
    .sa-services__grid {
        grid-template-columns: 1fr;
    }
    .sa-stats-bar__grid {
        grid-template-columns: 1fr 1fr;
    }
    .sa-neighborhoods {
        grid-template-columns: 1fr;
    }
    .sa-cta-banner {
        padding: 32px 24px;
    }
    .sa-cta-banner__actions {
        flex-direction: column;
    }
    .sa-cta-banner__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .sa-faq__list {
        padding: 0;
    }
}
