/* assets/css/iban.css */

.iban-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.iban-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Alert */
.alert {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

.alert i {
    font-size: 24px;
    color: #856404;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    color: #856404;
    margin-bottom: 5px;
    font-size: 16px;
}

.alert-content p {
    color: #856404;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* IBAN Kartları */
.iban-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.iban-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iban-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102,126,234,0.15);
}

.iban-card.other-banks {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.iban-card.other-banks .bank-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.bank-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.iban-card.other-banks .bank-icon {
    background: rgba(255,255,255,0.2);
}

.bank-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.iban-card.other-banks .bank-name {
    color: white;
}

.bank-details {
    margin-bottom: 25px;
}

.detail-row {
    margin-bottom: 20px;
}

.detail-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
    font-weight: 500;
}

.detail-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.iban-card.other-banks .detail-label {
    color: rgba(255,255,255,0.8);
}

.iban-card.other-banks .detail-value {
    color: white;
}

.iban-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iban-number {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.btn-copy {
    background: none;
    border: none;
    color: #667eea;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #f0f0f0;
    color: #764ba2;
}

.iban-card.other-banks .btn-copy {
    color: white;
}

.iban-card.other-banks .btn-copy:hover {
    background: rgba(255,255,255,0.2);
}

.info-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.iban-card.other-banks .info-text {
    color: rgba(255,255,255,0.9);
}

.bank-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.iban-card.other-banks .bank-footer {
    border-top-color: rgba(255,255,255,0.2);
}

.qr-code {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.qr-code i {
    font-size: 20px;
    color: #667eea;
}

.iban-card.other-banks .qr-code {
    color: white;
}

.iban-card.other-banks .qr-code i {
    color: white;
}

/* Havale Bildirim Formu */
.notification-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    margin-bottom: 30px;
}

.notification-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.form-actions {
    text-align: center;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

/* FAQ Bölümü */
.faq-section {
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    padding: 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 44px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* İletişim Desteği */
.contact-support {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.contact-support p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Toast Bildirimi */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left-color: #28a745;
}

.toast-success i {
    color: #28a745;
}

.toast i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .iban-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .notification-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .iban-number {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .iban-number {
        font-size: 14px;
    }
    
    .btn-copy {
        padding: 5px;
    }
}