/* style/payment-methods.css */

/* Base Styles */
.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensuring content area also respects body background */
}

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

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-payment-methods__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  overflow: hidden;
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

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

.page-payment-methods__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
}

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

.page-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  font-weight: bold;
}

.page-payment-methods__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.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;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-payment-methods__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

.page-payment-methods__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-payment-methods__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

/* Introduction Section */
.page-payment-methods__introduction-section {
  background-color: #000000; /* Dark background */
  padding: 80px 0;
  color: #ffffff;
}

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

.page-payment-methods__feature-item {
  background-color: rgba(10, 36, 99, 0.7); /* Semi-transparent dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #0A2463;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 10px;
}

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

.page-payment-methods__feature-item p {
  color: #f0f0f0;
  font-size: 1em;
}

/* Deposit & Withdrawal Methods Sections */
.page-payment-methods__deposit-methods,
.page-payment-methods__withdrawal-methods {
  padding: 80px 0;
  color: #ffffff;
}

.page-payment-methods__deposit-methods {
  background-color: #0A2463; /* Dark blue background */
}

.page-payment-methods__withdrawal-methods {
  background-color: #000000; /* Dark background */
}

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

.page-payment-methods__method-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-payment-methods__method-card li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-payment-methods__method-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-payment-methods__method-card p {
  color: #f0f0f0;
  font-size: 1em;
  flex-grow: 1;
}

/* Guide Section */
.page-payment-methods__guide-section {
  background-color: #0A2463; /* Dark blue background */
  padding: 80px 0;
  color: #ffffff;
}

.page-payment-methods__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-payment-methods__guide-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__guide-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-payment-methods__guide-card ol {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #f0f0f0;
  font-size: 1.05em;
}

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

.page-payment-methods__guide-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

/* Important Notes Section */
.page-payment-methods__important-notes {
  background-color: #000000; /* Dark background */
  padding: 80px 0;
  color: #ffffff;
}

.page-payment-methods__notes-list {
  list-style: disc;
  padding-left: 40px;
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-payment-methods__notes-list li {
  margin-bottom: 15px;
}

.page-payment-methods__notes-list li strong {
  color: #FFD700;
}

.page-payment-methods__notes-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  object-fit: cover;
}

/* FAQ Section */
.page-payment-methods__faq-section {
  background-color: #0A2463; /* Dark blue background */
  padding: 80px 0;
  color: #ffffff;
}

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

.page-payment-methods__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-payment-methods__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-payment-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-payment-methods__faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

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

.page-payment-methods__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }

  .page-payment-methods__section-title {
    font-size: 2em;
  }

  .page-payment-methods__guide-steps {
    grid-template-columns: 1fr;
  }
}

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

  .page-payment-methods__hero-section {
    min-height: 450px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset is applied */
  }

  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods__hero-description {
    font-size: 1em;
  }

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-payment-methods__text-block {
    font-size: 0.95em;
  }

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

  .page-payment-methods__feature-item,
  .page-payment-methods__method-card,
  .page-payment-methods__guide-card,
  .page-payment-methods__faq-item {
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
  }

  .page-payment-methods__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-payment-methods__feature-title {
    font-size: 1.3em;
  }

  .page-payment-methods__method-title {
    font-size: 1.4em;
  }

  .page-payment-methods__guide-title {
    font-size: 1.5em;
  }

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

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

  /* Ensure all content images are responsive and not smaller than 200px */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover; /* Maintain aspect ratio */
  }

  .page-payment-methods__hero-image {
    min-width: unset; /* Hero can be smaller on mobile if needed */
    min-height: unset;
  }

  .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;
    overflow-x: hidden !important;
  }
}

/* General image sizing for content area */
.page-payment-methods img:not(.page-payment-methods__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filters on images */
.page-payment-methods img {
  filter: none; /* Ensure no filters are applied */
}