
:root {
    --primary-color: #0056b3;
    --primary-dark: #003d82;
    --accent-color: #ff6b00;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e5e5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px; /* Space for mobile CTA */
}

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

a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

.main-nav a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.btn-phone {
    background-color: var(--primary-color);
    color: var(--white);
}

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

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.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;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e05e00;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    text-decoration: none;
}

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

/* Services */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    font-weight: 600;
}

/* Cost Section */
.cost-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.cost-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cost-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #555;
}

.cost-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.cost-box h3 {
    margin-bottom: 15px;
}

.cost-box p {
    margin-bottom: 20px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px 0;
}

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

.footer-info h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-info a {
    color: #fff;
}

.footer-links h4 {
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

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

.mobile-call-btn {
    display: block;
    color: var(--white);
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.mobile-call-btn:hover {
    color: var(--white);
    text-decoration: none;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .mobile-sticky-cta {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}
