/* Modern Local Service Website Stylesheet */
:root {
    --primary: #0f4c81;
    --primary-dark: #0a365c;
    --accent: #f26a36;
    --text-dark: #22252a;
    --text-muted: #555d66;
    --bg-light: #f7f9fc;
    --white: #ffffff;
    --border-color: #e1e8ed;
}

* {
    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: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-phone {
    font-weight: 700;
    color: var(--white);
}

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

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

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

.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);
}

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

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

.btn-primary:hover {
    background-color: #d85726;
}

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

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

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
}

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

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

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

/* Hero */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.hero-grid {
    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(--primary-dark);
    margin-bottom: 20px;
}

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

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 70px 0;
}

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

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

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

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

/* Grids & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-cta {
    font-weight: 700;
    color: var(--accent);
}

/* Service Overview */
.service-overview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.overview-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.check-list {
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.overview-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

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

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

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

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

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-box {
    background: var(--white);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

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

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

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

/* Services Detail */
.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.service-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-row.reverse .service-info {
    order: 2;
}

.service-row.reverse .service-img {
    order: 1;
}

.service-info h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.service-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Contact Page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box, .contact-notice-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
}

.contact-notice-box {
    background: var(--white);
}

.contact-info-box h2, .contact-notice-box h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-info-box p, .contact-notice-box p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: #111822;
    color: #a0aec0;
    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 {
    color: var(--white);
    margin-bottom: 20px;
}

.site-footer p {
    margin-bottom: 15px;
}

.site-footer ul li {
    margin-bottom: 10px;
}

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

.copyright {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Sticky Call Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent);
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    text-align: center;
    padding: 14px 0;
}

.mobile-call-btn {
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    display: block;
    width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .hero-grid, .service-overview, .location-grid, .grid-3, .footer-grid, .contact-page-grid, .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
    }
    .service-row.reverse .service-info, .service-row.reverse .service-img {
        order: unset;
    }
    .main-nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
