/* Reset and Base Styles */
* {
    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: #333;
    line-height: 1.6;
    background-color: #fff;
    padding-bottom: 60px; /* Space for sticky mobile bar */
}
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a365d;
}
.main-nav ul {
    display: flex;
    gap: 20px;
}
.main-nav a {
    color: #4a5568;
    font-weight: 500;
}
.main-nav a:hover {
    color: #2b6cb0;
}
.btn-phone {
    background: #2b6cb0;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-phone:hover {
    background: #2c5282;
}
.header-cta {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('https://images.pexels.com/photos/8482485/pexels-photo-8482485.jpeg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e2e8f0;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}
.btn-primary {
    background: #3182ce;
    color: #fff;
}
.btn-primary:hover {
    background: #2b6cb0;
}
.btn-secondary {
    background: #edf2f7;
    color: #2d3748;
}
.btn-secondary:hover {
    background: #e2e8f0;
}
.btn-large {
    font-size: 1.2rem;
    padding: 16px 32px;
}

/* Sections */
.section {
    padding: 60px 0;
}
.bg-light {
    background-color: #f7fafc;
}
.section h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 15px;
    text-align: center;
}
.section > .container > p, .section-lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #4a5568;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.card h3 {
    margin-bottom: 15px;
    color: #2d3748;
}
.card ul {
    padding-left: 20px;
    list-style: disc;
}
.card li {
    margin-bottom: 10px;
    color: #4a5568;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-card-body h3 {
    margin-bottom: 12px;
    color: #2d3748;
}
.service-card-body p {
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}
.text-link {
    color: #3182ce;
    font-weight: 600;
}
.text-link:hover {
    text-decoration: underline;
}

/* Contextual CTA */
.contextual-cta {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    margin-top: 30px;
}
.contextual-cta p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #2b6cb0;
}
.center-text {
    text-align: center;
}

/* Location Details */
.location-details {
    text-align: center;
    margin-bottom: 25px;
}
.location-details p {
    margin-bottom: 8px;
    color: #4a5568;
}
.map-container {
    text-align: center;
}

/* FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}
.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d3748;
}
.faq-item p {
    color: #4a5568;
}

/* Final CTA */
.final-cta-section {
    background: #1a365d;
    color: #fff;
}
.final-cta-section h2 {
    color: #fff;
}
.final-cta-section p {
    color: #cbd5e0;
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 50px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-grid h3, .footer-grid h4 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-grid p, .footer-grid li {
    margin-bottom: 10px;
}
.footer-grid a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #1f2937;
    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: #1a365d;
    padding: 12px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.mobile-call-btn {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .header-cta {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
