        /* Testimonials Section */
        .testimonials-section {
            padding: 3rem 0;
            background: #ffffff;
            position: relative;
            overflow-x: clip;
        }

        .testimonials-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .testimonials-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.75rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .testimonials-header h2 span {
            color: var(--magenta);
        }

        .testimonials-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Owl Carousel Testimonials */
        .testimonials-carousel {
            padding: 1rem 0 3rem;
        }

        .testimonials-carousel .owl-stage-outer {
            overflow: hidden;
            padding: 1rem 0 2rem;
        }

        .testimonials-carousel .owl-stage {
            display: flex !important;
        }

        .testimonials-carousel .owl-item {
            padding: 0 12px;
            display: flex;
        }

        .testimonial-item {
            height: 100%;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(45, 53, 97, 0.08);
            border: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--verde), var(--magenta), var(--orange));
            border-radius: 20px 20px 0 0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(45, 53, 97, 0.15);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-quote-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 3.5rem;
            color: var(--cream-dark);
            line-height: 1;
            font-family: Georgia, serif;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 1.25rem;
        }

        .testimonial-stars i {
            color: var(--yellow);
            font-size: 1.1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            color: var(--text);
            line-height: 1.75;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.25rem;
            border-top: 2px solid var(--cream);
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            font-weight: 700;
            color: white;
            background: linear-gradient(135deg, var(--verde), var(--verde-light));
        }

        .testimonial-avatar.magenta {
            background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
        }

        .testimonial-avatar.orange {
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
        }

        .testimonial-avatar.navy {
            background: linear-gradient(135deg, var(--navy), #4a5a8a);
        }

        .testimonial-avatar.purple {
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
        }

        .testimonial-avatar.cyan {
            background: linear-gradient(135deg, var(--cyan), #33e8c2);
        }

        .testimonial-info strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            color: var(--navy);
            margin-bottom: 0.1rem;
        }

        .testimonial-info span {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Owl Carousel Controls */
        .testimonials-carousel {
            position: relative;
        }

        .testimonials-carousel .owl-nav {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            width: calc(100% + 60px);
            left: -30px;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            padding: 0;
        }

        .testimonials-carousel .owl-nav button.owl-prev,
        .testimonials-carousel .owl-nav button.owl-next {
            width: 50px;
            height: 50px;
            background: white !important;
            border-radius: 50%;
            border: 2px solid var(--cream-dark) !important;
            box-shadow: 0 4px 20px rgba(45, 53, 97, 0.1);
            transition: all 0.3s ease;
            pointer-events: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--navy);
        }

        .testimonials-carousel .owl-nav button.owl-prev:hover,
        .testimonials-carousel .owl-nav button.owl-next:hover {
            background: var(--navy) !important;
            border-color: var(--navy) !important;
            color: white;
        }

        .testimonials-carousel .owl-nav button.owl-prev span,
        .testimonials-carousel .owl-nav button.owl-next span {
            font-size: 1.5rem;
            line-height: 1;
        }

        .testimonials-carousel .owl-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 2rem;
        }

        .testimonials-carousel .owl-dots .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cream);
            border: 2px solid var(--cream-dark);
            transition: all 0.3s ease;
        }

        .testimonials-carousel .owl-dots .owl-dot.active {
            background: var(--navy);
            border-color: var(--navy);
            transform: scale(1.2);
        }

        .testimonials-carousel .owl-dots .owl-dot span {
            display: none;
        }