/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button i {
    margin-right: 8px;
}

/* Hero Section */
.payments-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.1));
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.payments-hero h1 {
    font-weight: 700;
    color: #0d6efd;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d6efd;
    font-weight: 600;
}

/* Payment Methods */
.payment-category {
    margin-bottom: 3rem;
}

.payment-category h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #333;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.method-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card img {
    height: 50px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.method-card .bank-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Security Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Payment Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* FAQs */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: #fff;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: #fff;
}

/* Support Section */
.support-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.support-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.support-card i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.support-info {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Payment Modal */
.modal-content {
    border-radius: 10px;
}

.card-payment-form,
.mobile-wallet-form {
    padding: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .support-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        gap: 1rem;
    }

    .step::after {
        display: none;
    }
} 