/* Clean, modern local service stylesheet */
:root {
    --primary: #0f4c81;
    --primary-dark: #093358;
    --accent: #e67e22;
    --text: #2c3e50;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    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);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

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

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

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

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

.logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-phone {
    background: var(--bg-light);
    color: var(--primary);
    border: 1px solid var(--border);
}
.btn-phone:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

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

.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--border);
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

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

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #4a5568;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

.section > .container > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 40px;
    color: #4a5568;
}

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

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

.card, .service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.card h3, .service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

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

.text-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

.map-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.map-box h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}
.map-box p {
    margin-bottom: 15px;
}

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

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

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

/* CTA Banner */
.cta-banner {
    background: var(--primary-dark);
    color: var(--white);
}

.cta-banner h2, .cta-banner p {
    color: var(--white);
}
.cta-banner p {
    margin: 15px auto 30px auto;
}

/* Footer */
.site-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 20px 0;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #cbd5e0;
}
.footer-col a:hover {
    color: var(--white);
}

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

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 12px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    text-decoration: none;
}
.mobile-call-btn:hover {
    text-decoration: none;
    color: var(--white);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-content, .grid-3, .grid-2, .trust-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
}
