/* Reset and 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: #222;
    background-color: #fcfcfc;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

a {
    color: #0b5cab;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

/* Typography & Utility */
h1, h2, h3 {
    line-height: 1.25;
    color: #111;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.text-center { text-align: center; }
.margin-top-md { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background-color: #0b5cab;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #08437d;
    text-decoration: none;
}

.btn-secondary {
    background-color: #28a745;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1f8236;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #0b5cab;
    color: #0b5cab;
}

.btn-outline:hover {
    background-color: #0b5cab;
    color: #ffffff;
    text-decoration: none;
}

.btn-header {
    background-color: #28a745;
    color: #fff;
    padding: 0.5rem 1rem;
}

.btn-lg {
    padding: 0.8rem 1.6rem;
    font-size: 1.05rem;
}

/* Top Bar */
.top-bar {
    background-color: #111827;
    color: #e5e7eb;
    font-size: 0.875rem;
    padding: 0.4rem 0;
}

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

.top-bar-phone {
    color: #60a5fa;
    font-weight: 600;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

.main-nav a {
    color: #374151;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.subheading {
    display: inline-block;
    color: #0b5cab;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background-color: #f3f4f6;
}

.section-title {
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
}

/* Grid layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.check-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Content Box & Banner */
.content-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.cta-banner {
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-banner h3 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

/* Accordion FAQs */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: "+";
    font-size: 1.2rem;
}

.accordion-header.active::after {
    content: "-";
}

.accordion-content {
    display: none;
    padding-bottom: 1rem;
    color: #4b5563;
}

/* Map Container */
.map-placeholder {
    background-color: #e2e8f0;
    border: 2px dashed #cbd5e1;
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 6px;
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 3rem 0 1rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 1rem;
}

/* Mobile Sticky Call Bar */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #28a745;
    z-index: 2000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-call-button {
    display: block;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    padding: 0.9rem;
    font-size: 1.1rem;
    text-decoration: none;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-grid, .grid-2 {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .mobile-call-bar {
        display: block;
    }
}