/* =========================================================================
   Khối: Review khách hàng (trang dịch vụ)
   ========================================================================= */

.service-customer-reviews {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 193, 7, 0.12), transparent 55%),
        linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-customer-reviews__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-yellow, #ffc107);
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.service-customer-reviews__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    background: linear-gradient(90deg, #fff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-customer-reviews__lead {
    color: #8a8a8a;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.service-customer-reviews__card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.35rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #161616 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-customer-reviews__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 193, 7, 0.25);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 193, 7, 0.08);
}

.service-customer-reviews__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.85rem;
    color: #ffc107;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.35));
}

.service-customer-reviews__message {
    flex: 1;
    margin: 0;
    color: #c8c8c8;
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
}

.service-customer-reviews__message::before {
    content: "“";
    color: rgba(255, 193, 7, 0.45);
    font-size: 1.4rem;
    line-height: 0;
    margin-right: 0.15rem;
    vertical-align: -0.15em;
}

.service-customer-reviews__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-customer-reviews__avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 193, 7, 0.35);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.service-customer-reviews__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.service-customer-reviews__name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-customer-reviews__date {
    font-size: 0.8rem;
    color: #6c6c6c;
}
