/* Payments Page Specific Styles */

.payments-hero {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="80" cy="30" r="6" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="30" cy="70" r="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="70" cy="80" r="7" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    animation: paymentFloat 25s ease-in-out infinite;
}

@keyframes paymentFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-8px) scale(1.02); }
    50% { transform: translateY(-15px) scale(1.05); }
    75% { transform: translateY(-8px) scale(1.02); }
}

.payments-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.payments-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.payment-promises {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.promise {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.promise i {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 5px;
}

.promise span {
    font-weight: bold;
    font-size: 16px;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 60px;
}

.payment-methods h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.method-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.method-card.featured {
    border: 3px solid #ffd700;
    box-shadow: 0 20px 40px rgba(255,215,0,0.2);
    transform: scale(1.02);
}

.method-card.crypto {
    background: linear-gradient(145deg, #8e44ad 0%, #9b59b6 100%);
}

.method-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.method-card.featured:hover {
    transform: translateY(-10px) scale(1.04);
}

.method-header {
    padding: 25px 25px 15px;
    text-align: center;
    position: relative;
}

.popular-badge,
.crypto-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

.crypto-badge {
    background: linear-gradient(135df, #f39c12 0%, #e67e22 100%);
}

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

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.method-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
}

.method-card.crypto .method-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.method-header h3 {
    color: #ffd700;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.method-details {
    padding: 0 25px;
}

.method-info {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #b8c9e0;
    font-size: 14px;
}

.info-value {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.info-value.instant {
    color: #00b894;
}

.info-value.fast {
    color: #f39c12;
}

.info-value.free {
    color: #27ae60;
}

.method-features {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #e0e6ed;
    font-size: 14px;
}

.feature i {
    color: #27ae60;
    font-size: 12px;
}

.method-action {
    padding: 20px 25px;
    background: rgba(0,0,0,0.1);
    text-align: center;
}

.action-btn {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
}

.action-btn.secondary {
    background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
}

.action-btn.crypto {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* How It Works */
.how-it-works {
    margin-bottom: 60px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.tab-btn.active {
    background: linear-gradient(145deg, #00b894 0%, #00cec9 100%);
    box-shadow: 0 5px 15px rgba(0,184,148,0.4);
}

.process-content {
    display: none;
}

.process-content.active {
    display: block;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.step-content h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 20px;
}

.step-content p {
    color: #e0e6ed;
    line-height: 1.6;
}

/* Payment Limits Table */
.payment-limits {
    margin-bottom: 60px;
}

.payment-limits h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.limits-table {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.table-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    padding: 20px 0;
    color: #ffd700;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255,255,255,0.02);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e0e6ed;
}

.table-cell.method {
    justify-content: flex-start;
    font-weight: bold;
    color: #ffd700;
}

.table-cell.method i {
    margin-right: 10px;
    font-size: 18px;
}

.table-cell.instant {
    color: #00b894;
    font-weight: bold;
}

.table-cell.fast {
    color: #f39c12;
    font-weight: bold;
}

.table-cell.free {
    color: #27ae60;
    font-weight: bold;
}

/* Security Features */
.security-features {
    margin-bottom: 60px;
}

.security-features h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-card {
    background: linear-gradient(145deg, #27ae60 0%, #2ecc71 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.3);
}

.security-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.security-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 20px;
}

.security-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Payment FAQ */
.payment-faq {
    margin-bottom: 60px;
}

.payment-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.faq-item {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,215,0,0.1);
}

.faq-question h3 {
    color: #ffd700;
    font-size: 18px;
    margin: 0;
}

.faq-question i {
    color: #ffd700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #e0e6ed;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.payment-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.payment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="10,40 30,20 50,40 70,20 90,40 90,60 70,80 50,60 30,80 10,60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    animation: ctaPattern 20s ease-in-out infinite;
}

@keyframes ctaPattern {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.payment-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.payment-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,184,148,0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payments-hero {
        padding: 40px 20px;
    }
    
    .payments-hero h1 {
        font-size: 28px;
    }
    
    .payment-promises {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .table-cell.method {
        justify-content: center;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Loading Animation for Method Cards */
@keyframes methodPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.method-card.loading {
    animation: methodPulse 2s ease-in-out infinite;
}

/* Success Animation */
@keyframes successGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(39, 174, 96, 0.3); }
    50% { box-shadow: 0 0 30px rgba(39, 174, 96, 0.6), 0 0 40px rgba(39, 174, 96, 0.4); }
}

.method-card.success {
    animation: successGlow 3s ease-in-out infinite;
    border: 2px solid #27ae60;
}