/* ═══════════════════════════════════════════════════════════════
   Roof Repair Bradenton FL — Complete Design System
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
    /* Colors */
    --primary: #0f2a44;
    --primary-light: #1a3d5c;
    --primary-dark: #091e33;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --accent-light: #38bdf8;
    --accent-glow: rgba(14, 165, 233, 0.15);
    --cta: #f97316;
    --cta-hover: #ea580c;
    --cta-light: #fb923c;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --bg-dark: #0c1b2a;
    --bg-darker: #081420;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-on-dark: #e2e8f0;
    --text-on-dark-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    /* Layout */
    --container: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, svg, video, canvas, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}
img {
    height: auto;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: all var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

/* ─── LAYOUT ─── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-lg {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
    background: var(--accent-glow);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag svg {
    width: 16px;
    height: 16px;
}

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.7;
}

.section-subtitle.centered {
    margin: 0 auto;
}

.text-balance {
    text-wrap: balance;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-1px);
}

.btn-cta {
    background: var(--cta);
    color: #fff;
}

.btn-cta:hover {
    background: var(--cta-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-sm { font-size: 0.85rem; padding: 8px 16px; }
.btn-lg { font-size: 1.05rem; padding: 15px 32px; border-radius: var(--radius); }

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.cta-pair {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

/* ─── HEADER ─── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 20px;
}

.header-logo img {
    display: block;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-dark);
    background: var(--accent-glow);
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-chevron {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}

.hamburger svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
    .header-actions {
        display: flex;
    }
    .hamburger {
        display: none;
    }
}

/* ─── MEGA MENU ─── */
.nav-item-dropdown {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 760px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.04);
    padding: 24px 28px;
    margin-top: 8px;
    z-index: 100;
    animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-wide {
    min-width: 860px;
}

.is-open .mega-menu {
    display: block;
}

@media (min-width: 1024px) {
    .nav-item-dropdown:hover .mega-menu,
    .nav-item-dropdown:focus-within .mega-menu {
        display: block;
    }
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mega-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.mega-col-title svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    min-height: 54px;
}

.mega-menu-item:hover {
    background: var(--bg-alt);
    transform: translateX(2px);
}

.mega-menu-item:hover .mega-item-icon {
    background: var(--accent);
    color: #fff;
}

.mega-menu-item:hover .mega-item-title {
    color: var(--accent-dark);
}

.mega-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--accent-glow);
    color: var(--accent-dark);
    flex-shrink: 0;
    transition: all var(--transition);
}

.mega-item-icon svg {
    width: 17px;
    height: 17px;
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.mega-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    transition: color var(--transition);
}

.mega-item-desc {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.3;
    white-space: nowrap;
}

.mega-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    gap: 16px;
}

.mega-footer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mega-footer-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--accent-glow);
    color: var(--accent-dark);
    padding: 3px 10px;
    border-radius: 100px;
}

.mega-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-footer-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.mega-footer-call svg {
    width: 16px;
    height: 16px;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(360px, 85vw);
    background: #fff;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
    overflow-y: auto;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-alt);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    flex: 1;
}

.mobile-nav-links > a {
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
}

.mobile-nav-links > a:hover,
.mobile-nav-links > a.active {
    color: var(--accent-dark);
    background: var(--accent-glow);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}

.mobile-dropdown-toggle:hover {
    background: var(--bg-alt);
}

.mobile-chevron {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.mobile-dropdown-toggle.active .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    padding: 4px 0 4px 16px;
}

.mobile-submenu.open {
    display: flex;
}

.mobile-submenu a {
    padding: 8px 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
}

.mobile-submenu a:hover {
    color: var(--accent-dark);
    background: var(--accent-glow);
}

.mobile-submenu-all {
    font-weight: 600;
    color: var(--accent-dark) !important;
    margin-top: 4px;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ─── MOBILE STICKY CTA ─── */
.mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-sticky-estimate,
.btn-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.btn-sticky-estimate {
    background: var(--cta);
}

.btn-sticky-call {
    background: var(--primary);
}

.btn-sticky-estimate svg,
.btn-sticky-call svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 1024px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img,
.hero-bg .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,42,68,0.92) 0%, rgba(12,27,42,0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px 100px;
    text-align: center;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

@media (max-width: 1023px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-split .hero-text p {
        margin: 0 auto;
    }
    .hero-split .hero-badges {
        justify-content: center;
    }
    .hero-split .cta-pair {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-split .hero-text {
        flex: 1.2;
    }
    .hero-split .hero-form-card {
        flex: 0.8;
        min-width: 380px;
    }
}

.hero-text {
    max-width: 780px;
    margin: 0 auto;
}

.hero-text h1 {
    color: #fff;
    margin-bottom: 16px;
}

.hero-text .highlight {
    color: var(--accent-light);
}

.hero-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-light);
}

/* ─── HERO FORM ─── */
.hero-form-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    max-width: 420px;
    width: 100%;
}

.hero-form-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.hero-form-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-group {
    position: relative;
}

.input-group svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 11px 12px 11px 38px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition);
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}

.input-group select {
    appearance: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
}

