*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal: #33CCCC;
    --teal-dark: #1AABAB;
    --navy: #0E2A3A;
    --navy-mid: #143A4D;
    --navy-card: #163D52;
    --white: #FFFFFF;
    --muted: rgba(255, 255, 255, 0.45);
    --border: rgba(51, 204, 204, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--white);
    min-height: 100vh;
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 4.5rem 5vw 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(51, 204, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(51, 204, 204, 0.1);
    border: 1px solid rgba(51, 204, 204, 0.25);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    margin-top: 3em;
    margin-bottom: 1.25rem;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.page-hero h1 span {
    color: var(--teal);
}

.hero-gmaps-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hero-gmaps-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 2rem;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.rating-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.rating-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.rating-meta span:first-child {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rating-meta span:last-child {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
}

@media (max-width: 500px) {
    .rating-summary {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .rating-meta {
        align-items: center;
    }
}

/* ── GRID ── */
.reviews-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 3.5rem 5vw 5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* ── REVIEW CARD ── */
.review-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(51, 204, 204, 0.25);
    border-color: rgba(51, 204, 204, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(51, 204, 204, 0.2);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

.review-date {
    font-size: 0.7rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.review-text.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-toggle {
    background: none;
    border: none;
    color: var(--primary, #33cccc);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

.review-toggle:hover {
    text-decoration: underline;
}

/* ── SKELETON ── */
@keyframes shimmer {
    0% {
        background-position: -600px 0;
    }
    100% {
        background-position: 600px 0;
    }
}

.skel {
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(51, 204, 204, 0.07) 50%, rgba(255, 255, 255, 0.04) 75%);
    background-size: 1200px 100%;
    animation: shimmer 1.5s infinite linear;
    margin-bottom: 0.5rem;
}

.skel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skel-line {
    height: 12px;
}

.status-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--muted);
    font-size: 0.9rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SERVICE AREA (crawlable section) ── */
.service-area-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 5vw;
    position: relative;
}

.service-area-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(51, 204, 204, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.service-area-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-area-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.service-area-inner h2 span {
    color: var(--teal);
}

.service-area-intro {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 780px;
    margin-bottom: 2.5rem;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, background 0.2s;
}

.area-card:hover {
    border-color: rgba(51, 204, 204, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.area-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.area-card-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.area-job-count {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    background: rgba(51, 204, 204, 0.1);
    border: 1px solid rgba(51, 204, 204, 0.25);
    border-radius: 6px;
    padding: 2px 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.area-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0.6rem;
}

.area-cat-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2px 7px;
}

.area-services {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0 0 0.3rem;
}

.area-years {
    font-size: 0.7rem;
    color: var(--muted);
    margin: 0;
}

.area-more {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

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