/* Testimonials Section */

.testimonials {
    background: linear-gradient(135deg, #0a1929 0%, #1a3a52 100%);
    color: white;
    padding: 5rem 0;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-country {
    font-size: 0.85rem;
    opacity: 0.8;
}
