/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-eyebrow {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-headline {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.1s backwards;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ===== Who We Help Section ===== */
.who-we-help {
    padding: 80px 0;
    background-color: var(--color-cream);
    text-align: center;
}

.who-we-help h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 35px;
}

.who-we-help-list {
    list-style: none;
    max-width: 650px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.who-we-help-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.5;
}

.who-we-help-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--color-white);
}

.testimonials h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: var(--color-off-white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    border-left: 4px solid var(--color-primary-light);
}

.testimonial-card blockquote p {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: normal;
    font-weight: 500;
}

/* ===== Testimonial Banner ===== */
.testimonial-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.testimonial-banner blockquote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-banner blockquote p {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    font-style: italic;
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-eyebrow {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .who-we-help h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonial-banner blockquote p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-eyebrow {
        font-size: 1.6rem;
    }

    .hero-headline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .who-we-help,
    .testimonials {
        padding: 60px 0;
    }
}
