/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background-color: #1a2b3c;
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
}
.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-phone {
    font-weight: bold;
    color: #4da3ff;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a2b3c;
}
.main-nav {
    display: flex;
    gap: 20px;
}
.main-nav a {
    color: #4a5568;
    font-weight: 500;
}
.main-nav a:hover {
    color: #0056b3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.btn-primary {
    background-color: #0056b3;
    color: #fff;
}
.btn-primary:hover {
    background-color: #004085;
}
.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}
.btn-secondary:hover {
    background-color: #cbd5e0;
}
.btn-header {
    background-color: #0056b3;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
}
.btn-large {
    font-size: 1.2rem;
    padding: 16px 32px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    color: #1a2b3c;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 30px;
}
.hero-cta-group {
    display: flex;
    gap: 15px;
}
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 60px 0;
}
.bg-light {
    background-color: #f8fafc;
}
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.section-title h2 {
    font-size: 2rem;
    color: #1a2b3c;
    margin-bottom: 15px;
}
.section-title p {
    color: #4a5568;
    font-size: 1.1rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.align-center {
    align-items: center;
}

/* Cards */
.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.card h3 {
    color: #1a2b3c;
    margin-bottom: 15px;
    font-size: 1.25rem;
}
.card p {
    color: #4a5568;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.service-card h3 {
    color: #1a2b3c;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
}
.text-link {
    color: #0056b3;
    font-weight: bold;
}

/* Contextual CTA Box */
.contextual-cta-box {
    margin-top: 40px;
    background: #1a2b3c;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contextual-cta-box p {
    font-size: 1.1rem;
}

/* Lists */
.check-list {
    margin-top: 20px;
}
.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #4a5568;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

/* Map / Info Box */
.map-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.map-box p {
    margin-bottom: 15px;
    color: #4a5568;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.faq-item h3 {
    font-size: 1.15rem;
    color: #1a2b3c;
    margin-bottom: 10px;
}
.faq-item p {
    color: #4a5568;
}

/* CTA Banner */
.cta-banner {
    background: #0056b3;
    color: #fff;
}
.cta-banner h2 {
    color: #fff;
    margin-bottom: 15px;
}
.cta-banner p {
    color: #e2e8f0;
    margin-bottom: 30px;
    font-size: 1.15rem;
}

/* Footer */
.site-footer {
    background: #1a2b3c;
    color: #cbd5e0;
    padding: 50px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.site-footer h3, .site-footer h4 {
    color: #fff;
    margin-bottom: 15px;
}
.site-footer p {
    margin-bottom: 10px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .grid-3, .grid-2, .faq-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .contextual-cta-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .mobile-sticky-bar {
        display: block;
    }
}