.input-group select option {
    color: var(--text);
    background: #fff;
}

.form-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-consent label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ─── PLACEHOLDER IMAGES ─── */
.img-placeholder {
    background: linear-gradient(135deg, #c7d2db 0%, #94a3b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.img-placeholder span {
    position: relative;
    z-index: 1;
}

/* ─── CERTIFICATIONS BAR ─── */
.certifications-bar {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.certifications-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.cert-item {
    opacity: 0.6;
    transition: opacity var(--transition);
}

.cert-item:hover {
    opacity: 1;
}

.cert-item img {
    display: block;
    width: 160px;
    height: 64px;
    object-fit: contain;
}

.cert-item .img-placeholder {
    width: 140px;
    height: 60px;
    min-height: auto;
    font-size: 0.7rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #dde3ea 0%, #c1cad4 100%);
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.about-image .img-placeholder {
    min-height: 360px;
    border-radius: var(--radius-lg);
}

.about-text .section-tag {
    margin-bottom: 12px;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-link {
    margin-top: 8px;
}

.about-mini-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.about-mini-stat {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-width: 120px;
}

.about-mini-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.about-mini-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── CARD GRIDS ─── */
.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ─── FEATURE CARDS (Why Choose Us) ─── */
.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-card--highlight {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-card--highlight:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(14,165,233,0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--accent-glow);
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ─── COST SECTION ─── */
.cost-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

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

@media (min-width: 768px) {
    .cost-grid {
        grid-template-columns: 1.3fr 1fr;
    }
}

.cost-content .section-tag { margin-bottom: 12px; }
.cost-content .section-title { text-align: left; margin-bottom: 16px; }

.cost-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.cost-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: var(--radius);
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.cost-table thead {
    background: var(--primary);
    color: #fff;
}

.cost-table th {
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    font-family: var(--font-display);
}

.cost-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.cost-table tbody tr:hover {
    background: var(--bg-alt);
}

.cost-table .cost-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ─── SERVICE CARDS ─── */
.service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-image .img-placeholder {
    min-height: 200px;
    border-radius: 0;
}

.service-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-icon-badge svg {
    width: 20px;
    height: 20px;
}

.service-card-body {
    padding: 20px;
}

.service-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.service-card-body h3 a {
    color: var(--primary);
}

.service-card-body h3 a:hover {
    color: var(--accent-dark);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* ─── SYSTEM CARDS ─── */
.system-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.system-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.system-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 6px;
}

.system-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.system-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── SPLIT GRID (Residential/Commercial) ─── */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.split-card {
    padding: 32px 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.split-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.split-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--accent-glow);
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.split-icon svg {
    width: 24px;
    height: 24px;
}

.split-card h3 {
    margin-bottom: 10px;
}

.split-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ─── PROCESS TIMELINE ─── */
.process-header {
    text-align: center;
    margin-bottom: 48px;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    background: var(--accent-glow);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.process-tag svg {
    width: 16px;
    height: 16px;
}

.process-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.process-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-item:last-child::before {
    display: none;
}

.process-badge {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-text h3 {
    margin-bottom: 6px;
}

.process-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery-section-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    gap: 24px;
}

.gallery-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.gallery-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

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

.gallery-image-wrap {
    position: relative;
}

.gallery-image-wrap .img-placeholder {
    min-height: 220px;
    border-radius: 0;
}

.gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: rgba(16,185,129,0.9);
    padding: 5px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.gallery-badge svg {
    width: 13px;
    height: 13px;
}

.gallery-geo-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #fff;
    background: rgba(0,0,0,0.55);
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.gallery-geo-tag svg {
    width: 12px;
    height: 12px;
}

.gallery-card-content {
    padding: 16px 20px;
}

.gallery-card-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.gallery-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── DAMAGE GRID ─── */
.damage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .damage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.icon-list li {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-on-dark);
    line-height: 1.65;
}

.icon-list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 7px;
}

/* ─── SIGNS GRID ─── */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.sign-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.sign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sign-accent, var(--accent));
}

.sign-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.sign-card-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--sign-accent, var(--accent));
    opacity: 0.4;
    margin-bottom: 10px;
}

.sign-card-icon {
    margin-bottom: 12px;
    color: var(--sign-accent, var(--accent));
}

.sign-card-icon svg {
    width: 28px;
    height: 28px;
}

.sign-card-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.sign-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── EMERGENCY BANNER ─── */
.emergency-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.emergency-banner-bg {
    position: absolute;
    inset: 0;
}

.emergency-banner-bg .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    min-height: 340px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1b2a 100%);
}

.emergency-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,42,68,0.9) 0%, rgba(12,27,42,0.75) 100%);
}

.emergency-banner-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    max-width: 600px;
}

.emergency-banner-content h2 {
    color: #fff;
    margin-bottom: 12px;
}

.emergency-banner-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ─── LOGO SLIDER ─── */
.logo-slider-track {
    overflow: hidden;
    position: relative;
}

