/* style/payment-methods.css */

.page-payment-methods {
  color: #ffffff; /* Body background is dark #0a0a0a, so text must be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on shared body background */
}

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  overflow: hidden;
  min-height: 450px;
}

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

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-payment-methods__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-payment-methods__btn-primary {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
}

.page-payment-methods__btn-primary:hover {
  background-color: #1a7bbd;
  transform: translateY(-2px);
}

.page-payment-methods__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #26A9E0;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
}

.page-payment-methods__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-payment-methods__intro-section,
.page-payment-methods__withdrawal-process,
.page-payment-methods__security,
.page-payment-methods__faq-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Light translucent background for contrast */
  margin-bottom: 20px;
}

.page-payment-methods__deposit-methods,
.page-payment-methods__limits-fees,
.page-payment-methods__conclusion-cta {
  padding: 60px 0;
  background-color: #0a0a0a; /* Darker section to blend with body */
  margin-bottom: 20px;
}

.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-payment-methods p {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__text-link:hover {
  text-decoration: underline;
}

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

.page-payment-methods__method-card,
.page-payment-methods__info-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-payment-methods__method-card:hover,
.page-payment-methods__info-card:hover {
  transform: translateY(-5px);
}

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

.page-payment-methods__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__card-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
  color: #f0f0f0;
}

.page-payment-methods__card-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-payment-methods__card-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-payment-methods__step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

.page-payment-methods__step-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-payment-methods__security-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-payment-methods__security-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-payment-methods__security-list li::before {
  content: '🔒';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.page-payment-methods__faq-list {
  margin-top: 40px;
}

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

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-payment-methods__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-payment-methods__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  color: #f0f0f0;
  text-align: justify;
}

.page-payment-methods__conclusion-cta .page-payment-methods__btn-primary {
  margin-top: 30px;
}

/* Ensure images don't have filter effects */
.page-payment-methods img {
  filter: none; /* Remove any potential filter effects */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-payment-methods {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods__hero-section {
    padding: 60px 15px;
    padding-top: 10px !important;
  }

  .page-payment-methods__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-payment-methods__description {
    font-size: 1rem;
  }

  .page-payment-methods__container {
    padding: 0 15px;
  }

  .page-payment-methods__intro-section,
  .page-payment-methods__withdrawal-process,
  .page-payment-methods__security,
  .page-payment-methods__faq-section,
  .page-payment-methods__deposit-methods,
  .page-payment-methods__limits-fees,
  .page-payment-methods__conclusion-cta {
    padding: 40px 0;
  }

  .page-payment-methods__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-payment-methods__method-grid,
  .page-payment-methods__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__method-card,
  .page-payment-methods__info-card,
  .page-payment-methods__step-item {
    padding: 25px;
    max-width: 100%;
    box-sizing: border-box !important;
  }

  .page-payment-methods__process-steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary,
  .page-payment-methods a[class*="button"],
  .page-payment-methods a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods__cta-buttons,
  .page-payment-methods__button-group,
  .page-payment-methods__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-payment-methods__faq-answer {
    padding: 10px 20px 20px;
  }
}