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

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

a {
    color: #0284c7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background: #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: 15px 20px;
}

.brand a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-primary:hover {
    background-color: #0369a1;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: #e0f2fe;
    color: #0369a1;
}

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

.btn-phone {
    background-color: #16a34a;
    color: #ffffff;
    padding: 8px 16px;
}

.btn-phone:hover {
    background-color: #15803d;
    color: #ffffff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.pexels.com/photos/8486918/pexels-photo-8486918.jpeg') no-repeat center center/cover;
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    margin-bottom: 15px;
    color: #1f2937;
}

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

.card-link {
    font-weight: 600;
    color: #0284c7;
}

/* Cost List */
.cost-list {
    max-width: 800px;
    margin: 20px auto 0;
    padding-left: 20px;
}

.cost-list li {
    margin-bottom: 12px;
    color: #4b5563;
}

/* FAQ */
.faq-item {
    max-width: 800px;
    margin: 0 auto 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 20px;
}

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

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

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info, .contact-cta-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h3, .contact-cta-box h3 {
    margin-bottom: 15px;
    color: #1f2937;
}

.contact-info p, .contact-cta-box p {
    margin-bottom: 10px;
    color: #4b5563;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 25px;
}

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

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

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

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

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

.mobile-call-btn:hover {
    color: #ffffff;
    text-decoration: none;
    background: #15803d;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .header-cta .btn-phone {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .mobile-sticky-bar {
        display: block;
    }
}
