/* 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;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

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

.logo a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2c59;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 500;
    color: #555555;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #0f2c59;
}

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

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

.btn-primary:hover {
    background-color: #b45309;
}

.btn-secondary {
    background-color: #0f2c59;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #0c2244;
}

.btn-outline {
    border: 2px solid #0f2c59;
    color: #0f2c59;
    padding: 10px 20px;
}

.btn-outline:hover {
    background-color: #0f2c59;
    color: #ffffff;
}

.btn-phone {
    background-color: #0f2c59;
    color: #ffffff;
    padding: 10px 18px;
    font-size: 0.95rem;
}

.btn-large {
    font-size: 1.1rem;
    padding: 14px 28px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    color: #0f2c59;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 30px;
}

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

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

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

.bg-light {
    background-color: #f8fafc;
}

.section h2 {
    font-size: 2rem;
    color: #0f2c59;
    text-align: center;
    margin-bottom: 15px;
}

.section-lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #4b5563;
    font-size: 1.05rem;
}

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

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

/* Cards */
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.card h3 {
    color: #0f2c59;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card p {
    color: #4b5563;
    font-size: 0.95rem;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    color: #0f2c59;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-content p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-list {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #4b5563;
    font-size: 0.9rem;
}

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

/* Coverage Section */
.coverage-section {
    text-align: center;
}

.cta-banner {
    margin-top: 30px;
    background: #0f2c59;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-banner p {
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    color: #0f2c59;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4b5563;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section .grid-2 {
    align-items: stretch;
}

.contact-info, .contact-prompt {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3, .contact-prompt h3 {
    color: #0f2c59;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info p, .contact-prompt p {
    color: #4b5563;
    margin-bottom: 12px;
}

.map-link-wrap {
    margin-top: 15px;
}

/* Footer */
.site-footer {
    background-color: #0f2c59;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p, .footer-col li a {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f2c59;
    padding: 12px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .grid-3, .faq-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .cta-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
}
