/* =========================
   CLIENT TESTIMONIALS
========================= */
.testimonials-section {
    padding: 60px 2%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* glow blobs */
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 0;
}

.testimonials-section::before {
    top: -60px;
    left: -60px;
    background: rgba(255, 122, 25, 0.18);
}

.testimonials-section::after {
    bottom: -60px;
    right: -60px;
    background: rgba(126, 217, 87, 0.18);
}

.testimonials-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* header */


.section-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 20px;
    background: rgba(255, 122, 25, 0.15);
    color: var(--color-orange);
    margin-bottom: 14px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonials-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* testimonials row */
.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.testimonials-track::-webkit-scrollbar {
    height: 6px;
}

.testimonials-track::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 25, 0.4);
    border-radius: 10px;
}

/* single testimonial */
.testimonial {
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 30px 26px;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 122, 25, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

/* quote */
.testimonial .quote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-top: 10px;
}

.testimonial .quote::before {
    content: '“';
    font-size: 40px;
    color: var(--color-orange);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.6;
}

/* client info */
.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-info img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
}

.client-info h4 {
    font-size: 16px;
    font-weight: 600;
}

.client-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .testimonials-track {
        grid-auto-columns: minmax(260px, 1fr);
    }
}

@media (max-width: 480px) {

    .testimonial {
        padding: 24px 20px;
    }
}
