:root {
    --primary-color: #1a56db;
    --primary-hover: #1e40af;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #ffffff;
    --bg-alt: #f9fafb;
    --border-color: #e5e7eb;
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hours-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.phone-link-header {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-align: center;
    transition: background-color 0.2s ease;
}

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

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

.btn-secondary {
    background-color: #e5e7eb;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #d1d5db;
    text-decoration: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.hero-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

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

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-img {
    border-radius: 0.5rem;
    width: 100%;
    object-fit: cover;
}

.section {
    padding: 3.5rem 0;
}

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

.section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

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

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

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .service-block {
        grid-template-columns: 1fr 1fr;
    }
    .service-block-reverse .service-text {
        order: 2;
    }
    .service-block-reverse .service-image {
        order: 1;
    }
}

.service-text h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cta-inline {
    font-weight: 600;
}

.service-image img {
    border-radius: 0.5rem;
    width: 100%;
}

.area-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.area-list li {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.map-link-wrap {
    margin-top: 1.25rem;
}

.contact-callout {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-callout h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.contact-callout p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.site-footer {
    background-color: var(--text-dark);
    color: #9ca3af;
    padding: 2rem 0;
    font-size: 0.875rem;
    text-align: center;
}

.site-footer a {
    color: #fff;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 0.75rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .mobile-call-bar {
        display: none;
    }
}

.mobile-call-btn {
    color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.mobile-call-btn:hover {
    text-decoration: none;
}
