@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

.wa-ts-section {
    width: 100%;
    background: #000000;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
}

.wa-ts-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.wa-ts-slider-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.wa-ts-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-ts-slide {
    flex: 0 0 100%;
    width: 100%;
}

.wa-ts-card {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Stars */
.wa-ts-stars {
    color: #f59e0b; /* Golden Yellow */
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

/* Quote Content */
.wa-ts-content {
    font-size: 18px;
    font-style: italic;
    color: #cccccc;
    line-height: 1.8;
    margin: 0 0 40px;
    font-weight: 400;
    max-width: 700px;
}

/* User Meta */
.wa-ts-user {
    margin-top: auto;
}

.wa-ts-user-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px;
    letter-spacing: 0.5px;
}

.wa-ts-user-role {
    font-size: 13px;
    color: #a855f7; /* Volandex Purple */
    font-weight: 500;
}

/* Pagination Dots */
.wa-ts-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.wa-ts-dot {
    width: 10px;
    height: 10px;
    background: #333333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-ts-dot-active {
    background: #a855f7; /* Active Purple */
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    width: 12px;
    height: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .wa-ts-card {
        padding: 40px 20px;
    }
    .wa-ts-content {
        font-size: 16px;
    }
    .wa-ts-main-title {
        font-size: 26px;
    }
}
