
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    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: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

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

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.location-highlight {
    color: var(--primary);
}

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

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-phone {
    background: #0f172a;
    color: var(--white);
}

.btn-phone:hover {
    background: #1e293b;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f0f9ff, var(--white));
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

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

.bg-light {
    background-color: var(--bg-light);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

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

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card p {
    color: var(--text-muted);
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
}

.emergency-section {
    background: #0f172a;
    color: var(--white);
}

.emergency-section h2 {
    color: var(--white);
}

.emergency-section p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.map-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* FAQ */
.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    background: var(--bg-light);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 2.25rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.phone-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px 0;
}

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

.site-footer h3, .site-footer h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.site-footer p, .site-footer li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    padding: 12px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
}

.mobile-call-btn {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

/* Responsive */
@media(max-width: 900px) {
    .hero-grid, .grid-3, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
