/* Modern Clean Static Local Service Stylesheet */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --text: #1e293b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    padding-bottom: 60px; /* Space for sticky mobile bar */
}

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

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

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 0.875rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.phone-link {
    font-weight: bold;
    color: var(--primary-dark);
    text-decoration: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

.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: #0f172a;
}

.hero-sub {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: #475569;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

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

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

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

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #475569;
}

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

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

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

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

.cta-banner {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.cta-banner h2, .cta-banner h3 {
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 25px;
    color: #475569;
}

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer h3, .site-footer h4 {
    color: white;
    margin-bottom: 15px;
}

.site-footer ul {
    list-style: none;
}

.site-footer a {
    color: #94a3b8;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 0.875rem;
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0284c7;
    padding: 12px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
}

.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.text-center { text-align: center; }

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
    }
    .mobile-sticky-bar {
        display: block;
    }
}
