/* ========================================
    TESTIMONIALS 2 - BIG QUOTE SLIDER
    ======================================== */
.testi-2 {
    padding: 100px 5%;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.testi-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 50%);
}
.testi-2 .container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.testi-2 .quote-icon {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -40px;
}
.testi-2 .slides {
    position: relative;
}
.testi-2 .slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}
.testi-2 .slide.active {
    display: block;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.testi-2 .quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
}
.testi-2 .stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
}
.testi-2 .stars svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}
.testi-2 .author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.testi-2 .author-avatar {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.testi-2 .author .name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}
.testi-2 .author .location {
    font-size: 0.9rem;
    color: var(--gray-light);
}
.testi-2 .nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}
.testi-2 .nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.testi-2 .nav-dot:hover {
    background: rgba(255,255,255,0.4);
}
.testi-2 .nav-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}