/* ===== TESTIMONIALS SLIDER CSS ===== */
.testimonials-section {
    padding: 80px 5%;
    background: #ffffff;
    overflow: hidden;
}

.testimonials-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f2ff;
    color: #1a5fba;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #0a1628;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: normal;
    color: #1a5fba;
}

.testi-slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.testi-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testi-card {
    flex-shrink: 0;
    background: #f7faff;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    border: 1px solid #d0daea;
    transition: all 0.3s;
    width: calc(33.333% - 1.35rem);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.testi-card.featured {
    background: #0a1628;
    border-color: transparent;
}

.testi-quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: #c9a84c;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testi-stars {
    color: #c9a84c;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: #6b7a99;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-card.featured .testi-text {
    color: rgba(255, 255, 255, 0.7);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5fba, #2d7cf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    color: #0a1628;
    font-size: 0.9rem;
}

.testi-card.featured .testi-name {
    color: #ffffff;
}

.testi-role {
    font-size: 0.76rem;
    color: #6b7a99;
}

.testi-card.featured .testi-role {
    color: rgba(255, 255, 255, 0.5);
}

.testi-procedure {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a5fba;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #e8f2ff;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    margin-top: 0.3rem;
    display: inline-block;
}

.testi-card.featured .testi-procedure {
    background: rgba(201, 168, 76, 0.15);
    color: #e8c96a;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d0daea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #1a5fba;
    font-size: 1rem;
}

.slider-btn:hover {
    background: #1a5fba;
    border-color: #1a5fba;
    color: #ffffff;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0daea;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #1a5fba;
    width: 24px;
    border-radius: 10px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .testi-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testi-card {
        width: 100%;
    }
}