/* ============================================
   MY HANDYMAN ESSEX — Mobile-First CSS
   Design: Industrial Craft — warm, trustworthy, local
   Fonts: Syne (headings) + DM Sans (body)
   ============================================ */

:root {
    /* Brand Colors */
    --orange: #E8611A;
    --orange-dark: #C4511A;
    --orange-light: #FDF0E8;
    --orange-mid: #F5A06A;
    --navy: #1A2744;
    --navy-mid: #2C3E6E;
    --navy-light: #EEF1F8;
    --charcoal: #2A2A2A;
    --warm-white: #FAFAF7;
    --cream: #F5F3EE;
    --warm-gray: #8A8A80;
    --light-border: #E8E6DF;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Container */
    --container: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Header height */
    --header-h: 72px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--navy);
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: #4A4A45; }
.lead { font-size: clamp(1rem, 2.5vw, 1.2rem); line-height: 1.6; color: #5A5A55; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 16px rgba(232,97,26,0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,97,26,0.45);
}
.btn-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--light-border);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: white;
    border-bottom: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-text strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
}
.logo-text em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Nav Toggle (mobile) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: #1A2744;
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Main Nav */
.main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid var(--light-border);
    box-shadow: var(--shadow-md);
    padding: 1.25rem 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
}
.main-nav.is-open { display: block; }
.main-nav ul { list-style: none; }
.main-nav > ul > li > a {
    display: block;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    border-bottom: 1px solid var(--light-border);
}
.main-nav > ul > li:last-child > a { border-bottom: none; }
.main-nav > ul > li > a[aria-current="page"],
.main-nav > ul > li > a:hover { color: var(--orange); }
.dropdown {
    padding: 0.25rem 0 0.5rem;
    background: var(--cream);
}
.dropdown li a {
    display: block;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}
.dropdown li a:hover { color: var(--orange); }

/* Desktop Nav */
@media (min-width: 992px) {
    .nav-toggle { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
        align-items: center;
        flex: 1;
        justify-content: center;
        max-height: none;
    }
    .main-nav > ul {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    .main-nav > ul > li { position: relative; }
    .main-nav > ul > li > a {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
        border-bottom: none;
        border-radius: 8px;
        transition: all 0.18s;
    }
    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > a[aria-current="page"] {
        background: var(--orange-light);
        color: var(--orange);
    }
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
        display: block;
    }
    .dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--light-border);
        min-width: 200px;
        padding: 0.5rem 0;
    }
    .dropdown li a {
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
        color: var(--charcoal);
        white-space: nowrap;
    }
    .dropdown li a:hover {
        background: var(--orange-light);
        color: var(--orange);
    }
    .btn-header { display: inline-flex; }
}
@media (max-width: 991px) {
    .btn-header { display: none; }
}

/* ===== HERO ===== */
.hero {
    background: var(--navy);
    color: white;
    padding: var(--space-xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,97,26,0.18) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-lg);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,97,26,0.2);
    color: var(--orange-mid);
    border: 1px solid rgba(232,97,26,0.3);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.75rem;
}
.hero h1 { color: white; margin-bottom: 1rem; }
.hero h1 span { color: var(--orange-mid); }
.hero .lead { color: rgba(255,255,255,0.8); margin-bottom: var(--space-md); }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
}
@media (max-width: 479px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}
.hero-trust-item strong { color: white; }

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    background: white;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-mid);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.service-icon {
    font-size: 2rem;
    line-height: 1;
}
.service-card h3 {
    font-size: 1rem;
    font-family: var(--font-display);
    color: var(--navy);
}
.service-card p {
    font-size: 0.875rem;
    color: var(--warm-gray);
    flex: 1;
}
.service-card .arrow {
    font-size: 0.875rem;
    color: var(--orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== AREAS GRID ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 480px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .areas-grid { grid-template-columns: repeat(6, 1fr); } }

.area-pill {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--light-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.18s;
    justify-content: center;
    text-decoration: none;
}
.area-pill:hover {
    background: var(--orange-light);
    border-color: var(--orange-mid);
    color: var(--orange-dark);
}

/* ===== SECTION UTILITIES ===== */
.section {
    padding: var(--space-xl) 0;
}
.section-sm { padding: var(--space-lg) 0; }
.section-bg { background: var(--cream); }
.section-navy { background: var(--navy); color: white; }
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.section-header .label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
    background: white;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.review-stars { color: #F4A623; font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: #4A4A45; margin-bottom: 1rem; line-height: 1.65; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--navy);
    flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review-loc { font-size: 0.8rem; color: var(--warm-gray); }

/* ===== WHY US / FEATURES ===== */
.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.feature-item h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.feature-item p { font-size: 0.875rem; color: var(--warm-gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--orange);
    padding: var(--space-lg) 0;
    text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* ===== STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

.stat-item {}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--warm-gray);
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    align-items: center;
    list-style: none;
}
.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.375rem;
    color: var(--light-border);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb [aria-current="page"] { color: var(--charcoal); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--navy);
    color: white;
    padding: var(--space-lg) 0;
}
.page-hero h1 { color: white; margin-bottom: 0.5rem; }
.page-hero .lead { color: rgba(255,255,255,0.75); }

