/* --- MODAL OVERLAY --- */
.pars-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(18, 66, 138, 0.153); /* Derin Pars Mavisi */
    backdrop-filter: blur(20px); /* Maksimum cam efekti */
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pars-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* --- MODAL WINDOW (İkiye Bölünmüş Yapı) --- */
.pars-modal-window {
    background: #fff;
    width: 95%;
    max-width: 1100px;
    height: 85vh;
    border-radius: 40px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    transform: scale(0.9) translateY(30px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.pars-modal-overlay.active .pars-modal-window {
    transform: scale(1) translateY(0);
}

/* --- SOL PANEL (ASIDE) --- */
.modal-aside {
    flex: 0 0 35%;
    background: #103b7b; /* Pars Mavisi */
    color: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Arka plana şık bir doku ekleyelim */
.modal-aside::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('path/to/industrial-pattern.png'); /* Hafif bir teknik çizim dokusu */
    opacity: 0.1;
}

.aside-tag {
    color: #ff6b00;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.modal-aside h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    line-height: 1.2;
}

.modal-aside p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.aside-footer {
    margin-top: auto;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- SAĞ PANEL (FORM) --- */
.modal-main {
    flex: 1;
    background: #fff;
    position: relative;
    padding: 20px;
}

.iframe-container {
    width: 100%;
    height: 100%;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* --- KAPATMA BUTONU --- */
.pars-close-btn {
    position: absolute;
    top: 20px; right: 25px;
    background: #f0f4f8;
    border: none;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #103b7b;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
}

.pars-close-btn:hover {
    background: #ff6b00;
    color: #fff;
    transform: rotate(90deg);
}

/* --- RESPONSIVE (Mobilde Sol Paneli Gizle) --- */
@media (max-width: 991px) {
    .modal-aside { display: none; }
    .pars-modal-window { width: 100%; height: 100%; border-radius: 0; }
}