/**
 * KO Testimonials Widget Styles
 * Structural styles only - visual customization via Elementor
 *
 * @package KO_Elementor_Addons
 */

/* Container */
.ko-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.ko-testimonials-header {
    text-align: center;
}

.ko-testimonials-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.ko-testimonials-label::before,
.ko-testimonials-label::after {
    content: '';
    width: 24px;
    height: 2px;
    border-radius: 2px;
}

.ko-testimonials-title {
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 22px 0;
}

.ko-testimonials-subtitle {
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* Testimonial Grid */
.ko-testimonials-grid {
    display: grid;
}

/* Testimonial Card */
.ko-testimonial-card {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ko-testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
}

/* Quote Icon */
.ko-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

/* Star Rating */
.ko-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

/* Quote Text */
.ko-testimonial-quote {
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

/* Author Info */
.ko-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #EEEEEE;
}

.ko-testimonial-avatar {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.ko-testimonial-avatar.orange {
    background: linear-gradient(135deg, #F25C27 0%, #FF7A4D 100%);
}

.ko-testimonial-avatar.green {
    background: linear-gradient(135deg, #3AAE48 0%, #5DC469 100%);
}

.ko-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ko-testimonial-name {
    margin: 0;
}

.ko-testimonial-role {
    margin: 0;
}

/* Trust Badge */
.ko-testimonials-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 28px;
}

.ko-testimonials-badge-icon {
    width: 24px;
    height: 24px;
}

.ko-testimonials-badge-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
    .ko-testimonial-card:hover {
        transform: translateY(-4px);
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
    .ko-testimonial-card::before {
        font-size: 48px;
        top: 16px;
        right: 20px;
    }

    .ko-testimonial-author {
        padding-top: 16px;
    }

    .ko-testimonials-badge {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
