/* Payments Page Specific Styles */

/* Payments Hero */
.payments-hero {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.payments-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: zoomIn 1s ease-out;
}

.payments-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: zoomIn 1s ease-out 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    animation: zoomIn 1s ease-out 0.4s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #ffd700;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.method-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.method-card.crypto {
    border-color: #f7931e;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.method-card p {
    color: #666;
    margin-bottom: 20px;
}

.method-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.method-limits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: left;
}

.limit-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.limit-item:last-child {
    margin-bottom: 0;
}

.limit-label {
    color: #666;
}

.limit-value {
    font-weight: 600;
    color: #333;
}

/* Payment Tips */
.payment-tips {
    padding: 80px 0;
    background: white;
}

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

.tip-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 4px solid #6f42c1;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tip-highlight {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Security Features */
.security-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

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

.security-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.security-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Payment Process */
.payment-process {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.process-tab {
    background: transparent;
    border: 2px solid #6f42c1;
    color: #6f42c1;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-tab.active,
.process-tab:hover {
    background: #6f42c1;
    color: white;
    transform: translateY(-2px);
}

.method-image {
    display: block;
		margin: 0 auto;
    margin-bottom: 18px;
    height: 56px;
    width: 56px;
    background: linear-gradient(45deg, #f8f9fa 60%, #e83e8c22 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(111, 66, 193, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.method-card:hover .method-image {
    box-shadow: 0 8px 32px rgba(111, 66, 193, 0.18);
    transform: scale(1.07) rotate(-3deg);
}

.method-image img {
    width: 100%;
		height: 100%;
		object-fit: cover;
}

.method-card:hover .method-image img {
    filter: drop-shadow(0 4px 12px rgba(232,62,140,0.18));
}


.process-content {
    display: none;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

/* Payment Limits Table */
.payment-limits {
    padding: 80px 0;
    background: white;
}

.limits-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.limits-table th,
.limits-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.limits-table th {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.limits-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.limits-table td:first-child i {
    margin-right: 8px;
    color: #6f42c1;
}

.featured-row {
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
}

.limits-table tr:hover {
    background: #f8f9fa;
}

.featured-row:hover {
    background: linear-gradient(135deg, #f0e6ff 0%, #f8f9fa 100%);
}

.fast {
    color: #28a745;
    font-weight: 600;
}

.fastest {
    color: #dc3545;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.medium {
    color: #ffc107;
    font-weight: 600;
}

.slow {
    color: #6c757d;
    font-weight: 600;
}

.free {
    color: #28a745;
    font-weight: 600;
}

/* Payments CTA */
.payments-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

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

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .payments-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card.featured {
        transform: none;
    }
    
    .method-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .process-tabs {
        gap: 10px;
    }
    
    .process-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .limits-table {
        font-size: 12px;
    }
    
    .limits-table th,
    .limits-table td {
        padding: 15px 10px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .payments-hero {
        padding: 60px 0;
    }
    
    .payments-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .limits-table-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .limits-table th,
    .limits-table td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}