/* =========================================================
   TESTIMONIAL SECTION - LIGHT PREMIUM
========================================================= */

.testimonial-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(95, 10, 135, 0.06),
            transparent 30%),
        radial-gradient(circle at bottom right,
            rgba(44, 115, 210, 0.06),
            transparent 30%),
        #f7f9fc;
}

/* =========================================
   GLOWS
========================================= */

.testimonial-blur {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.blur-left {
    top: -150px;
    left: -120px;
    background: rgba(95, 10, 135, 0.18);
}

.blur-right {
    bottom: -150px;
    right: -120px;
    background: rgba(44, 115, 210, 0.18);
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   BRANDS
========================================= */

.trusted-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.brand-item {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    font-size: 34px;
    color: var(--primary);
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.brand-item:hover {
    transform: translateY(-10px) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 25px 50px rgba(95, 10, 135, 0.22);
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.modern-testimonial-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(95, 10, 135, 0.08);
    transition: 0.4s ease;
    height: 100%;
}

.modern-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(95, 10, 135, 0.14);
}

/* =========================================
   TOP
========================================= */

.testimonial-top-content {
    padding: 42px 38px 60px;
    position: relative;
    z-index: 3;
}

.quote-icon {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary);
    animation: quoteFloat 4s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

.testimonial-top-content p {
    color: var(--text-secondary);
    line-height: 2;
    font-size: 16px;
}

/* =========================================
   BOTTOM
========================================= */

.testimonial-bottom {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 30px 34px;
    text-align: center;
}

/* =========================================
   CURVE
========================================= */

.curve-shape {
    position: absolute;
    top: -55px;
    left: -5%;
    width: 110%;
    height: 110px;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: rotate(-2deg);
}

/* =========================================
   USER
========================================= */

.testimonial-user {
    position: relative;
    z-index: 2;
}

.testimonial-user img {
    width: 92px !important;
    height: 92px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-top: -125px;
    margin-bottom: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.testimonial-user h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.testimonial-user span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* =========================================
   SOCIALS
========================================= */

.testimonial-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.testimonial-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.testimonial-socials a:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* =========================================
   OWL
========================================= */

.modern-testimonial-carousel {
    padding: 40px 0;
}

.modern-testimonial-carousel .owl-stage {
    display: flex;
}

.modern-testimonial-carousel .owl-item {
    display: flex;
}

.modern-testimonial-carousel .modern-testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-testimonial-carousel .testimonial-top-content {
    flex: 1;
}

.modern-testimonial-carousel .owl-dots {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modern-testimonial-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50px;
    background: rgba(95, 10, 135, 0.18);
    transition: 0.4s ease;
}

.modern-testimonial-carousel .owl-dot.active span {
    width: 40px;
    background: var(--primary);
}
