.reviews-item{position:relative;padding:2rem 1.25rem}.reviews-item-info{padding-top:.625rem}.reviews-item-text{color:var(--text-secondary)}.reviews-item-text p{margin-bottom:0}.reviews-item-name{margin-bottom:.125rem;font-size:1.125rem}.reviews-item-header{display:flex;margin-bottom:1.5rem}.reviews-item-vertical{text-align:center}.reviews-item-vertical .reviews-item-header{flex-wrap:wrap;justify-content:center}.reviews-item-vertical .reviews-item-info{width:100%;text-align:center}.reviews-item-vertical .reviews-item-img{margin-right:0;margin-bottom:1rem}.reviews-item-vertical .reviews-item-info{padding-top:0}.reviews-item-position{color:var(--text-secondary);font-size:1rem}.reviews-item-img{width:4.6875rem;height:4.6875rem;min-width:4.6875rem;border-radius:50%;overflow:hidden;margin-right:1.25rem;background-color:var(--background-secondary-color)}.reviews-item-img img{display:block;width:100%;height:100%;object-fit:cover}.reviews-carusel-wide .reviews-col{width:100%}.reviews-carusel-wide .reviews-item-text{max-width:46.875rem;margin-left:auto;margin-right:auto}.reviews-carusel-wide .flickity-viewport{transition:height 0.2s}.reviews-container{margin-bottom:2.5rem}.reviews-thumb{position:relative;z-index:2;display:flex;justify-content:center;margin-right:1rem;margin-top:-2.34375rem}.reviews-thumb:last-child{margin-right:0}.reviews-carusel-th .reviews-item-text{margin-bottom:1.25rem}.reviews-carusel-th .reviews-item-header{margin-bottom:2rem}.reviews-thumb-item{cursor:pointer}.reviews-thumb-item:last-child .reviews-item-img{margin-right:0}.reviews-thumb-item img{opacity:.6;transition:all 0.2s}.reviews-thumb-item:hover img{opacity:.8}.reviews-thumb-item.active img{opacity:1}@media only screen and (max-width:480px){.reviews-thumb-item .reviews-item-img{width:3.5rem;height:3.5rem;min-width:3.5rem;margin-right:1rem}.reviews-thumb{margin-top:-1.75rem}}

/* Video Reviews Section */
.review-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.review-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.play-btn:hover {
    opacity: 0.8;
}

.play-btn i {
    color: #fff;
    font-size: 64px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.review-content {
    padding: 20px;
}

.review-rating {
    margin-bottom: 10px;
}

.review-rating i {
    color: #ffd700;
    font-size: 20px;
}

.review-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.review-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.video-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal video {
    max-width: 90%;
    max-height: 90vh;
}

.video-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .review-card {
        margin-bottom: 20px;
    }
    
    .play-btn i {
        font-size: 48px;
    }
    
    .review-content {
        padding: 15px;
    }
    
    .review-name {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
}