body {
    background-color: #fefcfa;
}

html,
body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* ============================= */
/* REVIEW SECTION */
/* ============================= */
.leave-review {
    padding: 4rem 2rem;
    background: #f8f8f6;
}

.review-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    text-align: center;
}

.review-container h2 {
    font-size: 3rem;
    color: #122b45;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
}

.review-container p {
    color: #5d6670;
    margin-bottom: 2rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.review-form textarea {
    min-height: 140px;
    resize: vertical;
}

.review-form button {
    background: #1BA39C;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.review-form button:hover {
    background: #1ba39cd4;
}


.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 60, 53, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.review-modal.show {
    display: flex;
}

.review-modal-content {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    animation: modalPop 0.25s ease;
}

.review-modal-content p {
    margin: 0;
    color: #123c35;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

#review-modal-close {
    margin-top: 25px;
    border: none;
    background: #123c35;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#review-modal-close:hover {
    background: #0d2f2a;
    transform: translateY(-2px);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}