/* testimonials.css */

/* PAGE HEADER */
.testimonials-header {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e3a8a; /* Blue-700 */
}

.testimonials-header p {
    font-size: 1.125rem;
    color: #4b5563; /* Gray-700 */
    max-width: 65ch;
    margin: 0 auto;
}

/* TESTIMONIAL CARDS GRID */
.testimonials-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}



/* INDIVIDUAL CARD */
.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* CLIENT INFO */
.testimonial-client {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.testimonial-client img {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-client h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.testimonial-rating {
    color: #facc15; /* Yellow-400 */
    font-size: 0.875rem;
}

/* TESTIMONIAL TEXT */
.testimonial-card p {
    font-style: italic;
    color: #4b5563; /* Gray-600 */
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* CLIENT REGION */
.client-region {
    font-size: 0.875rem;
    color: #6b7280; /* Gray-500 */
    font-weight: 500;
}

/* CTA SECTION */
.testimonials-cta {
    background-color: #1e3a8a; /* Blue-700 */
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.125rem;
    max-width: 60ch;
    margin: 0 auto 1.5rem auto;
}

.testimonials-cta .cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonials-cta .cta-button:hover {
    background-color: #e5e7eb; /* Gray-100 */
}


/* ==========================
   Testimonials Responsive
========================== */

/* Tablets / medium screens */
@media (max-width: 768px) {
    .testimonials-header h1 {
        font-size: 2rem;
    }
    .testimonials-header p {
        font-size: 1rem;
    }
    .testimonials-cards {
        grid-template-columns: 1fr;
    }
    .testimonial-card p {
        font-size: 0.95rem;
    }
    .testimonials-cta h2 {
        font-size: 1.75rem;
    }
    .testimonials-cta p {
        font-size: 1rem;
    }
    .testimonials-cta .cta-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Small phones / very small screens */
@media (max-width: 480px) {
    .testimonials-header h1 {
        font-size: 1.75rem;
    }
    .testimonials-header p {
        font-size: 0.95rem;
    }
    .testimonial-card p {
        font-size: 0.9rem;
    }
    .testimonials-cta h2 {
        font-size: 1.5rem;
    }
    .testimonials-cta p {
        font-size: 0.95rem;
    }
    .testimonials-cta .cta-button {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}
