/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */

.testimonials {
    width: 100%;
    background-color: var(--red-primary);
    padding: 38px 23px;
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
    width: 100%;
}

.testimonials-title {
    font-family: 'Impact', sans-serif;
    font-size: 96px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
    z-index: 10;
    flex-shrink: 0;
}

.testimonials-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.testimonial-box {
    background-color: #fcfbfb;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    height: auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-arrow {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.testimonial-arrow:hover {
    transform: scale(1.07);
}

.testimonial-arrow svg {
    width: 32px;
    height: 32px;
}

.testimonial-arrow svg path {
    stroke: var(--red-primary) !important;
}

.testimonial-text {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    line-height: 1.4;
    color: var(--black);
    text-align: center;
    margin-bottom: 15px;
}

.testimonial-author {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 20px;
    color: var(--black);
    text-align: center;
}

@media (max-width: 1199px) {

    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .testimonials-title {
        font-size: 80px;
        margin-bottom: 10px;
        text-align: center;
    }

    .testimonials-container {
        align-items: center;
        max-width: 800px;
    }

    .testimonial-arrows-group {
        display: flex;
        gap: 20px;
        margin-top: 15px;
    }
}

@media (max-width: 640px) {
    .testimonials-title {
        font-size: 75px;
    }

    .testimonials-container {
        align-items: center;
        max-width: 800px;
        gap: 10px
    }

    .testimonial-arrow {
        width: 45px;
        height: 45px;
    }

    .testimonial-arrow svg {
        width: 26px;
        height: 26px;
    }
}

.mobile-arrows {
    display: none;
    justify-content: center;
    gap: 20px;
}

.desktop-arrow {
    display: flex;
}

@media (max-width: 640px) {
    .desktop-arrow {
        display: none; 
    }

    .mobile-arrows {
        display: flex;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
}