/* style/payment-methods.css */

/* Base Styles */
.page-payment-methods {
    font-family: Arial, sans-serif;
    color: #ffffff; /* Light text for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background is #0a0a0a from shared.css */
}

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

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    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: #26A9E0;
    border-radius: 2px;
}

.page-payment-methods__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-payment-methods__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
    box-sizing: border-box;
}

.page-payment-methods__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-payment-methods__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-payment-methods__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

.page-payment-methods__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-payment-methods__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Buttons */
.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.page-payment-methods__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-payment-methods__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-payment-methods__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-payment-methods__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Content Sections */
.page-payment-methods__content-section {
    padding: 80px 0;
}

.page-payment-methods__dark-bg {
    background-color: #0a0a0a; /* Ensure consistency with body background */
    color: #ffffff;
}

.page-payment-methods__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #ffffff;
}

/* Methods Grid */
.page-payment-methods__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.page-payment-methods__method-card {
    background: rgba(255, 255, 255, 0.08); /* Subtle white transparency for cards on dark bg */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

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

.page-payment-methods__method-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods__method-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

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

.page-payment-methods__method-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #f0f0f0;
}

.page-payment-methods__method-details li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-payment-methods__method-details li::before {
    content: '•'; /* Bullet point */
    color: #26A9E0;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-payment-methods__detail-label {
    font-weight: bold;
    color: #ffffff;
}

/* Guide List */
.page-payment-methods__guide-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
    color: #ffffff;
}

.page-payment-methods__guide-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.5;
    border-left: 5px solid #26A9E0;
}

.page-payment-methods__guide-list li strong {
    color: #26A9E0;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-payment-methods__guide-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Important Notes */
.page-payment-methods__important-notes {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
    color: #ffffff;
}

.page-payment-methods__important-notes li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.5;
    border-left: 5px solid #EA7C07; /* Orange for warning/important */
}

.page-payment-methods__important-notes li strong {
    color: #EA7C07;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-payment-methods__image-full-width {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-payment-methods__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-payment-methods__faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-payment-methods__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
    position: relative;
}

.page-payment-methods__faq-question::-webkit-details-marker {
    display: none;
}

.page-payment-methods__faq-qtext {
    flex-grow: 1;
    color: #ffffff;
}

.page-payment-methods__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
    transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
    padding: 20px;
    font-size: 1.1em;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-payment-methods__faq-answer p {
    margin-bottom: 0;
    text-align: left;
}

/* Conclusion Section */
.page-payment-methods__conclusion {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods__hero-title {
        font-size: 2.8em;
    }
    .page-payment-methods__hero-description {
        font-size: 1.2em;
    }
    .page-payment-methods__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-payment-methods__hero-title {
        font-size: 2.2em;
    }
    .page-payment-methods__hero-description {
        font-size: 1em;
    }
    .page-payment-methods__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods__btn-primary,
    .page-payment-methods__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-payment-methods__cta-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .page-payment-methods__content-section {
        padding: 60px 0;
    }
    .page-payment-methods__container {
        padding: 0 15px;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-payment-methods__text-block {
        font-size: 0.95em;
    }
    .page-payment-methods__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods__method-card {
        padding: 25px;
    }
    .page-payment-methods__method-icon {
        max-width: 150px;
    }
    .page-payment-methods__method-title {
        font-size: 1.3em;
    }
    .page-payment-methods__guide-list li,
    .page-payment-methods__important-notes li {
        font-size: 1em;
        padding: 15px;
    }
    .page-payment-methods__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-payment-methods__faq-answer {
        font-size: 1em;
        padding: 15px;
    }

    /* Image Responsive */
    .page-payment-methods img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods__section,
    .page-payment-methods__card,
    .page-payment-methods__container,
    .page-payment-methods__hero-section,
    .page-payment-methods__cta-wrapper,
    .page-payment-methods__methods-grid,
    .page-payment-methods__faq-list,
    .page-payment-methods__guide-list,
    .page-payment-methods__important-notes {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
    .page-payment-methods__hero-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero-section {
        height: 450px;
    }
    .page-payment-methods__hero-title {
        font-size: 1.8em;
    }
    .page-payment-methods__hero-description {
        font-size: 0.9em;
    }
    .page-payment-methods__section-title {
        font-size: 1.5em;
    }
}