/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
    padding-bottom: 60px; /* Space for mobile sticky CTA */
}

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

ul {
    list-style: none;
}

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

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

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

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

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

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

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

.btn-phone {
    background: #0b2545;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero */
.hero-section {
    background: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.85)), url('https://images.pexels.com/photos/8482890/pexels-photo-8482890.jpeg') no-repeat center center/cover;
    color: #ffffff;
    padding: 80px 0;
    text-align: left;
}

.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-bottom: 30px;
    color: #e2e8f0;
}

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

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

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

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.section h2 {
    font-size: 2rem;
    color: #0b2545;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

.card p {
    color: #4b5563;
    margin-bottom: 20px;
}

.card-link {
    color: #0b2545;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

/* CTA Banner */
.cta-banner {
    background: #0b2545;
    color: #ffffff;
    padding: 50px 0;
}

.cta-banner h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-banner p {
    color: #cbd5e1;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

/* FAQ */
.faq-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

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

.faq-item p {
    color: #4b5563;
}

/* Business Details List */
.business-details-list {
    margin-top: 15px;
}

.business-details-list li {
    margin-bottom: 10px;
    color: #4b5563;
}

.business-details-list a {
    color: #0b2545;
    font-weight: 600;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* Footer */
.site-footer {
    background: #091c33;
    color: #94a3b8;
    padding: 50px 0 20px 0;
}

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

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

.footer-col p, .footer-col li a {
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

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

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

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