/* style/payment-methods.css */

/* Variables for colors */
:root {
    --page-payment-methods-primary-color: #003366; /* Deep Blue */
    --page-payment-methods-secondary-color: #FFCC00; /* Golden Yellow */
    --page-payment-methods-text-dark: #333333; /* Dark Gray for general text on light bg */
    --page-payment-methods-text-light: #FFFFFF; /* White for general text on dark bg */
    --page-payment-methods-background-light: #F8F8F8; /* Light background */
    --page-payment-methods-accent-light: #FFEB99; /* Lighter yellow for subtle accents */
    --page-payment-methods-border-color: #E0E0E0; /* Light border color */
}

.page-payment-methods {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-payment-methods-text-dark);
    background-color: var(--page-payment-methods-background-light);
}

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

/* Hero Section */
.page-payment-methods__hero {
    background: var(--page-payment-methods-primary-color);
    color: var(--page-payment-methods-text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-payment-methods__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-payment-methods__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-payment-methods-text-light); /* White text on deep blue */
    font-weight: bold;
    line-height: 1.2;
}

.page-payment-methods__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-payment-methods-text-light); /* White text on deep blue */
    opacity: 0.9;
}

.page-payment-methods__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-payment-methods__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-payment-methods__btn--primary {
    background-color: var(--page-payment-methods-secondary-color); /* Golden yellow button */
    color: var(--page-payment-methods-primary-color); /* Deep blue text on yellow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn--primary:hover {
    background-color: #E6B800; /* Slightly darker yellow */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__btn--secondary {
    background-color: transparent;
    color: var(--page-payment-methods-text-light); /* White text on transparent/deep blue */
    border: 2px solid var(--page-payment-methods-secondary-color); /* Yellow border */
}

.page-payment-methods__btn--secondary:hover {
    background-color: var(--page-payment-methods-secondary-color); /* Yellow background on hover */
    color: var(--page-payment-methods-primary-color); /* Deep blue text on yellow */
    transform: translateY(-2px);
}

.page-payment-methods__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}

.page-payment-methods__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-payment-methods__img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* General Section Styling */
.page-payment-methods__section {
    padding: 60px 0;
    text-align: center;
}

.page-payment-methods__section:nth-of-type(even) {
    background-color: var(--page-payment-methods-background-light);
}

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: var(--page-payment-methods-primary-color); /* Deep blue title */
    margin-bottom: 40px;
    font-weight: bold;
}

.page-payment-methods__text-content {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--page-payment-methods-text-dark);
}

.page-payment-methods__link {
    color: var(--page-payment-methods-primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-payment-methods__link:hover {
    color: var(--page-payment-methods-secondary-color);
}

/* Feature Grid */
.page-payment-methods__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-payment-methods__feature-item {
    background-color: var(--page-payment-methods-text-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-payment-methods__feature-title {
    font-size: 1.5em;
    color: var(--page-payment-methods-primary-color);
    margin-bottom: 10px;
}

.page-payment-methods__feature-description {
    color: var(--page-payment-methods-text-dark);
}

/* Method List (Deposit/Withdrawal) */
.page-payment-methods__method-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-payment-methods__method-item {
    background-color: var(--page-payment-methods-text-light);
    border: 1px solid var(--page-payment-methods-border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-payment-methods__method-name {
    font-size: 1.6em;
    color: var(--page-payment-methods-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods__method-description {
    color: var(--page-payment-methods-text-dark);
    font-size: 1em;
}

.page-payment-methods__center-btn {
    margin-top: 30px;
}

/* Lists */
.page-payment-methods__list {
    list-style-type: disc;
    text-align: left;
    max-width: 900px;
    margin: 20px auto 30px auto;
    padding-left: 30px;
    color: var(--page-payment-methods-text-dark);
    font-size: 1.1em;
}

.page-payment-methods__list li {
    margin-bottom: 10px;
}

.page-payment-methods__list strong {
    color: var(--page-payment-methods-primary-color);
}

.page-payment-methods__sub-page-list {
    list-style-type: none;
    text-align: left;
    max-width: 900px;
    margin: 20px auto 30px auto;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-payment-methods__sub-page-list li {
    background-color: var(--page-payment-methods-accent-light);
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid var(--page-payment-methods-secondary-color);
}

.page-payment-methods__sub-page-list li a {
    color: var(--page-payment-methods-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-payment-methods__sub-page-list li a:hover {
    color: var(--page-payment-methods-text-dark);
    text-decoration: underline;
}

/* Security Features */
.page-payment-methods__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-payment-methods__security-item {
    background-color: var(--page-payment-methods-text-light);
    border-left: 5px solid var(--page-payment-methods-secondary-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-payment-methods__security-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-payment-methods__security-title {
    font-size: 1.4em;
    color: var(--page-payment-methods-primary-color);
    margin-bottom: 10px;
}

.page-payment-methods__security-description {
    color: var(--page-payment-methods-text-dark);
}

/* Call to Action (CTA) Section */
.page-payment-methods__cta {
    background: linear-gradient(135deg, var(--page-payment-methods-primary-color), #004d99); /* Darker blue gradient */
    color: var(--page-payment-methods-text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-payment-methods__cta-content {
    max-width: 900px;
    z-index: 1;
}

.page-payment-methods__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-payment-methods-text-light);
    font-weight: bold;
}

.page-payment-methods__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--page-payment-methods-text-light);
    opacity: 0.9;
}

.page-payment-methods__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-payment-methods__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}

.page-payment-methods__cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}


/* Related Pages / Detail List */
.page-payment-methods__related-pages {
    background-color: var(--page-payment-methods-background-light);
    padding-bottom: 80px;
}

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

.page-payment-methods__detail-item {
    background-color: var(--page-payment-methods-text-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__detail-title {
    font-size: 1.4em;
    color: var(--page-payment-methods-primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-payment-methods__detail-title a {
    color: var(--page-payment-methods-primary-color);
    text-decoration: none;
}

.page-payment-methods__detail-title a:hover {
    color: var(--page-payment-methods-secondary-color);
    text-decoration: underline;
}

.page-payment-methods__detail-description {
    color: var(--page-payment-methods-text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-payment-methods__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: var(--page-payment-methods-secondary-color);
    color: var(--page-payment-methods-primary-color);
    border: none;
    border-radius: 5px;
}

.page-payment-methods__btn--small:hover {
    background-color: #E6B800;
    color: var(--page-payment-methods-primary-color);
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .page-payment-methods__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods__section-title {
        font-size: 2em;
    }
    .page-payment-methods__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods__hero {
        padding: 60px 0;
    }
    .page-payment-methods__hero-title {
        font-size: 2em;
    }
    .page-payment-methods__hero-subtitle {
        font-size: 1.1em;
    }
    .page-payment-methods__hero-actions,
    .page-payment-methods__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-payment-methods__section {
        padding: 40px 0;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods__text-content {
        font-size: 1em;
    }
    .page-payment-methods__cta-title {
        font-size: 1.8em;
    }
    .page-payment-methods__list,
    .page-payment-methods__sub-page-list {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero-title {
        font-size: 1.8em;
    }
    .page-payment-methods__hero-subtitle {
        font-size: 1em;
    }
    .page-payment-methods__section-title {
        font-size: 1.5em;
    }
    .page-payment-methods__feature-grid,
    .page-payment-methods__method-list,
    .page-payment-methods__security-features,
    .page-payment-methods__detail-list {
        grid-template-columns: 1fr;
    }
    .page-payment-methods__btn {
        width: 90%;
    }
    .page-payment-methods__cta-title {
        font-size: 1.6em;
    }
}