* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Montserrat', sans-serif;

    background: #f5f5f5;

    min-height: 100vh;

}



.split-container {

    display: flex;

    min-height: 100vh;

}



.left-section {


    height: 100vh;

    overflow-y: auto;

    background: white;

    padding: 40px 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    align-items: center;

    position: relative;

    scrollbar-width: thin;

    scrollbar-color: #f07829 #e0e0e0;

}



/* Custom scrollbar for WebKit browsers (Chrome, Edge, Safari) */

.left-section::-webkit-scrollbar {

    width: 8px;



}



.left-section::-webkit-scrollbar-track {

    background: #e0e0e0;

    border-radius: 10px;

}



.left-section::-webkit-scrollbar-thumb {

    background-color: #ee3d46;

    border-radius: 10px;

    border: 2px solid #e0e0e0;

}



.left-section::-webkit-scrollbar-thumb:hover {

    background-color: #ee3d46;

}







.right-section {

    background-image: url('../images/fuwa.webp');

    background-size: cover;

    background-position: center;

    position: relative;

}



.right-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

}



.logo-section {

    text-align: center;

    margin-bottom: 50px;

}



.logo-text {

    font-size: 72px;

    font-weight: 900;

    letter-spacing: -2px;

    color: #000;

    line-height: 1;

    margin-bottom: 5px;

}



.business-name {

    font-size: 32px;

    font-weight: 700;

    color: #000;

    letter-spacing: 1px;

}



.location-text {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    font-size: 14px;

    color: #666;

    margin-top: 10px;

}



.content-section-video {

    margin-left: 80px;

    margin-right: 80px;

}



.content-section-second {

    width: 100vh;

}



.main-heading {

    font-size: 30px;

    color: #555;

    text-align: center;

    margin-bottom: 50px;

    line-height: 1.4;

    font-weight: 600;

}



/* Rating Stars */

.stars-container {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom: 40px;

}



.star {

    font-size: 50px;

    color: #484848;

}

.spaced-message {
    text-align: center;
    margin-top: 80px;
}


.star:hover,
.star.hovered,
.star.active,
.fas.star,
.fa-solid.star {
    color: #f07829 !important;
}



/* .footer-text {

    text-align: center;

    position: static;

    bottom: 30px;

    left: 0;

    right: 0;

    font-size: 14px;

    color: #999;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}



.footer-logo {

    height: 20px;

} */
.footer-text {
    position: relative;
    /* left: 50%;
    transform: translateX(-50%); */
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.footer-text img {
    vertical-align: middle;
}

.top-space {
    padding-top: 11rem;
}


/* Small Logo for other screens */

.small-logo {

    text-align: center;

    margin-bottom: 30px;

}



.small-logo-text {

    font-size: 48px;

    font-weight: 900;

    letter-spacing: -1px;

    color: #000;

    line-height: 1;

}



.small-business-name {

    font-size: 20px;

    font-weight: 700;

    color: #000;

    letter-spacing: 0.5px;

}



.small-location {

    font-size: 12px;

    color: #666;

    margin-top: 5px;

}



/* Bad Review Form */

.bad-review-screen {

    display: none;

}



.info-text {
    font-size: 15px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}



.info-text-review {

    font-size: 17px;

    color: #666;

    text-align: center;

    line-height: 1.6;

    margin-bottom: 35px;

    margin-left: 40px;

    margin-right: 40px;

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 15px;

}



.form-group {

    margin-bottom: 15px;

}



.form-control {

    width: 100%;

    padding: 12px 16px;

    border: 1px solid #f0f0f0;

    border-radius: 20px;

    font-size: 15px;

    /* background: #fafafa; */

    resize: none;
    font-weight: 600;

}




.form-control:hover {

    border: 2px solid #b0b0b0;

}



.form-control:focus {

    outline: none;

    border: 2px solid #000;

    background: white;

    box-shadow: none;



}



.form-control::placeholder {

    color: #aaa;

}



textarea.form-control {

    min-height: 160px;

    resize: vertical;

    font-family: inherit;

}

.custom-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.custom-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #28c76f;
    /* green border */
    border-radius: 40%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .25s ease;
    background-color: transparent;
}

.custom-check input[type="checkbox"]:checked {
    background-color: #28c76f;
    border-color: #28c76f;
}

.custom-check input[type="checkbox"]:checked::after {
    content: "✔";
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    position: relative;
}

.custom-check input[type="checkbox"]:checked+span {
    color: #ed303a;
}



.submit-btn {

    display: block;

    width: 50%;

    margin: 20px auto;

    padding: 8px 0;

    border: none;

    border-radius: 25px;

    background-color: rgba(0, 0, 0, 0.12);

    color: rgba(0, 0, 0, 0.26);
    font-size: 16px;

    cursor: pointer;

    transition: all 0.3s ease;
    margin-top: 30px;
    font-weight: 800;
}



