/* Google Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonials-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: bold;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.google-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4285f4;
    border-radius: 50%;
    flex-shrink: 0;
}

.google-icon i {
    color: white;
    font-size: 1rem;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.btn-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.4);
    color: white;
}

.btn-testimonials i {
    font-size: 1.2rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0;
    }
    
    .testimonials-header .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .customer-info {
        gap: 12px;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .customer-details h4 {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonials-header .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-header .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .btn-testimonials {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .rating-stars i {
        font-size: 1.3rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
}