/* Contact with Reviews Slider Widget Styles */

.noxx-contact-reviews-container {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.noxx-contact-reviews-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.noxx-contact-reviews-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 70px;
}

.noxx-reviews-slider-dots {
    display: none;
}

/* Left Side - Reviews Section */
.noxx-reviews-section {
    flex: 1;
    max-width: 633px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.noxx-contact-reviews-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.noxx-contact-reviews-description {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    max-width: 570px;
}

/* Reviews Slider */
.noxx-reviews-slider-container {
    position: relative;
    width: 100%;
    margin-top: 36px;
    height: 100%;
}

.noxx-reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.noxx-reviews-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
    grid-gap: 20px;
    height: 100%;
}

.noxx-reviews-slider-dots {
    display: none !important;
}

.noxx-review-slide {
    width: auto;
    height: 100%;
}

.noxx-review-card {
    background-color: rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.48);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

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

.noxx-reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.noxx-reviewer-image {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    overflow: hidden;
}

.noxx-reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noxx-reviewer-name {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.noxx-review-date {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.noxx-review-rating {
    display: flex;
    gap: 9px;
}

.noxx-star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.noxx-review-text {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.noxx-review-author {
    color: #FFF !important;
    font-family: Poppins !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 45px !important;
    margin: auto;
    margin-bottom: 0;
    margin-left: 0;
}

/* Navigation Dots */
.noxx-reviews-slider-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.noxx-reviews-slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.noxx-reviews-slider-dots .dot.active {
    background-color: #FFFFFF;
    transform: scale(1.2);
}

/* Right Side - Contact Form */
.noxx-contact-form {
    width: 507px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.noxx-contact-form-title {
    color: #0C2949;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.noxx-contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.noxx-form-group {
    width: 100%;
}

.noxx-form-field {
    width: 100%;
    height: 66px;
    border: 1px solid #B8BCCA;
    border-radius: 7px;
    padding: 0 20px;
    font-size: 16px;
    color: #333333;
    background-color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
}

.noxx-form-field::placeholder {
    color: #B8BCCA;
}

.noxx-submit-button {
    width: 100%;
    max-width: 358px;
    height: 75px;
    background-color: #0C2949;
    color: #FFFFFF;
    border: 2px solid #0C2949;
    border-radius: 80px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noxx-review-author {
    color: #FFF;
    font-family: Poppins;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 45px;
}

input.noxx-form-field:hover, input.noxx-form-field:active, input.noxx-form-field:focus {
    border-color: #0c2949 !important;
    transition: all .5s;
}

.noxx-submit-button:hover {
    background-color: transparent;
    color: #0C2949;
}

.noxx-form-response {
    color: #0C2949;
    font-family: 'Poppins', sans-serif;
    height: 20px;
}

/* Success Message */
.noxx-form-success {
    color: #28a745;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/* Error Message */
.noxx-form-error {
    color: #dc3545;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/* Draggable functionality styles */
.noxx-reviews-slider.dragging {
    cursor: grabbing;
}

.noxx-reviews-slider-track.dragging {
    transition: none;
}

.noxx-contact-reviews-title {
    color: #FFFFFF;
    font-size: 26px !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
}

.noxx-contact-reviews-description {
    color: #FFFFFF;
    font-size: 26px !important;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    max-width: 633px;
    font-weight: 400 !important;
}

.noxx-contact-form-title {
    color: #0C2949 !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
}

.noxx-form-group input {
    border-radius: 7.207px;
    border: 0.901px solid #B8BCCA;
    background: #FFF;
    color: #B8BCCA;
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
}

button.noxx-submit-button {
    border-radius: 80.585px !important;
    border: 2.518px solid #0C2949 !important;
    background: #0C2949 !important;
}

.noxx-form-response:empty {
    display: none !important;
}

.noxx-contact-form {
    height: fit-content;
    min-height: initial;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .noxx-contact-reviews-inner {
        gap: 60px;
    }
    
    .noxx-reviews-section {
        max-width: 600px;
    }
    
    .noxx-contact-form {
        width: 450px;
    }
}

@media (max-width: 991px) {
    .noxx-contact-reviews-inner {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    .noxx-reviews-section {
        max-width: 100%;
    }
    
    .noxx-contact-form {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .noxx-contact-reviews-container {
        padding: 60px 0;
    }
    
    .noxx-contact-reviews-title,
    .noxx-contact-form-title {
        font-size: 28px;
    }
    
    .noxx-contact-reviews-description {
        font-size: 16px;
    }
    
    .noxx-review-text {
        font-size: 16px !important;
    }
    
    .noxx-reviewer-image {
        width: 40px;
        height: 40px;
    }
    
    .noxx-reviewer-name {
        font-size: 16px;
    }
    
    .noxx-review-card {
        padding: 24px;
        height: 100%;
        min-height: 250px;
        display: flex;
        flex-direction: column;
    }

    .noxx-review-text {
        flex-grow: 1;
    }
    
    .noxx-submit-button {
        height: 60px;
        font-size: 16px;
    }

    .noxx-contact-reviews-title, .noxx-contact-form-title {
        font-size: 20px !important;
    }
    
    .noxx-contact-reviews-description {
        font-size: 16px !important;
    }

    .noxx-review-author {
        font-size: 16px !important;
        line-height: normal !important;
    }

    .noxx-reviews-slider,
    .noxx-reviews-slider-container,
    .noxx-reviews-slider-track,
    .noxx-review-slide {
        height: 100%;
    }
} 