/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    background: var(--bg-section);
    padding: 7rem 0;
}

.testimonials-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-inner .section-eyebrow {
    justify-content: center;
}

.testimonials-inner .section-eyebrow::before {
    display: none;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: 3.5rem;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 2rem;
    color: var(--accent-dark);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-dark);
    stroke: none;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    border: none;
    transition: background 0.2s ease, width 0.2s ease;
}

.testimonial-dot.active {
    background: var(--text-dark);
    width: 20px;
    border-radius: 3px;
}

