/* Testimonials Section Styles */
.testimonials-section {
    height: 528px;
    background: #E9F9F9;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    display: none !important;
}

.testimonials-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.testimonials-title-container {
    flex: 1;
}

.testimonials-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    ;
    font-size: 40px;
    line-height: 120%;
    margin: 0;
    text-align: left;
    font-display: swap;
}

.title-black {
    color: #000000;
}

.specialists-content {
    gap: 10px;
}

.title-primary {
    color: #E62D5B;
    margin-left: 3px;
}

.testimonials-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.testimonials-nav-btn {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: none;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

.testimonials-nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonials-nav-btn:active:not(:disabled) {
    transform: translateY(0);
}

.testimonials-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.testimonials-nav-btn svg {
    color: #333333;
    transition: color 0.3s ease;
}

.testimonials-nav-btn:hover:not(:disabled) svg {
    color: #E62D5B;
}

.testimonials-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-cards {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonials-card {
    width: 500px;
    height: 280px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    box-sizing: border-box;
    /* No animations, transitions, or box shadows */
}

.testimonials-card:hover {
    /* No hover effects */
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.testimonials-comment {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin: 0 0 24px 0;
    flex: 1;
    overflow: hidden;
    font-display: swap;
}

.testimonials-author {
    margin-top: auto;
}

.testimonials-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    ;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin: 0 0 4px 0;
    font-display: swap;
}

.testimonials-role {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #666666;
    margin: 0;
    font-display: swap;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .testimonials-container {
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 24px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-card {
        width: 450px;
        height: 260px;
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        height: auto;
        min-height: 480px;
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-header {
        order: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        gap: 24px;
    }

    .testimonials-title {
        font-size: 32px;
        text-align: center;
    }

    .title-primary {
        margin-left: 0;
        display: block;
        margin-left: 4px;
    }

    .testimonials-cards {
        align-items: center;
        gap: 20px;
    }

    .testimonials-card {
        width: 100%;
        max-width: 400px;
        height: 240px;
        padding: 28px 24px;
    }

    .testimonials-nav {
        order: -1;
    }

    .testimonials-nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 440px) {
    .testimonials-section {
        min-height: 440px;
        padding: 40px 0;
    }

    .testimonials-container {
        padding: 0 15px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-card {
        max-width: 100%;
        height: 220px;
        padding: 24px 20px;
    }

    .testimonials-comment {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .testimonials-name {
        font-size: 15px;
    }

    .testimonials-role {
        font-size: 13px;
    }
}

/* Loading Performance */
@font-face {
    font-family: 'Cal Sans';
    font-display: swap;
}

/* Focus states for accessibility */
.testimonials-nav-btn:focus {
    outline: 2px solid #E62D5B;
    outline-offset: 2px;
}

.testimonials-card:focus {
    outline: 2px solid #E62D5B;
    outline-offset: 4px;
}