/* Ana Container */
#elementor-popup-modal-24 .multi-step-form {
    background: #1A1D26;
    border-radius: 24px;
    padding: 40px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

/* Header - Güncellendi */
#elementor-popup-modal-24 .form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#elementor-popup-modal-24 .form-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin: 0;
}

/* Progress Bar */
#elementor-popup-modal-24 .form-progress {
    margin-bottom: 60px;
}

#elementor-popup-modal-24 .progress-container {
    position: relative;
    padding: 0;
    margin: 0 40px;
}

#elementor-popup-modal-24 .progress-line {
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

#elementor-popup-modal-24 .progress-completed {
    position: absolute;
    top: 50%;
    left: 8px;
    height: 2px;
    background: #6366F1;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

#elementor-popup-modal-24 .progress-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#elementor-popup-modal-24 .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

#elementor-popup-modal-24 .dot.active {
    background: #6366F1;
}

#elementor-popup-modal-24 .dot-label {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

#elementor-popup-modal-24 .dot.active .dot-label {
    color: white;
}

/* Form Steps */
#elementor-popup-modal-24 .form-step {
    display: none;
}

#elementor-popup-modal-24 .form-step.active {
    display: block;
}

#elementor-popup-modal-24 .form-step h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: white;
    font-weight: 500;
}

/* Option Grid */
#elementor-popup-modal-24 .option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 40px;
    margin-bottom: 40px;
}

#elementor-popup-modal-24 .option-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#elementor-popup-modal-24 .option-box:hover,
#elementor-popup-modal-24 .option-box.selected {
    background: #6366F1;
    border-color: #6366F1;
}

#elementor-popup-modal-24 .option-text {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

/* Form Inputs */
#elementor-popup-modal-24 .form-inputs {
    padding: 0 40px;
}

#elementor-popup-modal-24 .form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
}

#elementor-popup-modal-24 .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Navigation Buttons */
#elementor-popup-modal-24 .form-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 40px;
    margin-top: 40px;
    position: relative;
}

#elementor-popup-modal-24 .prev-step {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#elementor-popup-modal-24 .prev-step:hover {
    background: rgba(255, 255, 255, 0.1);
}

#elementor-popup-modal-24 .prev-step svg {
    width: 24px;
    height: 24px;
}

#elementor-popup-modal-24 .prev-step svg path {
    stroke: white;
}

#elementor-popup-modal-24 .next-step {
    background: #6366F1;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.3s ease;
}

#elementor-popup-modal-24 .next-step.active {
    opacity: 1;
    pointer-events: auto;
}

#elementor-popup-modal-24 .next-step:hover {
    background: #5457d6;
}

/* Submit Button */
#elementor-popup-modal-24 .submit-button {
    background: #6366F1;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 24px;
    transition: all 0.3s ease;
}

#elementor-popup-modal-24 .submit-button:hover {
    background: #5457d6;
}

/* Close Button */
#elementor-popup-modal-24 .dialog-close-button {
    top: 24px !important;
    right: 24px !important;
}

#elementor-popup-modal-24 .dialog-close-button i {
    color: white !important;
}

/* İlk adımda geri butonunu gizle */
#elementor-popup-modal-24 .step-1.active ~ .form-navigation .prev-step {
    display: none;
}

.progress-completed {
    background-color: #6C5CE7;
    height: 4px;
    transition: width 0.3s ease;
}

.dot.active {
    background-color: #6C5CE7;
}

.progress-completed {
    transition: width 0.3s ease-in-out;
}
.form-step {
    transition: opacity 0.3s ease-in-out;
}
.option-box.selected {
    background-color: #6C5CE7;
    color: white;
}
.next-step {
    background-color: #6C5CE7 !important;
    color: white !important;
    cursor: pointer !important;
}