/* Payments Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.methods-table-container h2 {
    color: #1a472a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.payment-methods-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-methods-table th {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 1rem 0.8rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-methods-table td {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.9rem;
    vertical-align: top;
}

.payment-methods-table tr:hover {
    background-color: #f8f9fa;
}

.payment-methods-table tr:last-child td {
    border-bottom: none;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.payment-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Speed Indicators */
.speed-instant {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speed-fast {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speed-medium {
    background: linear-gradient(135deg, #fd7e14 0%, #ff922b 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speed-slow {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Withdrawal FAQ Section */
.withdrawal-faq-section {
    padding: 4rem 0;
    background: white;
}

.withdrawal-faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-question h3 {
    color: #1a472a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #28a745;
    color: white;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #555;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.faq-answer strong {
    color: #1a472a;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .payment-methods-table th,
    .payment-methods-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .payment-method {
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .withdrawal-faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .payment-methods-table th,
    .payment-methods-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .speed-instant,
    .speed-fast,
    .speed-medium,
    .speed-slow {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}