/* Payments Page Specific Styles */

/* Payments Hero Section */
.payments-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1e3c72 50%, #2a5298 100%);
    margin-top: 90px;
		padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.payment-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    animation: pulse 3s infinite;
}

.bkash {
    background: linear-gradient(135deg, #e2136e, #c91162);
    animation-delay: 0s;
}

.nagad {
    background: linear-gradient(135deg, #f47920, #e6691a);
    animation-delay: 0.5s;
}

.rocket {
    background: linear-gradient(135deg, #8e44ad, #732d91);
    animation-delay: 1s;
}

.upay {
    background: linear-gradient(135deg, #3498db, #2980b9);
    animation-delay: 1.5s;
}

.crypto {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    animation-delay: 2s;
}

.speed-indicator {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.5rem;
    animation: glow 2s infinite;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title .title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    animation: glow 3s ease-in-out infinite;
}

.hero-title .title-sub {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    animation: pulse 2s infinite;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.payment-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.payment-tab.active,
.payment-tab:hover {
    background: var(--primary-gradient);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.3);
}

.payment-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.payment-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.payment-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.payment-card.crypto-card {
    border-left: 4px solid #f39c12;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.payment-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.method-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.popular-badge,
.speed-badge,
.reliable-badge,
.new-badge,
.crypto-badge,
.global-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-badge {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    animation: pulse 2s infinite;
}

.speed-badge {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.reliable-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.new-badge {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.crypto-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.global-badge {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.payment-details {
    margin-bottom: 20px;
}

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

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

.detail-label {
    color: var(--text-gray);
    font-weight: 500;
}

.detail-value {
    color: var(--text-light);
    font-weight: 600;
}

.detail-value.instant {
    color: #27ae60;
    font-weight: 700;
}

.detail-value.free {
    color: var(--secondary-color);
    font-weight: 700;
}

.payment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature {
    background: rgba(50, 205, 50, 0.1);
    color: #32cd32;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

.payment-btn,
.crypto-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 60, 114, 0.4);
}

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

.crypto-btn:hover {
    box-shadow: 0 8px 15px rgba(243, 156, 18, 0.4);
}

/* Payment Process */
.payment-process {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1d3a 0%, var(--dark-bg) 100%);
}

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

.process-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.process-tab.active,
.process-tab:hover {
    background: var(--primary-gradient);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.3);
}

.process-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    min-width: 180px;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-card.success {
    border-color: #27ae60;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
}

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

.step-card.success .step-number {
    background: linear-gradient(135deg, #27ae60, #229954);
    border-color: #27ae60;
}

.step-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.step-time {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.step-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Payment Security */
.payment-security {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1d3a 100%);
}

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

.security-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.security-card:hover .security-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
}

.security-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.security-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Payment FAQ */
.payment-faq {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1d3a 0%, var(--dark-bg) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.faq-question h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-card.active .faq-answer {
    max-height: 200px;
}

/* Payment CTA */
.payment-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5298 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-shadow: var(--neon-glow) var(--secondary-color);
}

.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.fact-item i {
    color: #32cd32;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.fact-item span {
    color: var(--text-light);
    font-weight: 500;
}

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

.btn-cta.primary {
    background: linear-gradient(135deg, var(--secondary-color), #ffed4a);
    color: var(--dark-bg);
}

.btn-cta.secondary {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

.btn-cta.tertiary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payments-hero {
        margin-top: 110px;
        padding: 50px 0;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-title .title-sub {
        font-size: 1.4rem;
    }

    .payment-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-card {
        padding: 20px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 15px;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .quick-facts {
        gap: 12px;
    }

    .fact-item {
        padding: 12px 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-main {
        font-size: 2rem;
    }

    .hero-title .title-sub {
        font-size: 1.2rem;
    }

    .payment-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .payment-card {
        padding: 25px 20px;
    }

    .payment-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-card {
        min-width: 150px;
        padding: 20px 15px;
    }

    .process-steps {
        gap: 10px;
    }
}

/* Interactive Elements */
.faq-card {
    cursor: pointer;
}

.faq-card:hover .faq-question i {
    color: var(--text-light);
}

/* Payment method animations */
.payment-icon {
    transition: all 0.3s ease;
}

.payment-animation:hover .payment-icon {
    transform: scale(1.1);
}

/* Tab switching animations */
.payment-content,
.process-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.payment-content.active,
.process-content.active {
    opacity: 1;
    transform: translateY(0);
}