/* =======================
   PAYMENTS.HTML SPECIFIC STYLES
   ======================= */

/* Payments Hero Section */
.payments-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4facfe 100%);
    position: relative;
    overflow: hidden;
}

.payments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
}

.payments-hero .floating-icons {
    position: relative;
    z-index: 1;
}

.payments-hero .floating-icons i {
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
}

.payments-hero .floating-icons i:nth-child(odd) {
    animation: paymentFloat 5s ease-in-out infinite;
}

@keyframes paymentFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-5deg); }
}

.payments-hero .floating-icons i:nth-child(even) {
    animation: paymentBounce 4s ease-in-out infinite reverse;
}

@keyframes paymentBounce {
    0%, 100% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.1) translateY(-20px); }
}

/* Payment Methods Section */
.payment-methods {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 8rem 0;
    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="card-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><rect x="10" y="20" width="30" height="20" rx="5" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23card-pattern)"/></svg>');
}

.payment-cards-layout {
    position: relative;
    z-index: 2;
}

.payment-cards-layout .payment-card {
    position: relative;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.payment-card.featured {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.payment-card.featured::after {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: featuredGlow 2s ease-in-out infinite alternate;
    z-index: 10;
}

@keyframes featuredGlow {
    from { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7); }
}

.payment-card:hover {
    transform: rotateY(8deg) translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.payment-card.featured:hover {
    transform: scale(1.08) translateY(-10px) rotateY(5deg);
}

.payment-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.payment-card:hover .payment-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: iconShine 3s linear infinite;
}

.payment-info {
    position: relative;
    z-index: 2;
}

.payment-info h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.payment-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.payment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-features .feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.payment-features .feature i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.payment-features .feature span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.payment-badge.best {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Pro Tips Section */
.pro-tips {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 8rem 0;
    position: relative;
}

.pro-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%);
    background-size: 50px 50px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.tip-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.tip-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.tip-card:nth-child(odd):hover {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
}

.tip-card:nth-child(even):hover {
    transform: translateY(-15px) scale(1.03) rotate(-1deg);
}

.tip-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.tip-card:hover .tip-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.tip-icon::after {
    content: '💡';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    animation: tipGlow 2s ease-in-out infinite alternate;
}

@keyframes tipGlow {
    from { transform: scale(1); opacity: 0.7; }
    to { transform: scale(1.2); opacity: 1; }
}

.tip-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tip-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tip-details {
    background: rgba(79, 172, 254, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-details .detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tip-details .detail:hover {
    background: white;
    transform: translateX(5px);
}

.tip-details .detail i {
    font-size: 1.2rem;
    color: #4facfe;
}

.tip-details .detail span {
    color: #333;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 8rem 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.tab {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 3rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(15px);
}

.tab:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.tab.active {
    background: rgba(255, 255, 255, 0.9);
    color: #43e97b;
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.3);
    transform: translateY(-5px);
}

.tab i {
    font-size: 1.2rem;
}

.process-content {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    transition: all 0.5s ease;
}

.process-steps:not(.active) {
    display: none;
}

.step {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(67, 233, 123, 0.4);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(67, 233, 123, 0.3);
    border-radius: 50%;
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-content img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-content img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Payment Security Section */
.payment-security {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 8rem 0;
    position: relative;
}

.payment-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.security-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fa709a, #fee140);
}

.security-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.security-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.security-card:hover .security-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(250, 112, 154, 0.4);
}

.security-icon::after {
    content: '🔒';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    animation: securityBlink 2s ease-in-out infinite;
}

@keyframes securityBlink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.security-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.security-card p {
    color: #666;
    line-height: 1.6;
}

/* Payment Limits Section */
.payment-limits {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 8rem 0;
    position: relative;
}

.payment-limits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="limit-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23limit-pattern)"/></svg>');
}

.limits-table {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.table-header {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: 1rem;
    font-weight: bold;
    position: relative;
}

.table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    background-size: 20px 20px;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.table-row::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 237, 234, 0.2), transparent);
    transition: left 0.6s ease;
}

.table-row:hover::before {
    left: 100%;
}

.table-row:hover {
    background: rgba(168, 237, 234, 0.1);
    transform: translateX(10px);
}

.table-row .col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.table-row .col.method {
    justify-content: flex-start;
    font-weight: bold;
}

.table-row .col.method i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #a8edea;
}

.table-row .col.best {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3);
    animation: bestTime 2s ease-in-out infinite alternate;
}

@keyframes bestTime {
    from { box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3); }
    to { box-shadow: 0 8px 25px rgba(67, 233, 123, 0.5); }
}

/* Payment FAQ Section */
.payment-faq {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0;
    position: relative;
}

.payment-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.faq-accordion {
    position: relative;
    z-index: 2;
}

.faq-accordion .faq-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-accordion .faq-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.faq-card h3 {
	color: #2c3e50;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-card h3 i {
	color: #3498db;
	font-size: 20px;
}

.faq-card p {
	color: #555;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
	padding-left: 30px;
}

.faq-question {
    padding: 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    background-size: 30px 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-card.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.98);
}

.faq-card.active .faq-answer {
    max-height: 300px;
    padding: 2.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive Design for Payments */
@media (max-width: 768px) {
    .payment-cards-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-card {
        transform: none !important;
    }
    
    .payment-card:hover {
        transform: translateY(-10px) !important;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
    }
    
    .tips-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-tabs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .limits-table .table-header,
    .limits-table .table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .limits-table .table-row .col.method {
        justify-content: center;
    }
    
    .faq-question {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-answer {
        padding: 0 2rem;
    }
    
    .faq-card.active .faq-answer {
        padding: 2rem;
    }
}
