/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.bg-light { background-color: #f8f9fa; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background-color: #0056b3;
    color: #fff;
}

.btn-primary:hover {
    background-color: #004085;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-accent {
    background-color: #d9534f;
    color: #fff;
}

.btn-accent:hover {
    background-color: #c9302c;
}

.btn-header {
    background-color: #28a745;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-header:hover {
    background-color: #218838;
}

.btn-large {
    font-size: 18px;
    padding: 16px 32px;
}

/* Top Bar */
.top-bar {
    background-color: #1a252f;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-phone {
    font-weight: 700;
    color: #ffc107;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 20px;
    font-weight: 700;
    color: #0056b3;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 600;
    color: #495057;
}

.main-nav a:hover {
    color: #0056b3;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.03), rgba(0,0,0,0.03));
}

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

.hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a252f;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-title h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-title p {
    color: #6c757d;
    font-size: 16px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card, .service-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card h3, .service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0056b3;
}

.card p, .service-card p {
    color: #666;
    font-size: 15px;
}

/* Emergency Banner */
.emergency-banner {
    background-color: #1a252f;
    color: #fff;
}

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

.emergency-banner p {
    color: #adb5bd;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a252f;
}

.faq-item p {
    color: #555;
    font-size: 15px;
}

/* Location Section */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Final CTA */
.final-cta {
    background-color: #f1f3f5;
}

.final-cta h2 {
    margin-bottom: 15px;
}

.final-cta p {
    margin-bottom: 25px;
    color: #555;
}

/* Footer */
.site-footer {
    background-color: #1a252f;
    color: #adb5bd;
    padding: 50px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer h3, .site-footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.site-footer p, .site-footer li a {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 10px;
    display: block;
}

.site-footer li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 20px;
    font-size: 13px;
    color: #868e96;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0056b3;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-flex, .hero-grid, .grid-3, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .hero {
        padding: 40px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
