/* =================================================================
   TESTIMONIALS SECTION — PCB RETRO THEME (WITH VARIABLES)
   ================================================================= */

.testimonials-section {
    background-color: var(--x-dark); /* PCB deep green background */
    padding: 100px 0;

    /* Gold trace divider */
    border-bottom: 1px solid rgba(212, 175, 55, 0.10);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--x-text);
    margin-bottom: 15px;

    /* Soft CRT glow */
    text-shadow: 0 0 8px rgba(41, 255, 65, 0.12);
}

.testimonial-header p {
    font-size: 16px;
    color: var(--x-text-muted);
    font-weight: 300;
}

/* --- GRID LAYOUT --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
    background-color: var(--x-dark-light); /* PCB inner panel */
    border: 1px solid var(--x-border);
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--x-blue); /* Gold hover border */
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); /* Gold aura */
}

/* --- CARD HEADER (Avatar + Info) --- */
.testi-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;

    /* PCB grey filter for sophistication */
    filter: grayscale(100%);
    border: 2px solid rgba(255,255,255,0.10);
}

.testi-info {
    display: flex;
    flex-direction: column;
}

.testi-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--x-text);
    margin: 0 0 5px 0;
}

.testi-info span {
    font-size: 13px;
    color: var(--x-text-muted);
    font-weight: 400;
}

/* --- TESTIMONIAL BODY TEXT --- */
.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--x-text); /* Slightly brighter for readability */
    opacity: 0.85;
    font-style: italic;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media only screen and (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }
}
