/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 60px 0 80px;
    background: #fff;
}

.reviews-header {
    margin-bottom: 40px;
}

.company-name {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.company-address {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.rating-display {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-score {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
}

.rating-stars-large {
    display: flex;
    gap: 4px;
}

.rating-stars-large i {
    color: #fbbc04;
    font-size: 20px;
}

.review-count {
    font-size: 16px;
    color: var(--text-gray);
}

.google-logo {
    height: 24px;
    margin-left: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--white);
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

.review-card:hover {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.reviewer-role {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.review-menu {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.review-menu:hover {
    background: #f1f3f4;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.review-stars i {
    color: #fbbc04;
    font-size: 14px;
}

.review-time {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 8px;
}

.review-badge {
    background: #1a73e8;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #3c4043;
    margin: 0 0 12px 0;
}

.review-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.action-btn:hover {
    background: #f1f3f4;
}

.action-btn i {
    font-size: 16px;
}

.more-reviews {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
}