/* ===============================
   Review Section (Finalized)
   =============================== */

/* Review Section Base */
.review-section {
    min-height: 100vh;
    padding: 60px 20px;
    background: linear-gradient(to right, #f5f5f5, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Style */
.review-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Titles */
.review-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.review-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--color-secondary);
}

/* ===============================
   Unique BB Star Rating
   =============================== */
.bb-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.bb-star {
    font-size: 32px;
    color: #ccc;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.bb-star.active {
    color: #FFD700;
    /* Gold when selected */
    transform: scale(1.2);
}

.bb-star.hover {
    color: #FFD700;
    /* Gold on hover */
    transform: scale(1.2);
}

/* ===============================
   Responsive Styles
   =============================== */
@media (max-width: 768px) {
    .review-title {
        font-size: 22px;
    }

    .review-subtitle {
        font-size: 14px;
    }

    .bb-star {
        font-size: 28px;
    }
}
