/* style/payment-methods-e-wallet-options.css */

/* Base styles for the page content */
.page-payment-methods-e-wallet-options {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-payment-methods-e-wallet-options__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-payment-methods-e-wallet-options__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-e-wallet-options__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    line-height: 1.2;
    font-weight: bold;
}

.page-payment-methods-e-wallet-options__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* General Section Styles */
.page-payment-methods-e-wallet-options__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-e-wallet-options__section:nth-of-type(even) {
    background-color: #f0f4f7; /* Slightly different background for alternating sections */
}

.page-payment-methods-e-wallet-options__section-title {
    font-size: 2.2em;
    color: #003366; /* Main color for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-payment-methods-e-wallet-options__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary color for underline */
    border-radius: 2px;
}

.page-payment-methods-e-wallet-options__text-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-payment-methods-e-wallet-options__text-outro {
    font-size: 1em;
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0 auto;
    color: #555;
}

/* Feature Cards (Why E-Wallet Section) */
.page-payment-methods-e-wallet-options__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-payment-methods-e-wallet-options__feature-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-e-wallet-options__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15); /* Main color with transparency */
}

.page-payment-methods-e-wallet-options__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for icons */
}

.page-payment-methods-e-wallet-options__card-title {
    font-size: 1.4em;
    color: #003366; /* Main color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods-e-wallet-options__feature-card p {
    color: #666;
    font-size: 0.95em;
}

/* E-Wallet Type Cards */
.page-payment-methods-e-wallet-options__e-wallet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-payment-methods-e-wallet-options__e-wallet-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-e-wallet-options__e-wallet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
}

.page-payment-methods-e-wallet-options__e-wallet-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.page-payment-methods-e-wallet-options__e-wallet-card p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-payment-methods-e-wallet-options__list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.page-payment-methods-e-wallet-options__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-payment-methods-e-wallet-options__list li::before {
    content: '✔';
    color: #FFCC00; /* Auxiliary color for checkmark */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* How-To-Deposit Section */
.page-payment-methods-e-wallet-options__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-payment-methods-e-wallet-options__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.page-payment-methods-e-wallet-options__step-item:hover {
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1);
}

.page-payment-methods-e-wallet-options__step-number {
    counter-increment: step-counter;
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: #FFCC00; /* Auxiliary color for step number background */
    color: #003366; /* Main color for step number text */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-e-wallet-options__step-content h3 {
    font-size: 1.3em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-payment-methods-e-wallet-options__step-content p {
    color: #555;
    font-size: 0.95em;
}

.page-payment-methods-e-wallet-options__callout-box {
    background-color: #e6f2ff; /* Lighter blue variant */
    border-left: 5px solid #003366; /* Main color for border */
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
}

.page-payment-methods-e-wallet-options__callout-box p {
    margin: 0;
    color: #003366;
    font-size: 1.05em;
}

/* Benefits Section */
.page-payment-methods-e-wallet-options__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-payment-methods-e-wallet-options__benefits-list li {
    display: flex;
    align-items: flex-start;
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-e-wallet-options__benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 15px;
    color: #003366; /* Main color for benefit icons */
}

.page-payment-methods-e-wallet-options__benefits-list p {
    margin: 0;
    color: #444;
    font-size: 0.95em;
}

/* FAQ Section */
.page-payment-methods-e-wallet-options__faq-items {
    margin-top: 30px;
}

.page-payment-methods-e-wallet-options__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-payment-methods-e-wallet-options__faq-question {
    font-size: 1.2em;
    color: #003366;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-payment-methods-e-wallet-options__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-payment-methods-e-wallet-options__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods-e-wallet-options__faq-answer {
    padding: 0 25px 15px 25px;
    margin: 0;
    color: #666;
    font-size: 0.95em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-payment-methods-e-wallet-options__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px;
}

/* Call To Action (CTA) Section */
.page-payment-methods-e-wallet-options__cta {
    background: linear-gradient(135deg, #1a4d80, #003366);
    color: #FFFFFF;
    padding: 70px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.2);
}

.page-payment-methods-e-wallet-options__cta-title {
    font-size: 2.5em;
    color: #FFCC00; /* Auxiliary color for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-payment-methods-e-wallet-options__cta-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* Buttons */
.page-payment-methods-e-wallet-options__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-payment-methods-e-wallet-options__button--primary {
    background-color: #FFCC00; /* Auxiliary color for primary button */
    color: #003366; /* Main color for primary button text */
    border: 2px solid #FFCC00;
}

.page-payment-methods-e-wallet-options__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-payment-methods-e-wallet-options__button--secondary {
    background-color: transparent;
    color: #FFCC00; /* Auxiliary color for secondary button text */
    border: 2px solid #FFCC00;
}

.page-payment-methods-e-wallet-options__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366; /* Main color for secondary button text on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-payment-methods-e-wallet-options__hero-title {
        font-size: 2.2em;
    }

    .page-payment-methods-e-wallet-options__section-title {
        font-size: 1.8em;
    }

    .page-payment-methods-e-wallet-options__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-e-wallet-options__hero {
        padding: 60px 0;
    }

    .page-payment-methods-e-wallet-options__hero-title {
        font-size: 1.8em;
    }

    .page-payment-methods-e-wallet-options__hero-subtitle,
    .page-payment-methods-e-wallet-options__text-intro,
    .page-payment-methods-e-wallet-options__text-outro {
        font-size: 1em;
    }

    .page-payment-methods-e-wallet-options__section {
        padding: 40px 0;
    }

    .page-payment-methods-e-wallet-options__section-title {
        font-size: 1.6em;
    }

    .page-payment-methods-e-wallet-options__grid,
    .page-payment-methods-e-wallet-options__e-wallet-cards,
    .page-payment-methods-e-wallet-options__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-payment-methods-e-wallet-options__step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-payment-methods-e-wallet-options__step-number {
        margin: 0 auto 20px auto;
    }

    .page-payment-methods-e-wallet-options__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-payment-methods-e-wallet-options__faq-answer {
        padding: 0 20px 10px 20px;
    }

    .page-payment-methods-e-wallet-options__cta {
        padding: 50px 0;
    }

    .page-payment-methods-e-wallet-options__cta-title {
        font-size: 1.8em;
    }

    .page-payment-methods-e-wallet-options__cta-text {
        font-size: 0.95em;
    }

    .page-payment-methods-e-wallet-options__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-e-wallet-options__hero-title {
        font-size: 1.5em;
    }

    .page-payment-methods-e-wallet-options__section-title {
        font-size: 1.4em;
    }

    .page-payment-methods-e-wallet-options__cta-title {
        font-size: 1.6em;
    }

    .page-payment-methods-e-wallet-options__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}