/* Clean, modern, accessible local service stylesheet */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text-dark: #1e293b;
    --text-light: #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: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1140px;
    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: 80px;
}
.logo a {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}
.btn-phone {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}
.btn-phone:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--white));
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
.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: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background-color: var(--bg-light);
    text-decoration: none;
}
.btn-large {
    font-size: 1.25rem;
    padding: 16px 32px;
}

/* Sections */
.section {
    padding: 60px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.section-title {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.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);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}
.card p {
    color: var(--text-light);
}

.contextual-cta {
    margin-top: 40px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.service-detail ul {
    margin-top: 15px;
    padding-left: 20px;
    color: var(--text-light);
}
.service-detail li {
    margin-bottom: 8px;
}

/* Tags */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.tag {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Location Section */
.location-section {
    background: var(--white);
}
.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-banner h2 {
    margin-bottom: 15px;
}
.cta-banner p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    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 {
    margin-bottom: 15px;
}
.site-footer p, .site-footer li a {
    color: #94a3b8;
}
.site-footer ul {
    list-style: none;
}
.site-footer li {
    margin-bottom: 8px;
}
.sub-footer {
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 1001;
    box-shadow: 0 -4px 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;
}
.mobile-call-btn:hover {
    color: var(--white);
    text-decoration: none;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.my-5 { margin: 3rem 0; }
.lead { font-size: 1.2rem; color: var(--text-light); }

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