/* Reviews Section Styles */
.reviews-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Header */
.reviews-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.reviews-title {
    padding: 30px 40px;
    transform: rotate(-2deg);
    outline: 7px #FC0606 solid;
    outline-offset: -3.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FC0606;
    font-size: 44px;
    font-family: 'Stardos Stencil', cursive;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Slider Wrapper */
.reviews-slider-wrapper {
    width: 100%;
    position: relative;
}

/* Reviews Card */
.reviews-card {
    width: 400px;
    height: 450px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 10px;
    overflow: hidden;
}

.reviews-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* .reviews-quote-icon {
    width: 28.20px;
    height: 22.15px;
   
} */

.reviews-rating {
    padding: 10px;
    outline: 3px #FC0606 solid;
    outline-offset: -1.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-star {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-name {
    color: white;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.reviews-text {
    flex: 1;
    color: #D1D1D1;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    line-clamp: 12;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.reviews-text.expanded {
    -webkit-line-clamp: initial;
    line-clamp: initial;
}

.reviews-read-more {
    color: white;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* Slider Controls */
.reviews-slider-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.reviews-slider-controls-inner {
    display: flex;
    gap: 20px;
}

.reviews-slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FC0606;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-slider-nav.prev {
    padding: 10px 20px 10px 12px;
}

.reviews-slider-nav.next {
    padding: 10px 12px 10px 20px;
}

.reviews-nav-text {
    color: black;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 28px;
}

.reviews-nav-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-slider-nav.prev .reviews-nav-icon:before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.reviews-slider-nav.next .reviews-nav-icon:before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.reviews-slider-nav:hover {
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .reviews-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .reviews-title {
        font-size: 36px;
        line-height: 44px;
        padding: 25px 35px;
    }

    .reviews-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 32px;
        line-height: 38px;
        padding: 20px 30px;
    }

    .reviews-card {
        width: 300px;
        height: 400px;
    }

    .reviews-text {
        -webkit-line-clamp: 10;
        line-clamp: 10;
    }
}

@media (max-width: 576px) {
    .reviews-container {
        gap: 40px;
    }

    .reviews-title {
        font-size: 28px;
        line-height: 34px;
        padding: 15px 25px;
    }

    .reviews-card {
        width: 280px;
        height: 380px;
    }

    .reviews-nav-text {
        font-size: 16px;
    }

    .reviews-slider-nav.prev,
    .reviews-slider-nav.next {
        padding: 8px 10px;
    }
}