/* 고객 후기 섹션 */
.testimonial-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
.testimonial-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.testimonial-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 슬라이더 */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 따옴표 아이콘 */
.testimonial-quote {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
    fill: rgba(255,215,0,0.2);
}

/* 후기 내용 */
.testimonial-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* 고객 정보 */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.author-program {
    font-size: 0.875rem;
    color: #666;
}

/* 프로그램별 색상 - 모두 동일하게 */
.program-white,
.program-yellow,
.program-blue,
.program-black {
    color: rgba(255,255,255,0.6);
    animation: colorFlow 3s ease-in-out infinite;
}

@keyframes colorFlow {
    0%, 100% {
        color: rgba(255,255,255,0.6);
    }
    50% {
        color: rgba(255,255,255,0.8);
    }
}

/* 슬라이더 컨트롤 */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.testimonial-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    transform: scale(1.1);
}

.testimonial-nav svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
}

.testimonial-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-nav:disabled:hover {
    transform: none;
}

/* 페이지 인디케이터 */
.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #FFD700;
}

/* 별점 */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    margin-top: 60px;
}

.star {
    color: #FFC107;
    font-size: 1.25rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-header {
        margin-bottom: 60px;
    }
    
    .testimonial-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
        min-height: 350px;
    }
    
    .testimonial-content {
        font-size: 1.125rem;
    }
    
    .testimonial-slide {
        padding: 0 20px;
    }
    
    .testimonial-controls {
        gap: 20px;
    }
}