/* Form Genel Stil */
.step-form-container {
    background-color: rgba(30, 35, 45, 0.7);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    margin: 20px 0;
    border: 1px solid rgba(101, 118, 255, 0.2);
    backdrop-filter: blur(10px);
}

.step-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-form-header h3 {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.step-form-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* İlerleme Çubuğu */
.form-progress-container {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.form-progress {
    height: 100%;
    background-color: var(--highlight-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Form Adımları */
.form-question {
    margin-bottom: 25px;
}

.form-question-title {
    margin-bottom: 15px;
}

.form-question-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
}

.form-question-input {
    margin-bottom: 15px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--highlight-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(101, 118, 255, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-question-error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
}

/* Form Butonları */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-default {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--highlight-color);
    border: 1px solid rgba(101, 118, 255, 0.5);
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-default::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.8s;
}

.btn-default:hover::after {
    left: 200%;
    transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-default:hover {
    background-color: #556ae9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 118, 255, 0.3);
}

.btn-prev {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-next, .btn-submit {
    margin-left: auto;
}

/* Form Özeti */
.form-summary {
    background-color: rgba(30, 35, 45, 0.5);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(101, 118, 255, 0.2);
}

.form-summary h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.form-summary-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.form-summary-label {
    font-weight: 500;
    min-width: 150px;
    color: rgba(255, 255, 255, 0.8);
}

.form-summary-value {
    flex: 1;
    color: #fff;
}

/* Yükleniyor Efekti */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 23, 28, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    text-align: center;
}

.loading-spinner i {
    font-size: 30px;
    color: var(--highlight-color);
    animation: spin 1s infinite linear;
}

.loading-spinner span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Form Bölümünün Arkaplan Tasarımı */
.contact-form-section {
    background-color: var(--dark-bg-color);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(101, 118, 255, 0.1), transparent 70%);
    pointer-events: none;
}

/* Tablet ve Mobil Uyumlu */
@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-next, .btn-submit, .btn-prev {
        width: 100%;
        margin-left: 0;
    }
    
    .form-summary-item {
        flex-direction: column;
    }
    
    .form-summary-label {
        margin-bottom: 5px;
    }
} 