/* Custom CSS for HVAC Landing Page */

:root {
    --primary-color: #1A2B3C;
    --secondary-color: #FFFFFF;
    --accent-color: #E05C3B;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
.header-section {
    background: var(--secondary-color);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 60px;
    width: auto;
}

.btn-call-header {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call-header:hover {
    background: #c54a2c;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: var(--secondary-color);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #bdc3c7;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cta-buttons {
    margin-top: 40px;
}

.btn-primary-cta {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-primary-cta:hover {
    background: #c54a2c;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.urgency-text {
    color: #f39c12;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.service-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.call-to-action-box {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.call-to-action-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.call-to-action-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.process-steps {
    margin-top: 40px;
    text-align: left;
}

.process-steps h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    background: var(--accent-color);
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    height: 100%;
}

.stars {
    color: #f39c12;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.customer-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.customer-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

/* Emergency CTA Section */
.emergency-cta-section {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.emergency-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.emergency-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f8f9fa;
}

.btn-emergency-cta {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-emergency-cta:hover {
    background: #f8f9fa;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.emergency-feature i {
    font-size: 1.3rem;
}

/* Footer */
.footer-section {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .emergency-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .btn-call-header {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }
    
    .call-to-action-box {
        margin-top: 40px;
    }
}

/* Animation for call buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-primary-cta:hover,
.btn-emergency-cta:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* Service Area Section */
.service-area-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.service-locations {
    padding-left: 20px;
}

.service-locations li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-locations li i {
    color: var(--accent-color);
}

.service-area-cta {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}


