/* Menha Project Modal - Ultra Luxury Deep Dark (Gold & Black) */
.menha-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.menha-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.menha-modal-container {
    background: #0a0a0a; /* Toàn bộ nền đen sâu */
    width: 100%;
    max-width: 480px;
    border-radius: 0; /* Vuông vức hoặc bo cực nhẹ sẽ sang hơn */
    border: 1px solid #E9B211; /* Viền vàng bao quanh */
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 50px 100px rgba(0,0,0,1), 0 0 20px rgba(233, 178, 17, 0.2);
}

.menha-modal-overlay.is-open .menha-modal-container {
    transform: scale(1) translateY(0);
}

.menha-modal-header {
    padding: 50px 40px 20px;
    text-align: center;
    position: relative;
}

.menha-modal-header h3 {
    color: #E9B211;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.menha-modal-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 300; /* Font mảnh sang trọng */
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menha-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #E9B211;
    cursor: pointer;
    font-size: 30px;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0.6;
}

.menha-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.menha-modal-body {
    padding: 20px 50px 50px;
}

.menha-form-group {
    margin-bottom: 25px;
    position: relative;
}

.menha-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #E9B211;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menha-form-group input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(233, 178, 17, 0.3); /* Chỉ viền dưới cho tinh tế */
    background: transparent;
    font-size: 16px;
    transition: all 0.4s;
    color: #fff;
    border-radius: 0;
}

.menha-form-group input:focus {
    border-bottom-color: #E9B211;
    outline: none;
    padding-left: 10px; /* Hiệu ứng dịch chuyển nhẹ khi focus */
}

.menha-form-group input::placeholder {
    color: rgba(255,255,255,0.2);
    font-size: 14px;
}

.menha-form-submit {
    width: 100%;
    padding: 22px;
    background: #E9B211;
    color: #000 !important;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.menha-form-submit:hover {
    background: #fff;
    letter-spacing: 5px; /* Giãn chữ khi hover */
}

.menha-form-status {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.menha-form-status.success { color: #E9B211; }
.menha-form-status.error { color: #ff4d4d; }

@media screen and (max-width: 600px) {
    .menha-modal-container { margin: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; }
    .menha-modal-header { padding: 40px 20px 10px; }
    .menha-modal-body { padding: 20px 30px 40px; }
}
