/* Modern Clean Local Service Theme */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --secondary: #0f172a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --accent: #ea580c;
}

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

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

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

ul {
    list-style: none;
}

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--secondary);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-phone {
    color: #38bdf8;
    font-weight: bold;
}

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

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

.logo a {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.location-tag {
    color: var(--primary);
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

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

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

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

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

.btn-phone {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
}

.btn-phone:hover {
    background-color: #dcfce7;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f0f9ff, var(--bg-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;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-trust-indicators {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
}

/* General Layout & Sections */
.section-padding {
    padding: 80px 0;
}

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

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

.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff;
}

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

.section-header h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

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

.card, .service-card, .map-info-box, .service-areas-list, .contact-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card h3, .service-card h3, .map-info-box h3, .service-areas-list h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.card p, .service-card p, .map-info-box p, .service-areas-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
}

.inline-cta-box {
    margin-top: 50px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 30px;
    border-radius: 8px;
}

.inline-cta-box p {
    font-weight: 600;
    color: #166534;
    margin-bottom: 15px;
}

/* Trust List */
.check-list {
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.trust-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

.area-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.area-tags li {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

/* Page Header */
.page-header-section {
    background: #f0f9ff;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header-section h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.page-header-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-block {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
}

.phone-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

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

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

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p, .footer-col li {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Mobile Sticky Call Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

/* Utilities */
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }
.mt-5 { margin-top: 40px; }
.text-muted { color: var(--text-muted); }

/* Responsive Media Queries */
@media(max-width: 768px) {
    .main-nav {
        display: none; /* Can be expanded with JS menu toggle if needed */
    }
    .hero-container, .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
