/* Modern Clean Reset & Base Styles */
:root {
    --primary: #0056b3;
    --primary-dark: #003f8a;
    --secondary: #2b303a;
    --accent: #28a745;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --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-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

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

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

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

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

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

.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 40px; }

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

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

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

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

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

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: #cbd5e1;
    font-size: 0.9rem;
    padding: 8px 0;
}
.top-bar .phone-link {
    color: #ffffff;
    font-weight: bold;
}

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo a {
    font-size: 1.25rem;
    color: var(--secondary);
}
.logo strong {
    color: var(--primary);
}
.main-nav ul {
    display: flex;
    gap: 30px;
}
.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-content h1 {
    font-size: 2.75rem;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.hero-trust {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 70px 0;
}
.section-header {
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Cards */
.card, .service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.card h3, .service-card h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.card p, .service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
}
.read-more {
    font-weight: 600;
    color: var(--primary);
}

/* Check lists */
.check-list {
    margin: 20px 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Badges */
.location-badge-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.badge {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--secondary);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.faq-item h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}
.cta-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background-color: #1a1e24;
    color: #94a3b8;
    padding: 60px 0 30px 0;
}
.site-footer h3, .site-footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}
.site-footer p, .site-footer li a {
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}
.site-footer li a:hover {
    color: var(--white);
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    font-size: 0.9rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    padding: 12px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.mobile-call-btn {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
}

/* Page Header */
.page-header {
    padding: 60px 0;
}
.page-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.service-detail-block {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.service-detail-block h2 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
