/* Premium Testimonials Section - DARK MODE */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), transparent);
    z-index: 1;
}

.testimonials-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    display: inline-block;
    color: #fbbf24;
    /* Gold */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.testimonials-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.2;
}

.testimonials-title span {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.testimonials-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 182, 212, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.review-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(30, 41, 59, 0.6);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: rgba(148, 163, 184, 0.1);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #fbbf24;
    /* Yellow Stars */
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 13px;
    color: #22c55e;
    /* Green for verified */
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.verified-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        font-size: 32px;
    }
}