
/* Customer Reviews Section */
.customer-reviews-section {
    padding: 80px 0;
    background-color: #f8f8f5;
    margin-top: 0;
}

.reviews-container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.reviews-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.reviews-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Reviews Scroll Wrapper */
.reviews-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.reviews-scroll-container {
    flex: 1;
    width: 100vw;
    margin: 0;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    position: relative;
    z-index: 1;
    gap: 20px;
    display: flex;
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Scroll Arrow Buttons - Same as Bridal Section */
.reviews-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #d4af37;
    font-size: 18px;
}

.reviews-scroll-arrow:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.reviews-scroll-arrow-left {
    left: 10px;
}

.reviews-scroll-arrow-right {
    right: 10px;
}

.review-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    width: 350px;
    flex: 0 0 350px;
    min-width: 350px;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-item:hover .review-image img {
    transform: scale(1.05);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal img {
    width: 100%;
    height: auto;
    display: block;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

.review-content {
    padding: 25px;
}

.review-text {
    margin-bottom: 20px;
}

.review-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: #d4af37;
    font-family: serif;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    font-size: 1.1rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.reviews-cta .chat-now-btn {
   /* background: linear-gradient(135deg, #d4af37, #b8941f);*/
    background: #5a3f2a;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
   box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
   /* box-shadow: 0 5px 15px #5a3f2a;*/
}

.reviews-cta .chat-now-btn:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 60px 0;
    }
    
    .reviews-header .section-title {
        font-size: 2rem;
    }
    
    .review-item {
        width: 300px;
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .review-image {
        height: 250px;
    }
    
    .review-content {
        padding: 20px;
    }
    
    .review-text p {
        font-size: 0.9rem;
    }
    
    .reviews-scroll-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-header {
        padding: 0 15px;
    }
    
    .reviews-header .section-title {
        font-size: 1.8rem;
    }
    
    .review-item {
        width: 280px;
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .review-image {
        height: 220px;
    }
    
    .reviews-cta {
        padding: 0 15px;
    }
    
    .reviews-cta .chat-now-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .reviews-scroll-arrow {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .reviews-scroll-arrow-left {
        left: 5px;
    }
    
    .reviews-scroll-arrow-right {
        right: 5px;
    }
}