.logo-slider-inner {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider-item .img-placeholder {
    width: 140px;
    height: 45px;
    min-height: auto;
    font-size: 0.65rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* ─── TOOL GRID ─── */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.tool-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.tool-item:hover {
    border-color: var(--accent);
    background: #fff;
}

.tool-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent-glow);
    color: var(--accent-dark);
    flex-shrink: 0;
}

.tool-icon svg {
    width: 18px;
    height: 18px;
}

.tool-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 2px;
}

.tool-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── REGULATIONS ─── */
.reg-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .reg-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.reg-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
}

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

.reg-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.reg-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--accent-glow);
    color: var(--accent);
}

.reg-card-icon svg {
    width: 20px;
    height: 20px;
}

.reg-card-icon--warning {
    background: rgba(249, 115, 22, 0.15);
    color: var(--cta);
}

.reg-card h3 {
    color: #fff;
    font-size: 1.05rem;
}

.reg-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.reg-badge--green {
    background: rgba(16,185,129,0.15);
    color: var(--success);
}

.reg-badge--blue {
    background: var(--accent-glow);
    color: var(--accent-light);
}

.reg-card p {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.reg-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reg-list li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
}

.reg-list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 7px;
}

.reg-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.reg-info-item {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
}

.reg-info-item strong {
    color: var(--text-on-dark);
}

.reg-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.reg-notes {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.reg-notes p {
    font-size: 0.82rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 6px;
}

/* ─── SERVICE AREAS ─── */
.area-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.area-detail-card {
    padding: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.area-detail-card:hover {
    border-color: var(--accent);
    background: #fff;
    transform: translateY(-2px);
}

.area-detail-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.area-detail-card-header svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.area-detail-card-header h3 {
    font-size: 1rem;
}

.area-detail-card-header h3 a {
    color: var(--primary);
}

.area-detail-card-header h3 a:hover {
    color: var(--accent-dark);
}

.area-detail-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.area-detail-card--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-color: var(--accent);
}

/* ─── PLACES / GUIDES ─── */
.place-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.place-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.place-card--guide {
    padding: 0;
    overflow: hidden;
}

.place-card--guide > h3,
.place-card--guide > p,
.place-card--guide > .place-links {
    padding: 0 20px;
}

.place-card--guide > h3 {
    padding-top: 16px;
}

.place-card--guide > .place-links {
    padding-bottom: 20px;
}

.place-card-image {
    display: block;
    overflow: hidden;
}

.place-card-image .img-placeholder {
    min-height: 180px;
    border-radius: 0;
}

.place-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.place-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.place-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.place-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
}

.place-links a:hover {
    color: var(--accent);
}

/* ─── FAQ ─── */
.faq-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .faq-columns {
        grid-template-columns: 1fr 1fr;
    }
}

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

.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(14,165,233,0.3);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(14,165,233,0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 18px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    line-height: 1.45;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

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

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── ZIP CODE BADGES ─── */
.zip-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.zip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.zip-badge:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ─── FINAL CTA ─── */
.cta-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    min-height: 400px;
    background: linear-gradient(135deg, #0f2a44 0%, #1a3d5c 100%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,42,68,0.92) 0%, rgba(12,27,42,0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 60px 0 24px;
    font-family: var(--font-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
        gap: 40px;
    }
}

.footer-brand .footer-desc {
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 320px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
}

.footer-contact-info a {
    color: var(--text-on-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact-info a:hover {
    color: var(--accent-light);
}

.footer-contact-info .footer-phone-val {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    transform: translateX(2px);
}

.footer-map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-container iframe {
    display: block;
    width: 100%;
    height: 160px;
    border: 0;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    font-size: 0.815rem;
    color: var(--text-on-dark-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 56px 0;
    }

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

    .hero {
        min-height: 480px;
    }

    .hero-content {
        padding: 60px 20px 90px;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-pair {
        flex-direction: column;
    }

    .cta-pair .btn {
        width: 100%;
    }

    .about-mini-stats {
        gap: 12px;
    }

    .about-mini-stat {
        min-width: 100px;
        padding: 12px 14px;
    }

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

    .footer {
        padding: 44px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-brand .footer-desc {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .footer-contact-info {
        font-size: 0.85rem;
        gap: 5px;
    }

    .footer-map-container iframe {
        height: 150px;
    }

    .footer-bottom {
        padding-top: 18px;
        text-align: center;
        font-size: 0.78rem;
        gap: 8px;
    }

    .emergency-banner-content {
        padding: 32px 24px;
    }

    body {
        padding-bottom: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

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

/* ─── ADDITIONAL MOBILE RESPONSIVE GUARDS ─── */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 56px 0;
    }
    .section-lg {
        padding: 70px 0;
    }
    .hero-content {
        padding: 60px 16px 70px;
    }
    .hero-text h1 {
        font-size: 1.85rem;
    }
    .hero-form-card {
        padding: 20px 16px;
        max-width: 100%;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .about-mini-stats {
        gap: 12px;
    }
    .about-mini-stat {
        min-width: 0;
        flex: 1 1 calc(50% - 12px);
        padding: 12px 14px;
    }
    .area-grid-detailed {
        grid-template-columns: 1fr;
    }
    .card-grid-3, .card-grid-4, .process-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
}
