/* === Testimonials === */
.testimonials {
    padding: 6rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(26, 58, 26, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 168, 67, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--primary);
}

.author-role {
    display: block;
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === CTA Section === */
.cta {
    position: relative;
    padding: 6rem 0;
    background-image: url('hero-bg.jpg');
    /* Use same bg or different */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 15, 0.85);
    /* Deep green overlay */
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}