/* =============================================
   TESTIMONIALS.CSS — Section testimoni pelanggan
   Mengatur tampilan grid kartu testimoni.
   ============================================= */

/* --- Testimonials Section Container --- */
.testimonials {
    padding: var(--section-padding) 0;
    padding-bottom: 180px;
    position: relative;
    background: linear-gradient(180deg, var(--sky-100) 0%, var(--sky-200) 50%, var(--sky-300) 100%);
    overflow: hidden;
}

.testimonials .section-desc {
    color: var(--sky-700);
}

.testimonials .text-gradient {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .wave-divider .shape-fill {
    fill: var(--sky-100);
}

/* Dekorasi awan */
.dc-9 {
    width: 250px;
    height: 250px;
    top: 15%;
    left: -80px;
    background: rgba(255, 255, 255, 0.12);
}

.dc-10 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -60px;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Testimonial Grid (3 kolom) --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Testimonial Card --- */
.testimonial-card {
    background: var(--cloud-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-cloud);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Tanda kutip dekoratif */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    font-weight: 800;
    color: var(--sky-100);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-cloud-hover);
}

/* --- Stars Rating --- */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* --- Testimonial Text --- */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--sky-800);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* --- Author Info --- */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-button);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-blue);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--sky-600);
}