/* Genel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #2c3e50;
}

.page-wrapper {
    padding: 2rem 0;
}

/* Üst Banner */
.top-banner {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo {
    max-height: 80px;
    margin-bottom: 1rem;
}

.top-banner h1 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.top-banner .lead {
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Form Kartı */
.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 2rem;
}

/* İlerleme Adımları */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 33.333%;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: #95a5a6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: #b0cb1f;
    border-color: #b0cb1f;
    color: white;
    transform: scale(1.1);
}

.step-text {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 500;
}

.step.active .step-text {
    color: #b0cb1f;
}

/* Form Bölümleri */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* Form Elemanları */
.form-floating {
    margin-bottom: 1rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #b0cb1f;
    box-shadow: 0 0 0 0.25rem rgba(176, 203, 31, 0.15);
}

/* Oturum Kartları */
.oturum-cards {
    margin: 2rem 0;
}

.oturum-card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    border: 2px solid #e0e0e0;
    display: block;
    margin: 0;
}

input[type="radio"] {
    display: none;
}

.oturum-card:hover {
    transform: translateY(-5px);
    border-color: #b0cb1f;
    box-shadow: 0 10px 20px rgba(176, 203, 31, 0.1);
}

/* Seçili oturum kartı stilleri */
input[type="radio"]:checked + .oturum-card {
    border: 3px solid #b0cb1f;
    background: #ffffff;
    box-shadow: none;
}

input[type="radio"]:checked + .oturum-card .oturum-info i {
    transform: scale(1.1);
    color: #b0cb1f;
}

.oturum-info {
    color: #2c3e50;
}

.oturum-info i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #b0cb1f;
    transition: all 0.3s ease;
}

.oturum-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.oturum-info p {
    font-size: 1rem;
    margin: 0;
    color: #6c757d;
}

/* Butonlar */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #b0cb1f 0%, #96ac19 100%);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #b0cb1f 0%, #96ac19 100%);
    border: none;
}

.btn-outline-primary {
    color: #b0cb1f;
    border-color: #b0cb1f;
}

.btn-outline-primary:hover {
    background: #b0cb1f;
    border-color: #b0cb1f;
    color: white;
}

.text-primary {
    color: #b0cb1f !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 1rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .step-text {
        display: none;
    }
    
    .progress-steps {
        margin-bottom: 2rem;
    }
}
