

/* Custom CSS untuk efek yang lebih modern dengan warna brand */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Background decorative elements dengan warna brand */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(0, 181, 173, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(10, 126, 140, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonial card */
.testimonial-card {
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card .card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 181, 173, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover .card {
    box-shadow: 0 20px 40px rgba(0, 181, 173, 0.15);
    border-color: rgba(0, 181, 173, 0.3);
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.1;
    transform: rotate(180deg);
}

.quote-icon i {
    font-size: 6rem;
    line-height: 1;
}

/* Testimonial text - FIXED: Menambahkan aturan yang lebih spesifik */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 2;
    font-weight: 400 !important; /* Memastikan weight normal */
}

/* FIXED: Mencegah bold dari CSS global */
.testimonial-text strong, 
.testimonial-text b {
    font-weight: 600 !important; /* Tetap bold jika ada tag <strong> atau <b> di dalam konten */
}

/* Status indicator */
.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Rating stars */
.rating i {
    margin-right: 2px;
    font-size: 0.9rem;
}

/* FIXED: Reset semua font-weight untuk paragraf di dalam testimonial-card */
.testimonial-card p {
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 3rem 0;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
    }
}

/* Bootstrap Icons - pastikan sudah diinclude */
