﻿.testimonial-premium {
    padding: 42px 14px;
    background: linear-gradient(180deg, #fffaf2, #ffffff);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.testimonial-head span {
    display: inline-block;
    background: linear-gradient(90deg, #b8860b, #ffd86b);
    color: #2b1748;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.testimonial-head h2 {
    color: #3b235f;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
}

.testimonial-head p {
    color: #6b5a42;
    font-size: 13px;
    margin-bottom: 24px;
}

.testimonial-slider {
    position: relative;
    max-width: 680px;
    margin: auto;
}

.testimonial-card-premium {
    position: relative;
    background: linear-gradient(135deg, #3b235f, #6b3fa0);
    color: #fff;
    padding: 30px 22px;
    border-radius: 28px;
    border: 1px solid rgba(255,216,107,.38);
    box-shadow: 0 18px 45px rgba(59,35,95,.25);
    overflow: hidden;
    animation: testFade .45s ease;
}

.testimonial-card-premium::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,216,107,.28), transparent 65%);
    top: -60px;
    right: -50px;
}

.quote-icon {
    position: absolute;
    top: 8px;
    left: 18px;
    font-size: 70px;
    color: rgba(255,216,107,.22);
    font-family: serif;
}

.stars {
    color: #ffd86b;
    letter-spacing: 3px;
    font-size: 15px;
    margin-bottom: 14px;
}

.testimonial-card-premium p {
    position: relative;
    color: #f7ecff;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.customer-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.customer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #b8860b, #ffd86b);
    color: #2b1748;
    font-weight: 900;
}

.customer-box h4 {
    margin: 0;
    color: #ffd86b;
    font-size: 15px;
    text-align: left;
}

.customer-box span {
    color: #e9dcff;
    font-size: 12px;
    display: block;
    text-align: left;
}

.test-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #3b235f;
    font-size: 26px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(59,35,95,.18);
}

.test-arrow.left {
    left: -8px;
}

.test-arrow.right {
    right: -8px;
}

.testimonial-dots {
    margin-top: 16px;
}

.testimonial-dots span {
    width: 9px;
    height: 9px;
    background: #d8c9b0;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.testimonial-dots span.active {
    width: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b235f, #b8860b);
}

@keyframes testFade {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 576px) {
    .testimonial-premium {
        padding: 34px 12px;
    }

    .testimonial-head h2 {
        font-size: 24px;
    }

    .testimonial-card-premium {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .testimonial-card-premium p {
        font-size: 14px;
    }

    .test-arrow {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .test-arrow.left {
        left: -4px;
    }

    .test-arrow.right {
        right: -4px;
    }
}