/* 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: #333333;
    line-height: 1.6;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 60px 0;
}

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

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

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

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

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #1e293b;
}

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

.btn-phone {
    background-color: #0284c7;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 32px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    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.15rem;
    color: #0f172a;
}

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

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

.main-nav a:hover {
    color: #0284c7;
}

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

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

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

.hero-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Services */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 10px;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

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

.service-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    padding: 20px 20px 10px 20px;
}

.service-card p {
    color: #475569;
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
}

/* Cost Guide */
.content-block h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 20px;
}

.content-block p {
    margin-bottom: 16px;
    color: #475569;
}

.content-block ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: disc;
    color: #475569;
}

.content-block li {
    margin-bottom: 10px;
}

.inline-cta {
    margin-top: 30px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.contact-info h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 15px;
}

.contact-info p {
    color: #475569;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    color: #333333;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.contact-card p {
    color: #475569;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    font-size: 0.9rem;
    margin-bottom: 60px; /* space for mobile bar */
}

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

.footer-col p {
    margin-bottom: 6px;
}

.footer-col a {
    color: #38bdf8;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hero-container, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 40px 0;
    }
    .mobile-sticky-bar {
        display: block;
    }
    .site-footer {
        margin-bottom: 70px;
    }
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
