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

:root {
    --primary-color: #c0392b;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

body {
    background-color: #fff;
}

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

/* Header & Navigation */
.navbar {
    background-color: var(--dark-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

.phone-button {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.phone-link {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.btn-secondary {
    background-color: var(--dark-color);
    color: white;
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cta-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.cta-card p {
    margin-bottom: 20px;
    color: #666;
}

/* Quick Form */
.quick-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-form input,
.quick-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.quick-form textarea {
    resize: vertical;
    min-height: 120px;
}

.g-recaptcha {
    margin: 15px 0;
}

/* Services Section */
.services-preview,
.services-detailed {
    padding: 60px 20px;
}

.services-preview {
    background-color: #f8f9fa;
}

.services-preview h2,
.services-detailed h2,
.page-header h1,
.testimonials h2,
.faq h2,
.about-content h2,
.service-area h2,
.contact-section h2,
.map-section h2,
.why-contact-wenatchee h2 {
    color: var(--dark-color);
    margin-bottom: 40px;
    font-size: 36px;
    text-align: center;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Service Details */
.service-detail {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
    font-size: 24px;
}

.service-detail p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Service Area */
.service-area {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 60px 20px;
    text-align: center;
}

.service-area p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.cities-list span {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card p {
    margin-bottom: 15px;
    color: #555;
    font-style: italic;
}

.testimonial-card .author {
    color: var(--primary-color);
    font-weight: bold;
    font-style: normal;
}

/* FAQ */
.faq {
    padding: 60px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-item summary {
    background-color: var(--light-color);
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--dark-color);
    transition: background-color 0.3s;
}

.faq-item summary:hover {
    background-color: #d5dbdb;
}

.faq-item p {
    padding: 20px;
    color: #555;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left;
}

.contact-method {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-method p {
    color: #666;
}

.phone-link-large {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    margin: 10px 0;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 20px;
}

.contact-form-box p {
    margin-bottom: 20px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-box {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 700px;
    text-align: center;
}

.thank-you-box h1 {
    color: var(--success-color);
    font-size: 42px;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.thank-you-box p {
    color: #666;
    margin-bottom: 20px;
}

.thank-you-next-steps,
.thank-you-contact,
.thank-you-info {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.thank-you-next-steps h2,
.thank-you-contact h3,
.thank-you-info h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.thank-you-next-steps ol {
    margin-left: 20px;
}

.thank-you-next-steps li {
    margin-bottom: 10px;
    color: #666;
}

.thank-you-box .btn {
    margin-top: 20px;
}

/* About Content */
.about-content {
    padding: 60px 20px;
}

.about-section {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 5px;
}

.about-section h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.benefit {
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit p {
    color: #555;
    font-size: 14px;
}

.commitment-list {
    list-style: none;
    padding-left: 0;
}

.commitment-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.commitment-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a93226 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Why Contact Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.reason-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
}

.reason-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.reason-card p {
    color: #666;
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-box {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-preview h2,
    .services-detailed h2,
    .page-header h1,
    .testimonials h2,
    .faq h2,
    .about-content h2,
    .service-area h2,
    .contact-section h2,
    .map-section h2,
    .why-contact-wenatchee h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .phone-button {
        padding: 8px 15px;
    }

    .cta-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .contact-method h3 {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
}
