section.testimonials_section {
    background: var(--primary-dark);

    .section_tone_line {
        color: var(--text-muted);
        font-style: italic;
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .review_card {
        background: var(--secondary-dark);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(74, 111, 165, 0.2);
        transition: all 0.3s ease;
        min-height: 300px;
        margin: 10px;

        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .stars {
            color: var(--gold-light);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review_text {
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .reviewer_name {
            color: var(--text-light);
            font-weight: 600;
        }
    }

    .testimonials_cta_row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2.5rem;
    }

    .testimonial_btn {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 15px;
        line-height: 1;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        white-space: nowrap;
    }

    .testimonial_btn--outline {
        background: transparent;
        color: #C9A84C;
        border: 2px solid #C9A84C;
        box-shadow: none;

        &:hover {
            background: #C9A84C;
            color: #0D1B2A;
            box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
            transform: translateY(-3px);
        }
    }

    .testimonial_btn--primary {
        background: #C9A84C;
        color: #0D1B2A;
        border: 2px solid #C9A84C;
        box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);

        &:hover {
            background: transparent;
            color: #C9A84C;
            box-shadow: none;
            transform: translateY(-3px);
        }
    }

    .reviews_carousel {
        position: relative;

        .owl-nav {
            display: flex;
            justify-content: space-between;
            width: 100%;
            position: absolute;
            top: calc(50% - 15px);
            transform: translateY(-50%);
            left: 0;
            pointer-events: none;
            margin-top: 0;

            button {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--secondary-dark);
                /* border: 2px solid rgba(74, 111, 165, 0.3); */
                border-radius: 50%;
                color: var(--gold-accent);
                font-size: 1.5rem;
                cursor: pointer;
                transition: all 0.3s ease;
                pointer-events: auto;
                position: relative;
                overflow: hidden;
                margin: 0;
                border: 10px solid var(--primary-dark);

                &:before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 0;
                    height: 0;
                    border-radius: 50%;
                    background: var(--light-blue);
                    transform: translate(-50%, -50%);
                    transition: all 0.4s ease;
                    z-index: 0;
                }

                span {
                    position: relative;
                    z-index: 1;
                }

                &:hover {
                    background: var(--light-blue);
                    border-color: var(--gold-accent);
                    color: white;
                    transform: scale(1.1);
                    box-shadow: 0 8px 20px rgba(74, 111, 165, 0.4);

                    &:before {
                        width: 100%;
                        height: 100%;
                    }
                }

                &:active {
                    transform: scale(0.95);
                }

                &.owl-prev {
                    &:hover {
                        transform: scale(1.1) translateX(-5px);
                    }
                }

                &.owl-next {
                    &:hover {
                        transform: scale(1.1) translateX(5px);
                    }
                }

                &.disabled {
                    opacity: 0.3;
                    cursor: not-allowed;
                    pointer-events: none;
                }
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .owl-nav {
                left: -50px;
                right: -50px;

                button {
                    width: 45px;
                    height: 45px;
                    font-size: 1.3rem;
                }
            }
        }

        @media (max-width: 768px) {
            .owl-nav {
                left: 0;
                right: 0;
                position: relative;
                top: auto;
                transform: none;
                margin-top: 30px;
                justify-content: center;
                gap: 15px;

                button {
                    width: 40px;
                    height: 40px;
                    font-size: 1.2rem;
                    position: static;
                }
            }
        }
    }

}