/**
 * TREDAŞ - Sayfa Özel CSS'ler
 * 
 * İçerik:
 * 1. Home Page
 * 2. Başvuru Adımları
 * 3. Form Sayfası
 * 4. Durum Sorgulama
 * 5. Bilgilendirme
 */

/* ============================================
   1. HOME PAGE
   ============================================ */

.notice-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(30, 92, 168, 0.3);
    margin-bottom: 2rem;
}

.notice-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.notice-icon-inner {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.notice-badge {
    background: #e74c3c;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.notice-content {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    line-height: 1.8;
    backdrop-filter: blur(10px);
}

.notice-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.notice-content strong {
    color: #ffd700;
}

.cta-section {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.requirements-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.requirements-section h3 {
    color: #1e5fa8;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.requirements-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.requirements-list li {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.requirements-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   2. BAŞVURU ADIMLARI
   ============================================ */

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: #1e5fa8;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 95, 168, 0.4);
}

.step.completed .step-number {
    background: #27ae60;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.step.active .step-label {
    color: #1e5fa8;
    font-weight: 600;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: #ddd;
    margin: 0 -1rem;
    margin-top: -2rem;
}

.step.completed + .step-connector {
    background: #27ae60;
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title h1 {
    color: #1e5fa8;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-title p {
    color: #666;
    font-size: 1.1rem;
}

.selected-info {
    background: #e8f0f8;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    border-left: 4px solid #1e5fa8;
}

.selected-info strong {
    color: #1e5fa8;
    font-size: 1.1rem;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.selection-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.selection-card:hover {
    border-color: #1e5fa8;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 95, 168, 0.15);
}

.selection-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.selection-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.selection-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    color: #856404;
}

.info-note strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.back-btn:hover {
    border-color: #1e5fa8;
    color: #1e5fa8;
}

/* ============================================
   3. FORM SAYFASI
   ============================================ */

.form-header {
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 0;
    margin: -2rem -2rem 2rem;
}

.form-header h1 {
    font-size: 1.8rem;
    margin: 0;
}

.form-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #1e5fa8;
}

.form-section-title {
    font-size: 1.3rem;
    color: #1e5fa8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-grid.full {
    grid-template-columns: 1fr;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background-color: #f8f9fa;
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1e5fa8;
}

.form-help {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

/* ============================================
   4. DURUM SORGULAMA
   ============================================ */

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title h1 {
    color: #1e5fa8;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-title p {
    color: #666;
    font-size: 1.1rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.btn-search {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1e5fa8 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 95, 168, 0.3);
}

.result-box {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.result-icon.success {
    background: #d5f5e3;
    color: #27ae60;
}

.result-icon.pending {
    background: #fef5e7;
    color: #f39c12;
}

.result-icon.rejected {
    background: #fadbd8;
    color: #e74c3c;
}

.result-title h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.result-title p {
    color: #666;
    font-size: 0.95rem;
}

.result-details {
    display: grid;
    gap: 1rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #333;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.status-badge.success {
    background: #d5f5e3;
    color: #27ae60;
}

.status-badge.pending {
    background: #fef5e7;
    color: #f39c12;
}

.status-badge.rejected {
    background: #fadbd8;
    color: #e74c3c;
}

/* ============================================
   5. BİLGİLENDİRME
   ============================================ */

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #e8f0f8;
}

.page-header h1 {
    color: #1e5fa8;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    color: #666;
    font-size: 1.15rem;
}

.content-section {
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e5fa8;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-icon {
    font-size: 2rem;
}

.text-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    line-height: 1.8;
    color: #333;
    border-left: 4px solid #1e5fa8;
}

.text-content p {
    margin-bottom: 1rem;
}

.text-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.text-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.text-content strong {
    color: #1e5fa8;
    font-weight: 600;
}

.accordion {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header.active {
    background: #e8f0f8;
    color: #1e5fa8;
}

.accordion-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-body {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box strong {
    display: block;
    color: #d35400;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.document-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.document-item {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.document-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(4px);
}

.document-icon {
    font-size: 2rem;
}

.document-text {
    flex: 1;
}

.contact-box {
    background: linear-gradient(135deg, #1e5fa8 0%, #2980b9 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.contact-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-item-icon {
    font-size: 3rem;
}

.contact-item-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-item-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .step-indicator {
        overflow-x: auto;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        margin: -2rem -1rem 2rem;
        padding: 1rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .search-box {
        padding: 1.5rem;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ============================================
   DOWNLOAD LINKS
   ============================================ */

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e5fa8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #e8f4f8;
    border-radius: 6px;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.download-link:hover {
    background: #1e5fa8;
    color: white;
    transform: translateX(5px);
}

.document-text small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.form-section h2 {
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px solid #000;
    margin-bottom: 25px;
}