/*
* Testimonials Section Styles with Advanced Micro-interactions
*/

.testimonials-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #004b6b 0%, #366072 50%, #004b6b 100%);
    overflow: hidden;
}

.dark-theme .testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d30 50%, #1a1a1a 100%);
}

/* Dynamic Background */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.quote-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.1);
    animation: patternFloat 60s linear infinite;
}

@keyframes patternFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-30px) translateY(-30px); }
}

.pattern-svg {
    width: 100%;
    height: 100%;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-element {
    position: absolute;
    width: 45px;
    height: 45px;
    color: rgba(81, 177, 70, 0.3);
}

.float-element svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px currentColor);
}

.elem-1 {
    top: 20%;
    left: 10%;
    animation: elementFloat 18s ease-in-out infinite;
}

.elem-2 {
    top: 30%;
    right: 15%;
    animation: elementFloat 22s ease-in-out infinite 4s;
}

.elem-3 {
    bottom: 35%;
    left: 12%;
    animation: elementFloat 20s ease-in-out infinite 2s;
}

.elem-4 {
    bottom: 20%;
    right: 8%;
    animation: elementFloat 16s ease-in-out infinite 6s;
}

@keyframes elementFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-25px) rotate(90deg) scale(1.2); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(-15px) rotate(180deg) scale(0.9); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-30px) rotate(270deg) scale(1.1); 
        opacity: 0.6; 
    }
}

.float-element:hover {
    transform: scale(1.5) rotate(15deg) !important;
    opacity: 0.8 !important;
    filter: drop-shadow(0 0 20px currentColor) !important;
}

/* Gradient Blobs */
.gradient-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blobMove 25s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(81, 177, 70, 0.15), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(238, 239, 241, 0.1), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 8s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(54, 96, 114, 0.15), transparent);
    bottom: 20%;
    left: 60%;
    animation-delay: 16s;
}

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
    color: white;
}

.header-badge {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
}

.badge-wrapper {
    position: relative;
    display: inline-block;
}

