/* =============================================
   SECTION 5 — TESTIMONIALS
   ============================================= */

.testimonials-section {
    background: #f9f8ff;
    padding: 70px 0;
}

/* Trust bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 24px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(43, 10, 125, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-val {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
}

/* Testimonial cards grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0eefc;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(43, 10, 125, 0.1);
}

/* Student profile */
.student-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.student-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(43, 10, 125, 0.15);
}

.student-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.student-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Outcome badge */
.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
    margin-bottom: 14px;
}

.outcome-badge i { font-size: 0.85rem; }

/* Quote text */
.testimonial-quote {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 14px;
}

/* Stars */
.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Illusion card (count card) */
.illusion-card {
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.avatar-stack {
    display: flex;
    margin-bottom: 16px;
}

.stack-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
    margin-left: -12px;
}

.stack-img:first-child { margin-left: 0; }

.illusion-count {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.illusion-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* Video testimonial */
.video-testimonial-section {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
}

.video-thumb {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 0 10px rgba(43, 10, 125, 0.2);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #1e0758;
}

/* Trust statement */
.trust-statement-box {
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 1px dashed rgba(43, 10, 125, 0.2);
}

.trust-statement {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar { gap: 20px; }
}

@media (max-width: 640px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
