/* Testimonials Section Styles */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    font-size: 1.2rem;
    color: var(--gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), rgba(10, 37, 64, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.author-company {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animation Delays */
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-author {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
}



