/* Banking Page Specific Styles */

.banking-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.banking-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.banking-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.banking-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.banking-content {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.payment-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.payment-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.payment-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.payment-table th {
    padding: 1.5rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-row {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.payment-row:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.payment-row.featured {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    border-left: 4px solid #38a169;
}

.payment-row.featured:hover {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e8 100%);
}

.payment-table td {
    padding: 1.25rem;
    vertical-align: middle;
}

.method-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.payment-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.method-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-badge.recommended {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
}

.amount-cell {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.time-cell {
    text-align: center;
}

.instant {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.fast {
    background: linear-gradient(135deg, #3182ce 0%, #4299e1 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.standard {
    background: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.crypto {
    background: linear-gradient(135deg, #805ad5 0%, #9f7aea 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.fee-cell {
    font-weight: 600;
    color: #38a169;
    text-align: center;
}

.info-section {
    margin: 3rem 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-card p {
    color: #718096;
    line-height: 1.6;
}

.faq-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

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

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #edf2f7;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    color: #4a5568;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #2d3748;
}

.support-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.support-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-method {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-method h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-method p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.support-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banking-main {
        padding: 1rem 0;
    }
    
    .banking-header h1 {
        font-size: 2.5rem;
    }
    
    .banking-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .payment-section {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .payment-table {
        font-size: 0.9rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 1rem 0.75rem;
    }
    
    .method-cell {
        min-width: 150px;
    }
    
    .payment-logo {
        width: 32px;
        height: 32px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .faq-section {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .support-section {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
    }
}

/* JavaScript Interaction for FAQ */
.faq-item {
    cursor: pointer;
}

.faq-item.active .faq-question {
    background: #edf2f7;
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-section,
.info-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.payment-section:nth-child(2) { animation-delay: 0.1s; }
.payment-section:nth-child(3) { animation-delay: 0.2s; }
.info-card:nth-child(2) { animation-delay: 0.1s; }
.info-card:nth-child(3) { animation-delay: 0.2s; }