/* Payments Page Specific Styles */

.payments-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
}

.payments-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #00ff7f;
    animation: fadeInUp 0.8s ease-out;
}

.payments-hero p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.payment-methods {
    padding: 80px 0;
}

.payment-methods h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.methods-grid {
    display: grid;
		max-width: 1200px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.method-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.method-card.featured {
    border: 2px solid #ffd700;
    transform: scale(1.02);
    background: rgba(26, 26, 46, 0.95);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 127, 0.1), transparent);
    transition: left 0.5s ease;
}

.method-card:hover::before {
    left: 100%;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
}

.method-card.featured:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.method-card.featured .method-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    animation: pulse 2s infinite;
}

.method-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
		border-radius: 30px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.method-card.featured .method-icon i {
    color: #000000;
}

.method-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.method-card.featured .method-info h3 {
    color: #ffd700;
}

.method-info p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.method-features span {
    color: #00ff7f;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.method-features span::before {
    content: '✓';
    color: #00ff7f;
    font-weight: bold;
}

.method-btn {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.method-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.4);
}

.quick-facts {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.quick-facts h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #00bfff;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.fact-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: #00bfff;
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
}

.fact-number {
    font-size: 32px;
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 10px;
}

.fact-label {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.payment-process {
    padding: 80px 0;
}

.payment-process h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

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

.action-section {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    animation: fadeInUp 0.8s ease-out;
    flex: 1;
    min-width: 250px;
    justify-content: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
}

.action-btn.secondary {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #ffffff;
}

.action-btn.tertiary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000000;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.security-section {
    padding: 80px 0;
}

.security-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffd700;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.security-item {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.security-item i {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.security-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payments-hero h1 {
        font-size: 32px;
    }
    
    .payments-hero p {
        font-size: 16px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 25px;
    }
    
    .method-card.featured {
        transform: none;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        min-width: 100%;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .payments-hero {
        padding: 40px 0;
    }
    
    .payments-hero h1 {
        font-size: 28px;
    }
    
    .payment-methods, .quick-facts, .payment-process, .action-section, .security-section {
        padding: 40px 0;
    }
    
    .method-card, .security-item {
        padding: 20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 28px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .fact-number {
        font-size: 28px;
    }
    
    .security-item i {
        font-size: 40px;
    }
}