:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff7ed;
    --blue: #1e3a5f;
    --blue-dark: #0f2744;
    --blue-light: #2d4a6f;
    --red: #dc2626;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
}

/* Top Bar */
.top-bar {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.emergency-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Header */
header {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--blue);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    font-family: 'Inter', sans-serif;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--orange);
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
}

.phone-cta:hover {
    background: var(--orange-dark);
}

.phone-cta svg {
    width: 20px;
    height: 20px;
}

/* Area Hero Section */
.area-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.area-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.area-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.92) 0%, rgba(30, 58, 95, 0.85) 100%);
    z-index: 2;
}

.area-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

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

.area-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.area-hero h1 span {
    color: var(--orange);
}

.area-hero > .area-hero-content > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Trust Badges */
.trust-badges {
    background: var(--gray-50);
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.trust-badges-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Local Content Section */
.local-content {
    padding: 5rem 2rem;
    background: var(--white);
}

.local-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.local-main h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.local-main h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin: 2.5rem 0 1rem;
}

.local-main p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.local-main ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.local-main li {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.local-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem;
}

.sidebar-card h4 {
    font-size: 1.125rem;
    color: var(--blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    justify-content: center;
    transition: background 0.2s;
}

.sidebar-phone:hover {
    background: var(--orange-dark);
}

.area-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.area-stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.area-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
}

.area-stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--blue);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange-light), var(--white));
    border: 2px solid var(--orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Nearby Areas */
.nearby-areas {
    padding: 4rem 2rem;
    background: var(--white);
}

.nearby-areas-content {
    max-width: 1200px;
    margin: 0 auto;
}

.nearby-areas h2 {
    font-size: 1.75rem;
    color: var(--blue);
    text-align: center;
    margin-bottom: 2rem;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.nearby-link {
    display: block;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.nearby-link:hover {
    border-color: var(--orange);
    background: var(--orange-light);
    color: var(--orange-dark);
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--orange-dark);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.cta-phone svg {
    width: 28px;
    height: 28px;
}

/* Footer */
footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-800);
}

/* Responsive */
@media (max-width: 968px) {
    .local-content-inner {
        grid-template-columns: 1fr;
    }

    .local-sidebar {
        order: -1;
    }

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

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .phone-cta {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .area-hero {
        min-height: 400px;
    }

    .area-hero-content {
        padding: 3rem 1.5rem;
    }

    .trust-badges-content {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
