/* Hero Section */
.testimonials-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: white;
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-stars {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-rating-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonial Cards */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(71, 159, 248, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #357abd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.3rem;
}

.testimonial-location {
    color: var(--secondary-color);
    margin: 5px 0;
    font-size: 0.95rem;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
    font-size: 2rem;
    }

    .hero-subtitle {
    font-size: 1.1rem;
    }

    .testimonial-card {
    padding: 25px;
    }

    .testimonial-header {
    flex-direction: column;
    text-align: center;
    }

    .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 15px;
    }
}