/* ===== FORM STYLES ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}
label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--light-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: white;
    transition: border-color 0.18s;
    -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,97,26,0.12);
}
textarea { min-height: 120px; resize: vertical; }
.form-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: var(--space-lg);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-text strong { color: white; }
.footer-brand p { font-size: 0.9rem; margin: 0.875rem 0 1rem; line-height: 1.6; }
.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.footer-rating .stars { color: #F4A623; font-size: 1rem; }

.footer-col h3 {
    color: white;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.18s;
}
.footer-col a:hover { color: var(--orange-mid); }
.footer-hours { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.8; }
address { font-style: normal; }
address p { margin-bottom: 0.5rem; font-size: 0.9rem; }
address a { color: rgba(255,255,255,0.7); }
address a:hover { color: var(--orange-mid); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    background: white;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image {
    height: 200px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-meta {
    font-size: 0.8rem;
    color: var(--warm-gray);
    display: flex;
    gap: 1rem;
}
.blog-card h3 { font-size: 1.05rem; color: var(--navy); }
.blog-card p { font-size: 0.875rem; color: var(--warm-gray); flex: 1; }
.blog-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    width: fit-content;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===== QUOTE CARD (sidebar) ===== */
.quote-card {
    background: var(--orange);
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.quote-card h3 { color: white; font-size: 1.2rem; margin-bottom: 0.375rem; }
.quote-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1.25rem; }
.quote-card input,
.quote-card select,
.quote-card textarea {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 8px;
}
.quote-card input::placeholder { color: rgba(255,255,255,0.6); }
.quote-card label { color: rgba(255,255,255,0.9); }
.quote-card .btn-primary {
    background: white;
    color: var(--orange);
    width: 100%;
    justify-content: center;
    box-shadow: none;
}
.quote-card .btn-primary:hover {
    background: var(--cream);
    color: var(--orange-dark);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
    background: white;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    -webkit-tap-highlight-color: transparent;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--warm-gray);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A4A45;
}
.faq-item.is-open .faq-answer { display: block; }

/* ===== LOCAL SERVICE PAGE ===== */
.service-page-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .service-page-grid {
        grid-template-columns: 1fr 360px;
        align-items: start;
    }
}
.content-body h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.4rem;
}
.content-body h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}
.content-body p { margin-bottom: 1rem; }
.content-body ul {
    list-style: none;
    margin-bottom: 1rem;
}
.content-body ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #4A4A45;
}
.content-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ===== RESPONSIVE TABLES ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-border);
}
th {
    background: var(--cream);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT ===== */
@media print {
    .site-header, .site-footer, .cta-banner { display: none; }
    .hero { background: var(--navy) !important; }
    a { text-decoration: underline; }
}


.nav-toggle span {
    background: #1A2744 !important;
    height: 3px !important;
    width: 28px !important;
    display: block !important;
}
