/**
 * Testimonials Premium
 */

.asap-testimonials {
    width: 100%;
    padding: 80px 24px;
}

.asap-testimonials.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.asap-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
}

.asap-testimonials__title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 60px 0;
}

.asap-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.asap-testimonial-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.asap-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.asap-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.asap-stars svg {
    width: 20px;
    height: 20px;
}

.asap-testimonial__quote {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-style: italic;
    color: #374151;
}

.asap-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.asap-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.asap-testimonial__name {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
}

.asap-testimonial__role {
    font-size: 13px;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 768px) {
    .asap-testimonials {
        padding: 60px 24px;
    }

    .asap-testimonials__title {
        font-size: 32px;
    }

    .asap-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

