/* Basic Reset & Layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-bottom: 60px; /* Space for mobile sticky CTA */
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
}
.main-nav ul {
    display: flex;
    gap: 25px;
}
.main-nav a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #0284c7;
}
.header-cta .btn-phone {
    background: #0284c7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

/* Hero */
.hero {
    padding: 60px 0;
    background: #f8fafc;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
.btn-primary {
    background: #0284c7;
    color: #fff;
}
.btn-primary:hover {
    background: #0369a1;
}
.btn-secondary {
    background: #e2e8f0;
    color: #334155;
}
.btn-secondary:hover {
    background: #cbd5e1;
}
.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Sections */
.section {
    padding: 60px 0;
}
.bg-light {
    background: #f8fafc;
}
.section h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: center;
}
.section-lead {
    text-align: center;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
}

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

/* Cards */
.card, .service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.card h3, .service-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 15px;
}
.card p, .service-card p {
    color: #475569;
    font-size: 0.95rem;
}
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #0284c7;
    font-weight: 600;
}

/* CTA Box */
.section-cta-box {
    margin-top: 40px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-cta-box p {
    font-weight: 600;
    color: #0369a1;
}

/* Local Section */
.local-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.map-placeholder {
    background: #f1f5f9;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    text-align: center;
}
.map-placeholder p {
    margin-bottom: 10px;
    color: #334155;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}
.faq-item h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 10px;
}
.faq-item p {
    color: #475569;
}

/* CTA Banner */
.cta-banner {
    background: #0f172a;
    color: #fff;
}
.cta-banner h2 {
    color: #fff;
}
.cta-banner p {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: #090d16;
    color: #94a3b8;
    padding: 50px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-col p, .footer-col li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.footer-col a {
    color: #94a3b8;
}
.footer-col a:hover {
    color: #fff;
}
.copyright {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0284c7;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.mobile-cta-btn {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive */
@media(max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hero-container, .local-container, .section-cta-box {
        grid-template-columns: 1fr;
        display: block;
    }
    .hero-image {
        margin-top: 30px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-cta-box .btn {
        margin-top: 15px;
        display: block;
    }
    .mobile-sticky-bar {
        display: block;
    }
}
