/* ================================================
   TESTIMONI PAGE - ELEGANT & CLEAN DESIGN
   Primary Color: #d19f68
   ================================================ */

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(209,159,104,0.3));
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #f0f0f0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f5f0 100%);
    min-height: 60vh;
    padding: 4rem 0 !important;
    margin-top: -32px;
}

.results-info {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    min-height: 480px; /* kamu bisa ubah sesuai tinggi ideal */
}



.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d19f68 0%, #c08850 50%, #d19f68 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(209,159,104,0.25);
}

/* ========== IMAGE STYLING ========== */
.testimonial-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.testimonial-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d19f68, #c08850);
    color: rgba(255,255,255,0.7);

}

/* ========== CARD BODY ========== */
.testimonial-body {
    padding: 1.8rem;
}

/* Customer Name */
.testimonial-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.testimonial-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d19f68, #c08850);
    border-radius: 2px;
}

/* Service Name */
.testimonial-service {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-service i {
    color: #d19f68;
}

/* ========== RATING STARS ========== */
.testimonial-rating {
    display: flex;
    align-items: center;
}

.testimonial-rating i {
    font-size: 1.1rem;
    margin-right: 4px;
    transition: all 0.3s ease;
}

.testimonial-rating .fa-star,
.testimonial-rating .fas.fa-star {
    color: #d19f68;
    text-shadow: 0 0 5px rgba(209,159,104,0.3);
}

.testimonial-rating .far.fa-star {
    color: #ddd;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.15);
}

.rating-text {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== REVIEW TEXT ========== */
.testimonial-review {
    position: relative;
    padding: 1rem 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 2rem;
    color: #d19f68;
    opacity: 0.15;
}

.review-text {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Date */
.testimonial-date {
    color: #95a5a6;
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.testimonial-date i {
    color: #d19f68;
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.empty-icon {
    margin-bottom: 2rem;
}

.empty-icon i {
    color: #d19f68;
    opacity: 0.3;
}

.empty-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.empty-text {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0;
}

/* ========== PAGINATION ========== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    color: #d19f68;
    border: 2px solid #d19f68;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    margin: 0;
}

.pagination .page-link:hover {
    background: #d19f68;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209,159,104,0.3);
    border-color: #d19f68;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #d19f68, #c08850);
    border-color: #d19f68;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(209,159,104,0.4);
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #e0e0e0;
    background: #f5f5f5;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(209,159,104,0.25);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .testimonial-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-section {
        padding: 3rem 0 !important;
    }
    
    .testimonial-body {
        padding: 1.5rem;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .testimonial-image-wrapper {
        height: 200px;
    }
    
    .empty-state {
        padding: 3rem 1rem;
    }
}

/* ========== SCROLLBAR STYLING ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d19f68, #c08850);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c08850, #b07840);
}

/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-behavior: smooth;
}

/* ========== PRINT STYLES ========== */
@media print {
    .hero-section,
    .pagination-wrapper {
        display: none;
    }
    
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    
}


