/**
 * Testimonials Section - Styles
 * Location: /wp-content/plugins/daf-marketplace/assets/css/testimonials.css
 */

.daf-mp-testimonials-section {
    padding: 4rem 0;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.daf-mp-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.daf-mp-testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.daf-mp-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.daf-mp-testimonials-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* Testimonials Grid */
.daf-mp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Testimonial Card */
.daf-mp-testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.daf-mp-testimonial-card:hover {
    border-color: #10b981;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    transform: translateY(-6px);
}

/* Star Rating */
.daf-mp-testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.daf-mp-star {
    font-size: 1.125rem;
    color: #fbbf24;
    line-height: 1;
}

/* Review Content */
.daf-mp-testimonial-content {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}

/* Customer Info */
.daf-mp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.daf-mp-testimonial-avatar {
    font-size: 2.5rem;
    line-height: 1;
}

.daf-mp-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.daf-mp-testimonial-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
}

.daf-mp-testimonial-role {
    font-size: 0.8125rem;
    color: #9ca3af;
}

/* Pagination Dots */
.daf-mp-testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}

.daf-mp-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.daf-mp-pagination-dot:hover {
    background: #10b981;
}

.daf-mp-pagination-dot.active {
    background: #10b981;
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .daf-mp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .daf-mp-testimonials-section {
        padding: 3rem 0;
    }

    .daf-mp-testimonials-container {
        padding: 0 1.25rem;
    }

    .daf-mp-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .daf-mp-testimonial-card {
        padding: 1.75rem;
    }

    .daf-mp-testimonials-title {
        font-size: 1.5rem;
    }

    .daf-mp-testimonial-content {
        font-size: 0.875rem;
    }
}

