/* Modern Local Service CSS Theme */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --accent: #f59e0b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background-color: #0f172a;
    color: #e2e8f0;
    font-size: 14px;
    padding: 8px 0;
}

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

.top-bar-location, .top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.top-bar-contact a:hover {
    color: var(--accent);
}

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

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.logo-icon {
    font-size: 24px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.desktop-nav a:hover {
    color: var(--primary);
}

.nav-cta-btn {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta-btn:hover {
    background-color: var(--primary-dark) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    gap: 16px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
}

.mobile-nav-phone {
    text-decoration: none;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: #bae6fd;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-light {
    background-color: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background-color: #f8fafc;
}

.btn-full {
    width: 100%;
}

.hero-trust-indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.check-icon {
    color: #10b981;
    font-weight: 800;
}

.hero-card-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 18px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.fb-icon {
    font-size: 24px;
}

.floating-badge strong {
    display: block;
    font-size: 14px;
    color: var(--text-main);
}

.floating-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Trust Bar */
.trust-bar {
    background-color: #0f172a;
    color: white;
    padding: 40px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #38bdf8;
}

.trust-box p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

/* Section Header styling */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

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

/* Services Section */
.services-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.featured-service {
    border-top: 4px solid var(--primary);
}

.service-icon-wrap {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.service-benefits li {
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-benefits li span {
    color: #10b981;
    font-weight: bold;
}

.service-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Why Choose Us */
.why-us-section {
    padding: 90px 0;
    background-color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

.why-us-content > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reason-check {
    background-color: #e0f2fe;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.reason-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.reason-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.why-us-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* How It Works */
.how-it-works-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: white;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Local Area Context Section */
.local-area-section {
    padding: 90px 0;
    background-color: white;
}

.local-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.local-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

.local-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.address-highlight-box {
    display: flex;
    gap: 16px;
    background-color: #f0f9ff;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 24px;
    align-items: center;
    color: var(--primary);
}

.address-highlight-box strong {
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.address-highlight-box p {
    margin: 0;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
}

.local-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    font-weight: 800;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.cta-banner-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 90px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cd-icon {
    font-size: 24px;
}

.contact-detail-row strong {
    color: #0f172a;
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-detail-row p, .contact-detail-row a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
}

.contact-detail-row a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    background-color: white;
    color: var(--text-main);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 70px 0 20px;
}

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

.footer-col .footer-logo {
    color: white;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-address {
    font-weight: 600;
    color: #e2e8f0;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

.footer-phone {
    color: #38bdf8 !important;
    font-weight: 700;
    font-size: 18px !important;
    text-decoration: none;
}

.footer-hours {
    font-size: 13px;
    color: #64748b;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 13px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Sticky Call CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    padding: 12px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container, .why-us-grid, .local-area-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none;
    }
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
