/* =====================================================
   TESTIMONIALS PAGE
   Uses same design system as home page
   Brand color: rgb(6,156,212)
   ===================================================== */

.testimonials-section {
    padding: 90px 20px;
    background: #ffffff;
}

/* ---------- HEADER ---------- */
.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.testimonials-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.testimonials-header p {
    color: #475569;
    font-size: 16px;
}

/* ---------- LIST ---------- */
.testimonials-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* ---------- CARD (same feel as home-card) ---------- */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 28px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(
            90deg,
            rgb(6,156,212),
            #0ea5e9
    );
    border-radius: 18px 18px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(6,156,212,0.25);
}

/* ---------- TEXT ---------- */
.testimonial-text {
    font-style: italic;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-author {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* ---------- FORM ---------- */
.testimonial-form-wrapper {
    max-width: 620px;
    margin: 80px auto 0;
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.testimonial-form-wrapper h3 {
    text-align: center;
    margin-bottom: 26px;
    font-size: 20px;
}

.testimonial-form .form-group {
    margin-bottom: 18px;
}

.testimonial-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-form input,
.testimonial-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: rgb(6,156,212);
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}
