

/* ===== ANA CARD ===== */
.card-tuzyem {
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e1e4eb;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);

}


    /* Card Header */
    .card-tuzyem .card-header {
     
        border-bottom: 1px solid #e0e0e0;
    }

        .card-tuzyem .card-header .card-title {
           
            font-size: 1rem;
           
        }



/* Adım Göstergesi */
css.step-indicator {
    position: absolute; /* Sabit pozisyon */
    top: 2rem; /* Üstten 1.5rem */
    right: 2rem; /* Sağdan 2rem */
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}
    .step-indicator strong {
        font-weight: 700;
        font-size: 1.1rem;
        color: #007bff;
    }

/* ===== TAB SİSTEMİ ===== */
.tab-container {
    display: flex;
    background: #f5f5f5;
    border-bottom: 2px solid #e0e0e0;
    padding: 0;
    gap: 0;
}

/* Tab Buttons */
.tab-button {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    color: #6c757d;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

    .tab-button:hover:not(:disabled) {
        background: #e8e8e8;
    }

    .tab-button.active {
        background: white;
        color: #007bff;
        border-bottom: 3px solid #007bff;
    }

    .tab-button.completed {
        background-color: rgba(0, 230, 130, 0.1) !important;
        color: #09ad95 !important;
    }

        .tab-button.completed::after {
            content: "✓";
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #09ad95 !important;
        }

    .tab-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .tab-button i {
        font-size: 1.1rem;
    }

/* ===== TAB İÇERİK ===== */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Body */
.card-tuzyem .card-body {
    padding: 2rem;
}

/* ===== FORM STİLLERİ ===== */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    }

.input-group-text {
    border-radius: 8px 0 0 8px;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    padding: 0.75rem 1rem;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

/* ===== NAVİGASYON BUTONLARI ===== */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    gap: 15px;
}

    .nav-buttons .btn {
        padding: 0.65rem 1.5rem;
    }

/* ===== LOADING ANİMASYONU ===== */
.btn .fe-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==============================================
   STEP 2: SÜREÇ BİLGİLERİ
   ============================================== */

/* Süreç Header */
.process-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
}

    .process-header h4 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .process-header p {
        font-size: 1.05rem;
        margin-bottom: 0;
    }

/* Süreç Kartları */
.process-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
}

    .process-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-color: #667eea;
    }

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .process-icon i {
        font-size: 28px;
    }

.process-content {
    flex: 1;
}

    .process-content h5 {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        font-size: 1.15rem;
    }

    .process-content p {
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .process-content strong {
        color: #2c3e50;
        font-weight: 600;
    }

/* Başvuru Aşamaları Timeline */
.process-timeline-wrapper {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 1rem 0;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
        z-index: 0;
    }

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
}

.step-info h6 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.step-info small {
    color: #6c757d;
    font-size: 0.85rem;
}

/* ==============================================
   STEP 3: BAĞIŞ BİLGİLENDİRME
   ============================================== */

/* Bağış Info Box */
.bagis-info-box {
    background: linear-gradient(to bottom, #ffffff 0%, #FFF8F2 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid #ffe4d6;
}

/* Info Card */
.info-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    min-height: 120px;
}

    .info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

    .info-icon i {
        font-size: 24px;
    }

.info-content h6 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.info-content p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Kurum Badge'leri */
.badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
}

/* ===== DOSYA YÜKLEME ===== */
.upload-area {
    border: 3px dashed #ddd;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

    .upload-area:hover {
        border-color: #007bff;
        background: #f8f9ff;
        transform: translateY(-2px);
    }

    .upload-area.dragover {
        border-color: #28a745;
        background-color: #d4edda;
        border-style: solid;
    }

    .upload-area h5 {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .upload-area p {
        margin-bottom: 0.5rem;
    }

    .upload-area .btn {
        margin-top: 0.5rem;
    }

/* Dosya Önizleme */
.file-preview {
    display: none;
	border: 1px solid #e1e4eb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    color: black;
}

    .file-preview.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 100px;
    }
}

.file-preview i {
    font-size: 1.5rem;
}

.file-preview strong {
    font-size: 1.05rem;
}

.file-preview .btn-danger {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
}

    .file-preview .btn-danger:hover {
        background: white;
        color: #dc3545;
    }


/* ==============================================
   RESPONSİVE TASARIM
   ============================================== */

@media (max-width: 991px) {
    .bagis-info-box .row > div:first-child {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .tab-button {
        font-size: 14px;
        padding: 12px 10px;
    }

        .tab-button i {
            display: none;
        }

    .nav-buttons {
        flex-direction: column;
    }

        .nav-buttons button {
            width: 100%;
        }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

        .process-timeline::before {
            left: 35px;
            top: 0;
            bottom: 0;
            width: 3px;
            height: auto;
        }

    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .step-badge {
        margin: 0;
    }

    .process-card {
        flex-direction: column;
    }

    .process-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .tab-container {
        flex-direction: column;
    }

    .tab-button {
        border-bottom: 1px solid #e0e0e0;
        border-left: 3px solid transparent;
    }

        .tab-button.active {
            border-bottom: 1px solid #e0e0e0;
            border-left: 3px solid #007bff;
        }
    .process-timeline-wrapper{
        display:none;
    }
}

/* ===============================================
   ÖZET KARTLARI STİLLERİ
   randevu.css dosyasına ekleyin
   =============================================== */

/* Özet Kartı */
.ozet-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ozet-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
}

.ozet-card-body {
    padding: 15px 20px;
}

.ozet-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.ozet-satir:last-child {
    border-bottom: none;
}

.ozet-label {
    color: #6c757d;
    font-size: 14px;
}

.ozet-value {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Özet Başlığı */
#ozetBolumu .process-header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

#ozetBolumu .process-header i {
    color: #28a745 !important;
}