.submit-btn.active {

    background: #000;

    color: white;

    cursor: pointer;

}



.submit-btn.active:hover {

    background: #333;

}



/* Good Review Screen */

.good-review-screen {

    display: none;
    padding-top: 3rem;

}



.review-buttons {

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 30px;

    margin-bottom: 30px;



}



.review-btn {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 20px;

    padding: 5px 20px;

    background: white;

    border: 1px solid #eaeaea;

    border-radius: 20px;

    cursor: pointer;

    transition: all 0.3s ease;

    text-decoration: none;

    color: #000;

    font-size: 18px;

    font-weight: 600;

    width: 100%;

    max-width: 300px;

    margin: 0 auto;

}



.review-btn span {

    flex: 1;

    text-align: center;
    font-size: 14px;
    font-weight: 800;

}



.review-btn:hover {

    background-color: #eaeaea;

    border-color: #000;

}



.review-btn img {

    width: 30px;

    height: 30px;

}



/* Video Upload Screen */

.video-upload-screen {

    display: none;

}



.back-arrow {

    position: absolute;

    top: 15px;

    left: 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    background: #fff;

    border-radius: 50%;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    color: #333;

    text-decoration: none;

    transition: all 0.3s ease;

    z-index: 2;

}



.back-arrow:hover {

    background: #f5f5f5;

    transform: translateX(-3px);

}



.back-arrow i {

    font-size: 18px;

}



.upload-wrapper {

    position: relative;

    padding: 8rem 30px;

    background: #EAEAEA;

    margin-bottom: 30px;

    border-radius: 12px;

    text-align: center;

}



.upload-area {

    border-radius: 18px;

    padding: 10px 10px;

    text-align: center;

    cursor: pointer;

    background: #fff;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    opacity: 0.8;

}

.upload-area:hover .upload-title,
.upload-area:hover .upload-icon {
    color: #fff !important;
}




.upload-area:hover {
    background-color: #ed303a;
    color: #fff;
}

.upload-area.dragover {


    background-color: #ed303a;
}


.upload-icon {

    font-size: 20px;

    color: #ed303a;

}



.upload-title {

    font-size: 16px;

    font-weight: 800;

    color: #ed303a;

    margin: 0;

}





.checkbox-label {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    font-size: 14px;

    color: #666;

    cursor: pointer;

    margin-bottom: 20px;

}



/* Circular checkbox styling */

.checkbox-label input[type="checkbox"] {

    appearance: none;

    /* remove default checkbox style */

    -webkit-appearance: none;

    -moz-appearance: none;

    width: 18px;

    height: 18px;

    border: 2px solid #999;

    /* default border */

    border-radius: 50%;

    /* makes it circular */

    cursor: pointer;

    position: relative;

    transition: all 0.3s ease;

}



/* When checked */

.checkbox-label input[type="checkbox"]:checked {

    background-color: #ed303a;

    /* red/orange fill when selected */

    border-color: #ed303a;

}



/* Optional inner white dot when checked */

.checkbox-label input[type="checkbox"]:checked::after {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 8px;

    height: 8px;

    background: white;

    border-radius: 50%;

    transform: translate(-50%, -50%);

}



.checkbox-label span {

    flex: 1;

    line-height: 1.5;

}





/* Thank You Screen */

.thank-you-screen {

    display: none;

    text-align: center;

}



.thank-you-icon {

    font-size: 80px;

    color: #4CAF50;

    margin-bottom: 30px;

}



.thank-you-title {

    font-size: 32px;

    font-weight: 700;

    color: #333;

    margin-bottom: 15px;

}



.thank-you-text {

    font-size: 18px;

    color: #666;

    line-height: 1.6;

}



.para-text p {

    font-size: 10px;

    color: #808080;

    text-align: center;

    margin-bottom: 50px;

    line-height: 1.4;

    font-weight: 600;

}

.rating-screen {
    padding-top: 3rem;

}



/* Mobile Responsive */

@media (max-width: 992px) {

    .split-container {

        flex-direction: column;

    }



    .right-section {

        min-height: 300px;

    }



    .left-section {

        padding: 40px 30px;

    }



    .logo-text {

        font-size: 56px;

    }



    .business-name {

        font-size: 26px;

    }

}



@media (max-width: 576px) {

    .left-section {

        padding: 30px 20px;

    }



    .logo-text {

        font-size: 48px;

    }



    .business-name {

        font-size: 22px;

    }



    /* .main-heading {

        font-size: 24px;

    } */



    .star {

        font-size: 40px;

    }



    .stars-container {

        gap: 10px;

    }



    .right-section {

        min-height: 250px;

    }



    .form-row {

        grid-template-columns: 1fr;

    }



    .review-btn {

        padding: 8px 15px;

        font-size: 16px;
        max-width: 360px;

    }

}