.testimonial-carousel-container {
    padding: 0 40px;
}
.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2rem;
    scroll-behavior: smooth;
}
.testimonials-slider::-webkit-scrollbar {
    display: none;
}
.review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    scroll-snap-align: start;
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
}
.review-card p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.avatar {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}
.reviewer .name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}
.reviewer .meta {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: var(--primary-color, #333);
    color: var(--accent-color, #c5a47e);
    border-color: var(--primary-color, #333);
}
.nav-btn.prev {
    left: -10px;
}
.nav-btn.next {
    right: -10px;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}
.t-dot.active {
    background: var(--accent-color, #c5a47e);
    transform: scale(1.2);
}
@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}
@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }
    .testimonial-carousel-container {
        padding: 0;
    }
    .nav-btn {
        display: none;
    }
}