/* style/payment-methods.css */

/* Base styles for the page */
.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background #0d0d0d */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-payment-methods__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-payment-methods__section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  padding: 100px 0 60px 0; /* Adjust top padding for fixed header */
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #000080, #0d0d0d);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-payment-methods__hero-section .page-payment-methods__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.page-payment-methods__hero-content {
  flex: 1;
}

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

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

.page-payment-methods__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-payment-methods__cta-button {
  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;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-payment-methods__btn-primary {
  background-color: #FFD700; /* Gold primary */
  color: #000080; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
  margin-right: 15px;
}

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

.page-payment-methods__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

.page-payment-methods__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Overview Section */
.page-payment-methods__overview-section {
  background-color: #1a1a1a;
}

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

.page-payment-methods__feature-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-payment-methods__feature-card:hover {
  transform: translateY(-10px);
}

.page-payment-methods__feature-icon {
  width: 100%; /* Ensure large image */
  height: auto;
  max-height: 250px; /* Limit height for uniform cards */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-payment-methods__feature-text {
  color: #cccccc;
  font-size: 0.95em;
}

/* Deposit and Withdrawal Methods Sections */
.page-payment-methods__deposit-methods,
.page-payment-methods__withdrawal-methods {
  background-color: #0d0d0d;
}

.page-payment-methods__method-card {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-payment-methods__method-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-payment-methods__method-text {
  color: #e0e0e0;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-payment-methods__method-subtitle {
  font-size: 1.4em;
  color: #000080; /* Dark blue for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-payment-methods__method-steps {
  list-style-type: decimal;
  margin-left: 20px;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-payment-methods__method-steps li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-payment-methods__method-steps strong {
  color: #FFD700;
}

/* Security Section */
.page-payment-methods__security-section {
  background-color: #000080; /* Dark blue background */
  color: #ffffff; /* White text for contrast */
}

.page-payment-methods__security-section .page-payment-methods__section-title {
  color: #FFD700;
}

.page-payment-methods__security-section .page-payment-methods__section-description {
  color: #f0f0f0;
}

.page-payment-methods__security-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-payment-methods__security-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__security-list {
  flex: 1;
  list-style-type: none; /* Changed from disc to none, will add custom bullets */
  padding: 0;
  margin: 0;
  font-size: 1.1em;
}

.page-payment-methods__security-list li {
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  padding-left: 25px; /* Space for custom bullet */
}

.page-payment-methods__security-list li::before {
  content: '✔'; /* Custom bullet point */
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

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

/* FAQ Section */
.page-payment-methods__faq-section {
  background-color: #1a1a1a;
}

.page-payment-methods__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-payment-methods__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods__faq-question:hover {
  background-color: #4a4a4a;
}

.page-payment-methods__faq-title {
  margin: 0;
  color: #FFD700;
}

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-toggle {
  transform: rotate(45deg); /* Change to X or - */
}

.page-payment-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  font-size: 1em;
  text-align: justify;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px 25px 25px;
}

.page-payment-methods__faq-answer p {
  margin-bottom: 0;
  color: #cccccc;
}

/* Why Choose Us Section */
.page-payment-methods__why-choose-us {
  background-color: #0d0d0d;
}

.page-payment-methods__advantages-list {
  list-style-type: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-payment-methods__advantages-list li {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  color: #cccccc;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px; /* Space for custom bullet */
}

.page-payment-methods__advantages-list li::before {
  content: '★'; /* Custom bullet point */
  color: #FFD700; /* Gold star */
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2em;
}

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

.page-payment-methods__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Final CTA Section */
.page-payment-methods__cta-final-section {
  background: linear-gradient(135deg, #0d0d0d, #000080);
  padding: 80px 0;
}

.page-payment-methods__cta-final-section .page-payment-methods__section-title {
  color: #FFD700;
}

.page-payment-methods__cta-final-section .page-payment-methods__section-description {
  color: #f0f0f0;
}

/* 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;
  }
}

@media (max-width: 768px) {
  .page-payment-methods {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-payment-methods__hero-section .page-payment-methods__container {
    flex-direction: column;
    text-align: center;
  }

  .page-payment-methods__hero-content {
    order: 2; /* Content below image on mobile */
  }

  .page-payment-methods__hero-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }

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

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

  .page-payment-methods__section {
    padding: 40px 0;
  }

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

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

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

  .page-payment-methods__method-card {
    padding: 30px 20px;
  }

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

  .page-payment-methods__method-subtitle {
    font-size: 1.2em;
  }

  .page-payment-methods__security-content {
    flex-direction: column;
  }

  .page-payment-methods__security-image {
    margin-bottom: 30px;
  }

  .page-payment-methods__security-list {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
  }
  .page-payment-methods__security-list li {
    padding-left: 25px;
  }

  .page-payment-methods__advantages-list {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
  }
  .page-payment-methods__advantages-list li {
    padding-left: 45px;
  }

  .page-payment-methods__faq-question,
  .page-payment-methods__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
    padding: 15px 15px 25px 15px;
  }

  /* Force responsive for all images, videos, buttons */
  .page-payment-methods img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods video,
  .page-payment-methods__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}
}