/* ========================================
   TESTIMONIALS & GOOGLE REVIEWS STYLES
   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.google-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #444;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars svg {
    color: #fbbc05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.review-rating svg {
    color: #fbbc05;
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.google-icon-card {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 20px;
    height: 20px;
}

/* References Page Specific */
.references-page-header {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #04223e 0%, #0a4275 100%);
    text-align: center;
    color: #ffffff;
}

.references-page-header h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.references-grid {
    padding: 100px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .references-page-header h1 {
        font-size: 2.5rem;
    }
}