/* --- POPUP CENTERING & DESIGN FIXES --- */
.modal {
    z-index: 99999 !important; /* Header ke upar dikhne ke liye */
}
.modal-backdrop {
    z-index: 99998 !important;
}
.modal-inquiry-dialog { 
    max-width: 850px; 
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    margin: 1.75rem auto;
    min-height: calc(100% - 3.5rem);
}

.modal-content-custom { 
    border-radius: 12px; 
    border: none; 
    overflow: hidden; 
    background: white; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.popup-flex-wrapper {
    display: flex;
    align-items: stretch;
    height: auto;
}

.modal-left-banner {
    flex: 0 0 35%;
    position: relative;
    background: #f8fafc;
    min-height: 350px;
}

.modal-left-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.left-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
    z-index: 2;
}

.off-card-mini {
    background: white;
    padding: 8px;
    border-radius: 6px;
    color: #1e40af;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}
.off-card-mini h2 { font-size: 22px; font-weight: 900; margin: 0; line-height: 1; }
.off-card-mini span { font-size: 9px; color: #333; text-transform: uppercase; font-weight: 700; }

.modal-right-form { 
    flex: 1; 
    padding: 20px 30px;
    background: white;
    position: relative;
}

.form-head-title { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 1px; }
.form-head-subtitle { font-size: 11px; color: #666; margin-bottom: 12px; }

.popup-input-group { position: relative; margin-bottom: 6px; }
.popup-input-group i { position: absolute; left: 12px; top: 10px; color: #94a3b8; font-size: 11px; }

.popup-field {
    width: 100%;
    height: 32px; 
    padding: 0 10px 0 35px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 12px;
    outline: none;
    transition: all 0.2s;
}
.popup-field:focus { border-color: #1e40af; background: #f8fafc; }

textarea.popup-field {
    height: 50px;
    padding-top: 6px;
}

.btn-submit-popup {
    background: #007bff;
    color: white;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: 5px;
    transition: background 0.2s;
}
.btn-submit-popup:hover { background: #0056b3; }

.legal-note { font-size: 10px; color: #64748b; margin-top: 8px; display: flex; gap: 6px; align-items: flex-start; text-align: left;}

@media (max-width: 768px) {
    .modal-inquiry-dialog { max-width: 95%; margin: 10px auto; align-items: flex-start; }
    .modal-left-banner { display: none; }
}
