/* testimonials-footer.css - Testimonials, CTA & Footer Sections */

/* Testimonials Section */
.testimonials-section {
    padding: 100px 40px;
    background: var(--warm-white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(124, 132, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--cream) 100%);
    transform: scale(1.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(124, 132, 113, 0.15);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.quote-mark {
    font-size: 4rem;
    color: var(--sage);
    line-height: 1;
    margin-bottom: -20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--olive);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    color: var(--deep-olive);
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 120px 40px;
    background: var(--deep-olive);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 30%, rgba(168, 183, 158, 0.04) 50%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    color: var(--warm-white);
    margin-bottom: 20px;
    font-weight: 300;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 60px 40px 30px;
    background: var(--warm-white);
    border-top: 1px solid var(--soft-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--olive);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--deep-olive);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--olive);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--soft-gray);
    color: var(--text-light);
    font-size: 0.9rem;
}