/* ==========================================================================
   VVRC Premium Testimonials Section Styles
   ========================================================================== */

.it-testimonial-area {
    background: radial-gradient(circle at 50% 50%, #0C0F19 0%, #060910 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 120px 0 !important;
}

/* Background Glow Nodes */
.vvrc-testi-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.vvrc-testi-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Section Header Styling */
.vvrc-testi-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.it-testimonial-subtitle-pill {
    background: rgba(124, 58, 237, 0.08) !important;
    color: #7C3AED !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 15px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.it-testimonial-main-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 44px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    letter-spacing: -1px !important;
    margin: 0 !important;
}

.gradient-purple-text {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

/* Navigation controls at top right */
.vvrc-testi-nav-controls {
    display: flex;
    gap: 12px;
}

.vvrc-testi-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vvrc-testi-arrow-btn:hover {
    background: #ffffff;
    color: #060910;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.vvrc-testi-arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5px;
    fill: none;
}

/* Wavy staff track container */
.it-testimonial-waves-container {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    margin-bottom: 50px !important;
    height: 160px !important;
}

.it-testimonial-waves-track {
    display: flex !important;
    width: 2880px !important;
    animation: wave-marquee 40s linear infinite !important;
    position: relative !important;
}

.it-testimonial-wave-sec {
    width: 1440px !important;
    position: relative !important;
    flex-shrink: 0 !important;
    height: 160px !important;
}

.it-testimonial-wave-svg {
    width: 100% !important;
    height: 100% !important;
    opacity: 0.25 !important;
}

/* Floating avatars on wave lines */
.wave-avatar-item {
    position: absolute !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #0C0F19 !important;
    padding: 2.5px !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25) !important;
    animation: avatar-float-y 4s ease-in-out infinite alternate !important;
    z-index: 2 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wave-avatar-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

@keyframes avatar-float-y {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Swiper Slider Testimonials Cards Track */
.it-testimonial-active {
    overflow: visible !important;
}

.it-testimonial-active .swiper-slide {
    width: auto !important;
}

.it-testimonial-item {
    width: 450px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 35px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-right: 30px !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}

.it-testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7C3AED 0%, #2563EB 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.it-testimonial-item:hover {
    border-color: rgba(124, 58, 237, 0.2) !important;
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.08) !important;
    transform: translateY(-6px) !important;
}

.it-testimonial-item:hover::before {
    opacity: 1;
}

.it-testimonial-grid-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

/* Quotes & Stars Styling */
.it-testimonial-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vvrc-testi-stars {
    color: #F59E0B;
    font-size: 13.5px;
    letter-spacing: 2px;
}

.it-testimonial-quote-icon {
    font-size: 64px !important;
    color: rgba(124, 58, 237, 0.12) !important;
    line-height: 1 !important;
    font-family: Georgia, serif !important;
    pointer-events: none;
    user-select: none;
}

.it-testimonial-quote-text {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    color: #94A3B8 !important;
    font-weight: 500 !important;
    text-align: left !important;
    margin: 0 !important;
}

/* User Meta Profile Section */
.it-testimonial-left-sec {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.it-testimonial-avatar-frame {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.it-testimonial-avatar-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.it-testimonial-profile-info {
    flex-grow: 1;
}

.it-testimonial-user-name {
    font-family: 'Outfit', sans-serif !important;
    font-size: 17.5px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
}

.it-testimonial-meta-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
}

.it-testimonial-badge {
    color: #94A3B8 !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    line-height: 1.3;
}

.it-testimonial-verified {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 11.5px !important;
    color: #10B981 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.it-testimonial-verified svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* Rating box at bottom */
.it-testimonial-rating-box {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 14px 28px !important;
    border-radius: 100px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #F59E0B !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.testimonial-rating-text {
    color: #94A3B8 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .vvrc-testi-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .it-testimonial-main-title { font-size: 36px !important; }
    .vvrc-testi-nav-controls { display: none; }
    .it-testimonial-item { width: 380px !important; padding: 25px !important; }
    .it-testimonial-waves-container { height: 120px !important; }
    .it-testimonial-wave-sec { height: 120px !important; }
    .wave-avatar-item { width: 40px !important; height: 40px !important; }
}

@media (max-width: 575px) {
    .it-testimonial-main-title { font-size: 28px !important; }
    .it-testimonial-item { width: 300px !important; padding: 20px !important; }
    .it-testimonial-quote-text { font-size: 14px !important; }
    .it-testimonial-user-name { font-size: 15.5px !important; }
}
