/* Modern Reviews Section - Premium Light Theme */

.modern-reviews-section {
    position: relative;
    background: #ffffff; /* Clean white background */
    overflow: hidden;
    color: #111;
    padding: 100px 0;
    min-height: 100vh;
}

.reviews-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03); /* Very subtle light gray */
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -1vw;
}

.reviews-container {
    position: relative;
    z-index: 2;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-orbit-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.review-card-modern {
    position: absolute;
    width: 420px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    padding: 45px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease, border-color 0.4s ease;
    opacity: 0;
    cursor: grab;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.review-card-modern:active {
    cursor: grabbing;
}

.review-card-modern.active {
    opacity: 1;
    background: #ffffff;
    border-color: rgba(255, 77, 148, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.review-card-modern .quote-icon {
    font-size: 40px;
    color: #ff4d94;
    margin-bottom: 20px;
    opacity: 0.2;
}

.review-card-modern .review-text {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.review-card-modern .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card-modern .author-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-card-modern .author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-card-modern .author-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.review-card-modern .author-details span {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.review-rating-modern {
    margin-top: 10px;
    display: flex;
    gap: 4px;
    color: #ffb800;
    font-size: 13px;
}

/* Scroll Indicators */
.reviews-progress-bar {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 3px;
    background: #f0f0f0;
    border-radius: 10px;
    z-index: 10;
    overflow: hidden;
}

.reviews-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #ff4d94, #f99d4e);
    border-radius: 10px;
}

/* Decorative elements */
.review-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.orb-1 { width: 500px; height: 500px; background: #ff4d94; top: -20%; left: -10%; }
.orb-2 { width: 600px; height: 600px; background: #4d94ff; bottom: -20%; right: -10%; }

@media (max-width: 768px) {
    .review-card-modern {
        width: 85%;
        padding: 30px;
    }
}
