
:root {
    --primary-color: #0b5ed7;
    --primary-dark: #0a4baf;
    --accent-color: #d9534f;
    --text-color: #212529;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    padding-bottom: 60px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-phone {
    background-color: #198754;
    color: #fff;
}

.btn-phone-light {
    background-color: #fff;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Hero */
.hero {
    padding: 40px 0;
    background-color: #f1f5f9;
}

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

.badge {
    background: #e2e8f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 15px 0;
}

.hero-actions {
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.trust-bullets {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #475569;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.img-caption {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 5px;
}

/* Urgent Banner */
.urgent-banner {
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
    padding: 25px 15px;
}

.urgent-banner h2 {
    margin-bottom: 10px;
}

.urgent-banner p {
    margin-bottom: 15px;
}

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

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);

}

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

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin-bottom: 10px;
}

.card-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.card-link {
    font-weight: bold;
}

/* Cost & CTA Box */
.cta-box {
    margin-top: 30px;
    background: #eef2ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.cta-box h3 {
    margin-bottom: 10px;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-content {
    display: none;
    padding: 0 15px 15px;
    font-size: 0.95rem;
}

/* Contact & Form */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-form {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-status {
    margin-top: 10px;
    font-weight: bold;
    color: #198754;
}

/* Footer */
.site-footer {
    background: #1e293b;
    color: #f8fafc;
    padding: 40px 0 20px;
}

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

.site-footer a {
    color: #93c5fd;
}

.copyright {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.btn-phone-sticky {
    display: block;
    width: 100%;
    background: #198754;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
}
