/* Reviews Section Styling */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
    text-align: center;
}

.reviews-header {
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    /* Navy */
    margin-bottom: 10px;
}

.reviews-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    gap: 10px;
}

.google-logo {
    font-weight: bold;
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 1.2rem;
}

.google-blue {
    color: #4285F4;
}

.google-red {
    color: #EA4335;
}

.google-yellow {
    color: #FBBC05;
}

.google-green {
    color: #34A853;
}

.rating-score {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.stars {
    color: #FBBC05;
    /* Google Yellow */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-stars {
    color: #FBBC05;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    /* Push bottom elements */
}

.google-link-btn {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    color: #4285F4;
    font-weight: 600;
    border: 1px solid #4285F4;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.google-link-btn:hover {
    background: #4285F4;
    color: white;
}