/* Modern Local Service Website Stylesheet */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --max-width: 1200px;
}

* {
    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: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

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

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

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

.main-nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.btn-phone {
    background-color: #f0f9ff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-phone:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    text-decoration: none;
}

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

/* Views Routing */
.view-section {
    display: none;
}

.view-section.active-view {
    display: block;
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

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

.section-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

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

.card ul {
    margin-top: 15px;
    padding-left: 20px;
    list-style: disc;
}

.card li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p, .service-card a {
    padding: 0 20px;
}

.service-card h3 {
    padding-top: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 20px;
}

.link-cta {
    display: inline-block;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-item p {
    margin-top: 15px;
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Page content */
.page-content {
    padding: 60px 0;
    max-width: 900px;
}

.page-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-block {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.service-detail-block h2 {
    margin-bottom: 15px;
}

.service-detail-block p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.site-footer p, .site-footer a {
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}

.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-color: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

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

.mobile-call-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .main-nav .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .grid-2, .grid-3, .footer-container {
        grid-template-columns: 1fr;
    }

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

    .mobile-sticky-bar {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}
