/* Payments Page Specific Styles */

/* Payments Hero */
.payments-hero {
    padding: 3rem 0;
    background: radial-gradient(circle at 40% 30%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    text-align: center;
}

.payments-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payments-hero h2 {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.payments-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.payment-methods h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.method-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card.featured {
    border: 2px solid var(--success-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(26, 26, 46, 0.8) 50%);
    transform: scale(1.02);
}

.method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.method-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.method-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.most-popular,
.fastest,
.reliable,
.private,
.international,
.traditional {
    position: absolute;
    top: -0.5rem;
    right: 0;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.most-popular {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.fastest {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation: bounce 1s ease-in-out infinite;
}

.reliable {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.private {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.international {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.traditional {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

.method-details {
    position: relative;
    z-index: 1;
}

.method-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.stat i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.stat span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.method-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Banking Tips */
.banking-tips {
    padding: 4rem 0;
    background: rgba(15, 15, 26, 0.5);
}

.banking-tips h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.tip-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-success);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--success-color);
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-icon {
    margin-bottom: 1rem;
}

.tip-icon i {
    font-size: 2.5rem;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* FAQs Section */
.faqs-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.faqs-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.faq-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Security Section */
.security-section {
    padding: 4rem 0;
    background: rgba(15, 15, 26, 0.5);
}

.security-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-feature {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--success-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(26, 26, 46, 0.8) 50%);
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--success-color);
}

.security-icon {
    margin-bottom: 1rem;
}

.security-icon i {
    font-size: 3rem;
    color: var(--success-color);
}

.security-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.security-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Withdrawal Process */
.withdrawal-process {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.withdrawal-process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.step {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem auto;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: rgba(15, 15, 26, 0.5);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .method-card.featured {
        transform: none;
    }
    
    .method-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .payments-hero {
        padding: 2rem 0;
    }
    
    .payments-hero h1 {
        font-size: 2rem;
    }
    
    .payments-hero h2 {
        font-size: 1.3rem;
    }
    
    .payment-methods,
    .banking-tips,
    .faqs-section,
    .security-section,
    .withdrawal-process {
        padding: 2rem 0;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .method-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .method-header img {
        width: 50px;
        height: 50px;
    }
    
    .most-popular,
    .fastest,
    .reliable,
    .private,
    .international,
    .traditional {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    .tips-grid,
    .faqs-grid,
    .security-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .method-card,
    .tip-card,
    .faq-card,
    .security-feature,
    .step {
        padding: 1rem;
    }
    
    .method-header h3 {
        font-size: 1.3rem;
    }
    
    .method-stats {
        gap: 0.5rem;
    }
    
    .stat {
        padding: 0.4rem;
    }
    
    .tip-icon i,
    .security-icon i {
        font-size: 2rem;
    }
    
    .faq-question i {
        font-size: 1.2rem;
    }
}