/* Minimalist, Clean Local Service CSS */
:root {
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
}

* {
    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);
    padding-bottom: 60px;
}

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

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

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

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

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

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

.main-nav a {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.btn-phone {
    background: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-light), 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.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
}

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

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

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

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

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

.section {
    padding: 60px 0;
}

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

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

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
}

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

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

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

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

.card h3, .step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p, .step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-card {
    position: relative;
}

.step-num {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contextual-cta {
    margin-top: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contextual-cta p {
    font-weight: 500;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.area-tag {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    margin-bottom: 24px;
}

.contact-details li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-details strong {
    color: var(--text-dark);
}

.contact-cta-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-cta-box p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 50px 0 20px 0;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-col a {
    color: #9ca3af;
}

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

.sub-footer {
    border-top: 1px solid #1f2937;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.mobile-call-btn {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 0;
}

@media (max-width: 900px) {
    .hero-grid, .grid-2, .grid-3, .grid-4, .contact-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    .contextual-cta {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}