.rotating-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(81, 177, 70, 0.6);
    border-radius: 50px;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-content {
    position: relative;
    z-index: 2;
    padding: 15px 35px;
    background: rgba(81, 177, 70, 0.2);
    border: 2px solid rgba(81, 177, 70, 0.4);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.header-badge:hover .badge-content {
    background: rgba(81, 177, 70, 0.3);
    border-color: #51b146;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(81, 177, 70, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    color: #51b146;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-badge:hover .badge-icon {
    transform: rotate(360deg) scale(1.3);
    color: white;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #51b146;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.header-badge:hover .badge-text {
    color: white;
}

.section-title {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 25px;
    overflow: hidden;
}

.title-part {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #51b146);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    animation: titlePartSlide 0.8s ease-out forwards;
}

.title-part.highlight {
    background: linear-gradient(135deg, #51b146, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.3s;
}

@keyframes titlePartSlide {
    to {
        transform: translateY(0);
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.carousel-nav:hover {
    background: rgba(81, 177, 70, 0.8);
    border-color: #51b146;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(81, 177, 70, 0.3);
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 177, 70, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.carousel-nav:hover .nav-bg {
    transform: scale(1);
}

.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.carousel-nav:active .nav-ripple {
    width: 100%;
    height: 100%;
}

/* Testimonials Track */
.testimonials-track {
    position: relative;
    height: 500px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.testimonial-slide.prev {
    transform: translateX(-100px) scale(0.9);
}

/* Testimonial Card */
.testimonial-card {
    background: #d5d5d5a8;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(81, 177, 70, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(81, 177, 70, 0.3);
}

/* Card Effects */
.card-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(81, 177, 70, 0.02), rgba(0, 75, 107, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .gradient-bg {
    opacity: 1;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2351b146' fill-opacity='0.02'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .pattern-overlay {
    opacity: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(81, 177, 70, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover .glow-effect {
    width: 200%;
    height: 200%;
}

/* Quote Icon */
.quote-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.bg-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.bg-layer-2 {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: linear-gradient(135deg, #004b6b, #366072);
    border-radius: 15px;
    opacity: 0.05;
    transition: all 0.3s ease 0.1s;
}

.testimonial-card:hover .bg-layer-1 {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

.testimonial-card:hover .bg-layer-2 {
    opacity: 0.1;
    transform: scale(1.15) rotate(-5deg);
}

.quote-icon i {
    position: relative;
    z-index: 3;
    font-size: 1.5rem;
    color: #51b146;
    line-height: 60px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover .quote-icon i {
    transform: scale(1.2) rotateY(180deg);
    color: #004b6b;
}

/* Star Rating */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.star {
    font-size: 1.2rem;
    color: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.star.filled {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.star:hover {
    transform: scale(1.2) rotate(15deg);
}

.testimonial-card:hover .star.filled {
    animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #004b6b;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: #366072;
    transform: translateY(-2px);
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.author-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(81, 177, 70, 0.3);
    transition: all 0.3s ease;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 2px solid rgba(81, 177, 70, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img,
.testimonial-card:hover .avatar-placeholder {
    border-color: #51b146;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(81, 177, 70, 0.3);
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #51b146;
    border-radius: 50%;
    opacity: 0;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        opacity: 0; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.1); 
    }
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #004b6b;
    margin: 0 0 3px 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-name {
    color: #51b146;
    transform: translateX(3px);
}

.author-position {
    font-size: 0.8rem;
    color: #366072;
    margin: 0 0 2px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.author-organization {
    font-size: 0.75rem;
    color: #366072;
    margin: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-position,
.testimonial-card:hover .author-organization {
    color: #004b6b;
    transform: translateX(2px);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(81, 177, 70, 0.1);
    color: #51b146;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(81, 177, 70, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .verified-badge {
    background: rgba(81, 177, 70, 0.2);
    border-color: #51b146;
    transform: scale(1.05);
}

/* Card Decorations */
.card-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #51b146;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dot-1 {
    top: 20px;
    right: 20px;
}

.dot-2 {
    top: 50%;
    right: 20px;
}

.dot-3 {
    bottom: 20px;
    right: 20px;
}

.testimonial-card:hover .decoration-dot {
    opacity: 0.6;
    animation: dotFloat 2s ease-in-out infinite;
}

.decoration-dot:nth-child(1) { animation-delay: 0s; }
.decoration-dot:nth-child(2) { animation-delay: 0.3s; }
.decoration-dot:nth-child(3) { animation-delay: 0.6s; }

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

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.indicator.active {
    background: #51b146;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(81, 177, 70, 0.5);
}

.indicator:hover {
    background: rgba(81, 177, 70, 0.7);
    transform: scale(1.2);
}

.indicator-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #51b146;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.indicator:hover .indicator-bg {
    transform: scale(1);
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(#51b146 0deg, transparent 0deg);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.indicator.active .indicator-progress {
    background: conic-gradient(#51b146 360deg, transparent 360deg);
}

/* Dark Theme */
.dark-theme .testimonial-card {
    background: rgba(45, 45, 48, 0.95);
    border-color: rgba(81, 177, 70, 0.3);
}

.dark-theme .testimonial-text {
    color: #eeeff1;
}

.dark-theme .testimonial-card:hover .testimonial-text {
    color: rgba(238, 239, 241, 0.9);
}

.dark-theme .author-name {
    color: #eeeff1;
}

.dark-theme .testimonial-card:hover .author-name {
    color: #51b146;
}

.dark-theme .author-position,
.dark-theme .author-organization {
    color: rgba(238, 239, 241, 0.8);
}

.dark-theme .testimonial-card:hover .author-position,
.dark-theme .testimonial-card:hover .author-organization {
    color: #eeeff1;
}

/* Trust Indicators */
.trust-indicators {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.indicators-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.indicator-item {
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.indicator-item:hover {
    transform: translateY(-5px);
}

.indicator-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #51b146;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator-item:hover .indicator-icon {
    background: rgba(81, 177, 70, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(81, 177, 70, 0.3);
}

.indicator-number {
    font-size: 2.0rem;
    font-weight: 800;
    color: #51b146;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(81, 177, 70, 0.3);
}

.indicator-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials CTA */
.testimonials-cta {
    position: relative;
    z-index: 10;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave-1,
.wave-2,
.wave-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.wave-1 {
    animation: waveSlide 10s ease-in-out infinite;
}

.wave-2 {
    animation: waveSlide 14s ease-in-out infinite 3s;
}

.wave-3 {
    animation: waveSlide 12s ease-in-out infinite 6s;
}

@keyframes waveSlide {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    position: relative;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #51b146;
    color: white;
    border-color: #51b146;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: #459a3e;
    border-color: #459a3e;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn .btn-icon {
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover .btn-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .prev-btn {
        left: -60px;
    }
    
    .next-btn {
        right: -60px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .indicators-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 45px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-card {
        padding: 50px 30px;
    }
    
    .prev-btn,
    .next-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.0rem;
    }
    
    .testimonials-track {
        height: auto;
        min-height: 450px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .indicators-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .indicator-number {
        font-size: 2.2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .float-element {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .quote-icon i {
        font-size: 1.5rem;
        line-height: 60px;
    }
    
    .star-rating {
        margin-bottom: 20px;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .indicators-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .indicator-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .indicator-number {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
}