.form-fullscreen {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #fff; z-index: 10000;
    display: flex; flex-direction: column;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.form-body {
    flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px;
}

.step-view {
    display: none; width: 100%; max-width: 600px;
}

.step-view.active { display: block; animation: fadeIn 0.5s; }

.step-question { font-size: 32px; font-weight: 600; margin-bottom: 30px; color: #000; }

/* Dikey Seçenek Kutuları */
.vertical-options { display: flex; flex-direction: column; gap: 10px; }

.option-item {
    padding: 15px 20px; border: 1px solid #e0e0e0; border-radius: 8px;
    cursor: pointer; transition: all 0.2s; display: flex; align-items: center;
    background: #f8f8f8;
}

.option-item:hover { background: #eee; }
.option-item.selected { border-color: #000; background: #e0e0e0; font-weight: bold; }
.option-item input { display: none; }

.form-next-btn {
    background: #222; color: #fff; border: none; padding: 12px 40px;
    border-radius: 5px; font-size: 18px; cursor: pointer; margin-top: 30px;
}

.enter-hint { font-size: 13px; color: #888; margin-left: 15px; }

/* Sağ Alt Oklar */
.form-navigation-controls {
    position: absolute; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 5px;
}
.form-navigation-controls button {
    background: #222; color: #fff; border: none; width: 40px; height: 40px; border-radius: 4px; cursor: pointer;
}
/* Form Üst Bilgi ve Kapatma Butonu */
.form-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
}

.progress-bar-wrapper {
    flex: 1;
    height: 4px;
    background: #f0f0f0;
    margin-right: 40px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 10%; /* JS ile güncellenecek */
    height: 100%;
    background: #000;
    transition: width 0.4s ease;
}

.form-close-x {
    background: #f5f5f5;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 45px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.form-close-x:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg);
}

/* Navigasyon Kontrolleri (Sağ Alt) */
.form-navigation-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
}

.form-navigation-controls button {
    background: #fff;
    color: #000;
    border: 1px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-navigation-controls button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
}

.form-navigation-controls button:active {
    transform: translateY(0);
}

/* İnce dokunuşlar */
.custom-text-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.custom-text-input:focus {
    border-color: #000;
}
.other-input-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dynamic-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 18px;
    color: #000;
}

.input-confirm-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

