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

:root {
    /* Color Palette - Requested Primary Red */
    --primary: #dc2626;      /* Primary Red */
    --primary-hover: #b91c1c;
    --primary-light: rgba(220, 38, 38, 0.1);
    
    --slate-900: #0f172a;    /* Dark Slate Backgrounds */
    --royal-blue: #0047ab;   /* Royal Blue from Logo */
    --slate-800: #1e293b;
    --slate-700: #334155;
    
    --white: #ffffff;
    --text-main: #1e293b;    /* Darker slate for better readability on light bg */
    --text-muted: #475569;   /* Darker muted gray for better contrast */
    --text-on-dark: #f1f5f9; /* Light gray/white for dark backgrounds */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(220, 38, 38, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (max-width: 480px) {
    html { font-size: 14px; } /* Fluid typography base */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; } /* Tighter padding for mobile */
}

.text-center { text-align: center; }
.section-padding { padding: 5rem 0; }
.bg-slate { background-color: var(--slate-900); color: var(--text-on-dark); }
.bg-slate h2, .bg-slate h3, .bg-slate h4 { color: var(--white); }
.bg-slate p { color: #cbd5e1; }
.highlight-red { color: var(--primary); font-weight: 700; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--slate-900);
}

.pulse-btn {
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--slate-900);
    backdrop-filter: blur(10px);
    border-top: 4px solid var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--white);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img { height: 50px; }
}

@media (max-width: 480px) {
    .logo img { height: 44px; }
}

.logo-icon {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

.navbar .nav-links a:not(.btn) {
    color: var(--text-on-dark);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--slate-800);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 0.5rem 0;
    z-index: 100;
    border: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-on-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--primary);
    color: var(--white);
    padding-left: 1.75rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-icon {
    width: 14px !important;
    height: 14px !important;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-links a:not(.btn) {
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

/* --- Hero Section (Refined & Responsive) --- */
.hero.glass-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: left;
    color: var(--white);
    z-index: 1;
}
.hero-content.text-center {
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p.hero-description {
    color: #e2e8f0;
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 4rem;
}

.hero-actions .btn svg, 
.hero-actions .btn i {
    width: 20px;
    height: 20px;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-c.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.trust-card .icon-box {
    background: rgba(220, 38, 38, 0.2);
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.trust-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero p.hero-description {
        margin: 0 auto 3rem;
    }
    
    .hero-actions {
        justify-content: center !important;
    }
}

/* Area Actions Grid */
.area-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.area-card .response-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

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

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 1000px;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Service Areas */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.area-list {
    list-style: none;
}

.area-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.area-list li i {
    color: var(--primary);
    width: 16px;
}

/* Emergency CTA Section */
.emergency-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.emergency-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* --- Features / Trust Badges --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -8rem; /* Overlap with hero */
    padding-top: 8rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05); /* Glass pane on slate */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.feature-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

/* --- Services Teaser --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* --- Section Headers --- */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    color: #e2e8f0; /* Brighter text for footer */
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    color: #cbd5e1; /* Brighter link color */
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: #94a3b8; /* Muted but readable copyright */
}
.footer-brand .logo {
    color: var(--white);
}


.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.quote-author {
    font-weight: 700;
    color: var(--text-on-dark);
}

/* --- Reviews Grid --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.review-stars {
    color: #fbbf24; /* Star Yellow */
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.review-content {
    color: #cbd5e1;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-location {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Animations --- */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--slate-900); /* Premium Dark Theme */
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: var(--white) !important;
        font-size: 1.15rem;
        display: flex;
        justify-content: center;
        align-items: center;
        /* Removed gap to allow negative margin centering trick */
    }

    /* Mobile Dropdown Refactor */
    .dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.03);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        border-radius: 0;
        transition: max-height 0.4s ease-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding: 0.85rem 2rem;
        font-size: 1.05rem;
        color: rgba(255,255,255,0.7) !important;
        justify-content: center;
    }

    .dropdown-icon {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        /* Neutralize space so text remains perfectly centered */
        margin-right: -1.5rem; 
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .nav-links a.btn {
        width: calc(100% - 3rem);
        margin: 2.5rem auto;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    /* Grid Responsiveness - Ensure 1 column and center align */
    .features-grid, 
    .services-grid, 
    .area-grid, 
    .trust-grid,
    .footer-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem; /* Increased gap to prevent overlap */
        text-align: center;
    }

    .area-grid > div, .footer-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .area-list, .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-contact p {
        justify-content: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-actions {
        display: flex; /* Ensure flex is active */
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 1.25rem; /* Better gap for touch targets */
        margin-top: 2rem;
        padding: 0 1rem; /* Prevent overlap on edges */
    }

    .hero-actions .btn {
        width: 100% !important;
        max-width: 100%;
        margin: 0 !important;
        padding: 1rem 1.5rem;
    }
    
    .trust-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .features-grid {
        margin-top: 0;
        padding-top: 2rem;
    }
}

/* Internal Page Headers */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    color: var(--white);
    text-align: center;
}
.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.page-header p {
    color: #cbd5e1;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-card .icon-wrap {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* About Us Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

/* --- Mobile Sticky Contact Bar --- */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 0.75rem 1rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: grid;
    }
    body {
        padding-bottom: 70px; /* Prevent footer being hidden by the bar */
    }
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.mobile-btn-call {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: var(--white);
}
.mobile-btn i {
    width: 20px;
    height: 20px;
}

.wa-icon, 
.lucide, 
[data-lucide] {
    width: 20px !important;
    height: 20px !important;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.wa-icon {
    margin-right: 6px;
}

/* --- Sitemap / Areas We Serve Section --- */
.sitemap-section {
    background: #f8fafc; /* Very light slate/gray */
    color: var(--text-main);
    border-top: 1px solid #e2e8f0;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

/* Locations Selection Grid - Uses 3 cols */
.sitemap-section .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .sitemap-section .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sitemap-section .footer-grid {
        grid-template-columns: 1fr;
    }
}

.sitemap-section h4 {
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-align: center;
}

.sitemap-section h5 {
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.sitemap-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

@media (max-width: 480px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}

.sitemap-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    position: relative;
    z-index: 2;
}

.sitemap-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.sitemap-links a::before {
    content: '→';
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sitemap-links a {
        justify-content: center;
    }
    .sitemap-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
