/* Client Testimonial Section Styles */
.client-testimonial-section {
    width: 100%;
    position: relative;
}

.client-testimonial-background {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(90deg, #152FBF 0%, var(--color-azure-17, #1F2937) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-testimonial-bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.50;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    z-index: 0;
}

.client-testimonial-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.client-testimonial-label-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-testimonial-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow-flag, #F2CE16);
    border-radius: 50%;
}

.client-testimonial-label-container {
    padding-left: 8px;
    display: inline-flex;
}

.client-testimonial-label {
    color: var(--color-orange-61, #FB923C);
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.80px;
    text-align: center;
}

.client-testimonial-dot-container {
    width: 16px;
    height: 8px;
    padding-left: 8px;
    display: inline-flex;
}

.client-testimonial-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-testimonial-title-client {
    color: var(--color-white-solid, white);
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 48px;
    white-space: nowrap;
}

.client-testimonial-title-satisfaction {
    color: var(--color-yellow-53, #FFCD11);
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 48px;
    white-space: nowrap;
}

/* Quote Styles */
.client-testimonial-quote-container {
    width: 100%;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-testimonial-quote {
    color: var(--color-azure-84, #D1D5DB);
    font-size: 24px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
}

/* Author Styles */
.client-testimonial-author-container {
    width: 100%;
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-testimonial-author-avatar {
    width: 64px;
    height: 64px;
    background: var(--color-yellow-53, #FFCD11);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-testimonial-author-initial {
    color: var(--color-white-solid, white);
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 28px;
    text-align: center;
}

.client-testimonial-author-info {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
}

.client-testimonial-author-name {
    color: var(--color-white-solid, white);
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 28px;
}

.client-testimonial-author-position {
    color: var(--color-yellow-53, #FFCD11);
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 24px;
}

.client-testimonial-author-company {
    color: var(--color-azure-65, #9CA3AF);
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 24px;
}

/* Rating Styles */
.client-testimonial-rating {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.client-testimonial-star {
    height: 24px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .client-testimonial-container {
        padding: 48px 24px;
    }
}

@media (max-width: 768px) {
    .client-testimonial-container {
        padding: 40px 16px;
        gap: 16px;
    }
    
    .client-testimonial-title-client,
    .client-testimonial-title-satisfaction {
        font-size: 36px;
        line-height: 40px;
    }
    
    .client-testimonial-quote {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .client-testimonial-container {
        padding: 32px 16px;
    }
    
    .client-testimonial-title-client,
    .client-testimonial-title-satisfaction {
        font-size: 28px;
        line-height: 32px;
        white-space: normal;
    }
    
    .client-testimonial-quote {
        font-size: 18px;
        line-height: 26px;
    }
    
    .client-testimonial-author-avatar {
        width: 48px;
        height: 48px;
    }
    
    .client-testimonial-author-name {
        font-size: 18px;
        line-height: 24px;
    }
    
    .client-testimonial-author-position,
    .client-testimonial-author-company {
        font-size: 14px;
        line-height: 20px;
    }
    
    .client-testimonial-star {
        height: 20px;
    }
}
