/* =========================================
   HOMEPAGE ENHANCEMENTS - CleanFlo inspired
   ========================================= */

/* Header Top Bar with Phone Number */
.header-top-bar {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: var(--white-color);
    padding: 12px 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.header-info i {
    color: rgba(255, 255, 255, 0.9);
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-phone-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-phone-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.header-phone-cta i {
    font-size: 1.1rem;
}

.phone-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-number {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--white-color);
}

/* Hero with Integrated Form */
.hero-with-form {
    background: var(--gradient-blue);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

.hero-with-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Promo Badge */
.promo-badge {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.promo-badge i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.promo-text {
    display: flex;
    flex-direction: column;
    color: var(--white-color);
}

.promo-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.promo-sub {
    font-size: 0.85rem;
    opacity: 0.95;
}

/* Hero Form Card */
.hero-form-wrapper {
    position: sticky;
    top: 100px;
}

.hero-form-card {
    background: var(--white-color);
    border-radius: 0 0 12px 12px;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.hero-form .form-group {
    margin-bottom: 20px;
}

.hero-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit-hero {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-blue);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-submit-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Zones with Checkmarks */
.zones-checkmarks {
    padding: 80px 0;
    background-color: var(--light-color);
}

.zones-grid-check {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.zone-column h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.zone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zone-list li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.zone-list i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.zones-cta {
    text-align: center;
    margin-top: 40px;
}

.zones-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 50px 0;
}

.testimonial-card {
    background: var(--light-color);
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-color);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-blue);
    color: var(--white-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    color: var(--white-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white-color);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form-wrapper {
        position: relative;
        top: 0;
    }
    
    .zones-grid-check {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-phone-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .zones-grid-check {
        grid-template-columns: 1fr;
    }
    
    .hero-with-form {
        padding: 100px 0 60px;
    }
    
    .header-info {
        font-size: 0.85rem;
    }
    
    .phone-label {
        display: none;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

