/* viewers */
.reviews {
    position: relative;
    overflow: hidden;
}
.reviews::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: #003fff;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    z-index: -1;
}
.reviews::after {
    content: "";
    position: absolute;
    bottom: 200px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #1100ff;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
    z-index: -1;
}
@media (max-width: 992px) {
    .reviews::before {
        width: 180px;
        height: 180px;
        left: -60px;
        top: 40%;
        filter: blur(100px);
    }
    .reviews::after {
        width: 220px;
        height: 220px;
        right: -60px;
        bottom: 150px;
        filter: blur(120px);
    }
}
@media (max-width: 576px) {
    .reviews::before {
        width: 120px;
        height: 120px;
        left: -40px;
        top: 50%;
        filter: blur(80px);
    }
    .reviews::after {
        width: 160px;
        height: 160px;
        right: -40px;
        bottom: 100px;
        filter: blur(90px);
    }
}
.reviews-col {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.4s ease;
}
.reviews-col:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 25px #0040ff6f;
    border-color: rgba(0, 150, 255, 0.7);
}
.reviews-col .testi-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* why choose us */
.why {
    position: relative;
    background: url("../img/backgrounds/94.png") no-repeat center top;
    background-size: cover;
    width: 100%;
    height: auto;
    z-index: 1;
    padding: 100px 0 120px 0;
    margin-bottom: -90px;
}
.why ul {
    font-size: 18px;
}
.why .why-chara::before {
    position: absolute;
    content: "";
    background: radial-gradient(circle, #003fff, #003fff00 70%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.why .why-chara {
    z-index: 10;
    width: 500px;
    height: 500px;
    position: relative;
}
.why .why-chara img {
    z-index: 10;
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
/* Tablet (<=992px) */
@media screen and (max-width: 992px) {
    .why .why-chara {
        width: 400px;
        height: 400px;
    }
    .why .why-chara::before {
        width: 380px;
        height: 380px;
    }
}
/* Mobile sedang (<=576px) */
@media screen and (max-width: 576px) {
    .why .why-chara {
        width: 320px;
        height: 320px;
    }
    .why .why-chara::before {
        width: 300px;
        height: 300px;
    }
}
/* Mobile kecil (<=400px) */
@media screen and (max-width: 400px) {
    .why .why-chara {
        width: 260px;
        height: 260px;
    }
    .why .why-chara::before {
        width: 240px;
        height: 240px;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -40%);
    }
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
        }
        .star-rating i {
            cursor: pointer;
            color: rgba(255, 255, 255, 0.3);
            transition: all 0.2s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffc107;
            transform: scale(1.1);
        }
        .star-rating.readonly i {
            cursor: default;
        }
        .transaction-detail-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .transaction-detail-item:last-child {
            border-bottom: none;
        }
        .transaction-detail-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }
        .transaction-detail-value {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

.content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.left-column {
    flex: 0 0 380px;
}

.right-column {
    flex: 1;
}

.content-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-card:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-card.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Review Specific Styles */
.review-readonly-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    min-height: 150px;
    padding: 12px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .content-layout {
        flex-direction: column;
    }

    .left-column {
        flex: 1 1 100%;
        width: 100%;
    }

    .right-column {
        flex: 1 1 100%;
        width: 100%;
    }
}
