/* style/payment-methods.css */
.page-payment-methods {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1a1a2e;
}

.page-payment-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-payment-methods__hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #0A246A 60%, #FFD700 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-payment-methods__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,lines]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-payment-methods__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-payment-methods__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0A246A;
    border-radius: 2px;
}

.page-payment-methods__text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #C0C0C0;
}

.page-payment-methods__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-payment-methods__btn--primary {
    background-color: #FFD700;
    color: #0A246A;
    border: 2px solid #FFD700;
}

.page-payment-methods__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__btn--secondary {
    background-color: #0A246A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-payment-methods__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A246A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Overview Section */
.page-payment-methods__overview-section {
    padding: 80px 0;
    background-color: #1a1a2e;
}

.page-payment-methods__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-payment-methods__feature-item {
    background-color: #0A246A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1 1 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-payment-methods__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-payment-methods__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
}

/* Deposit Withdrawal Section */
.page-payment-methods__deposit-withdrawal-section {
    padding: 80px 0;
    background-color: #282846;
}

.page-payment-methods__flow-chart {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-payment-methods__flow-item {
    background-color: #0A246A;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    flex: 1 1 450px;
    max-width: 550px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-payment-methods__flow-image {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-payment-methods__flow-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-payment-methods__flow-text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #C0C0C0;
}

/* Popular Methods Section */
.page-payment-methods__popular-methods-section {
    padding: 80px 0;
    background-color: #1a1a2e;
}

.page-payment-methods__method-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-payment-methods__method-card {
    background-color: #0A246A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1 1 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__method-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

.page-payment-methods__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-payment-methods__method-description {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-payment-methods__method-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.page-payment-methods__method-card ul li {
    font-size: 0.95em;
    color: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-payment-methods__method-card ul li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Security Section */
.page-payment-methods__security-section {
    padding: 80px 0;
    background-color: #282846;
    text-align: center;
}

.page-payment-methods__security-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 50px;
    text-align: left;
}

.page-payment-methods__security-list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.page-payment-methods__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-payment-methods__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

/* FAQ Section */
.page-payment-methods__faq-section {
    padding: 80px 0;
    background-color: #1a1a2e;
}

.page-payment-methods__faq-item {
    background-color: #0A246A;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-payment-methods__faq-item:hover {
    background-color: #1c3d82;
}

.page-payment-methods__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-payment-methods__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-question::after {
    transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: 10px;
}

/* Detail Pages Section */
.page-payment-methods__detail-pages-section {
    padding: 80px 0;
    background-color: #282846;
}

.page-payment-methods__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods__detail-item {
    background-color: #0A246A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-payment-methods__detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods__detail-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-payment-methods__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-payment-methods__detail-title a:hover {
    text-decoration: underline;
}

.page-payment-methods__detail-description {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* CTA Section */
.page-payment-methods__cta-section {
    padding: 80px 0;
    background-color: #0A246A;
    text-align: center;
    color: #FFFFFF;
}

.page-payment-methods__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods__hero-title {
        font-size: 3em;
    }
    .page-payment-methods__section-title {
        font-size: 2em;
    }
    .page-payment-methods__feature-item, .page-payment-methods__flow-item, .page-payment-methods__method-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .page-payment-methods__hero-section {
        padding: 80px 0;
    }
    .page-payment-methods__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods__hero-description {
        font-size: 1em;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods__text {
        font-size: 0.95em;
    }
    .page-payment-methods__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-payment-methods__features, .page-payment-methods__flow-chart, .page-payment-methods__method-grid, .page-payment-methods__detail-list {
        flex-direction: column;
        align-items: center;
    }
    .page-payment-methods__feature-item, .page-payment-methods__flow-item, .page-payment-methods__method-card, .page-payment-methods__detail-item {
        flex: 1 1 100%;
        max-width: 90%;
    }
    .page-payment-methods__cta-title {
        font-size: 2em;
    }
    .page-payment-methods__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero-section {
        padding: 60px 0;
    }
    .page-payment-methods__hero-title {
        font-size: 2em;
    }
    .page-payment-methods__section-title {
        font-size: 1.5em;
    }
    .page-payment-methods__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-payment-methods__feature-icon, .page-payment-methods__flow-image, .page-payment-methods__method-icon {
        width: 70px;
        height: 70px;
    }
    .page-payment-methods__feature-title, .page-payment-methods__flow-title, .page-payment-methods__method-title {
        font-size: 1.5em;
    }
    .page-payment-methods__faq-question {
        font-size: 1.2em;
    }
    .page-payment-methods__cta-title {
        font-size: 1.8em;
    }
}