/* style/payment-methods-e-wallets.css */
.page-payment-methods-e-wallets {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-payment-methods-e-wallets .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-payment-methods-e-wallets .hero-section {
  background: linear-gradient(135deg, #0A246A 0%, #3a5c9e 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-e-wallets .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-payment-methods-e-wallets .hero-section > * {
  position: relative;
  z-index: 1;
}

.page-payment-methods-e-wallets .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-e-wallets .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-e-wallets .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-payment-methods-e-wallets .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Deep blue text on gold */
  font-size: 1.1em;
}

.page-payment-methods-e-wallets .btn-primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-e-wallets .btn-secondary {
  background-color: #0A246A; /* Deep blue */
  color: #FFD700; /* Gold text on deep blue */
  font-size: 1.1em;
  border: 2px solid #FFD700;
}

.page-payment-methods-e-wallets .btn-secondary:hover {
  background-color: #071a4f; /* Darker blue */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-payment-methods-e-wallets .info-section, 
.page-payment-methods-e-wallets .wallets-supported-section, 
.page-payment-methods-e-wallets .how-to-deposit-section, 
.page-payment-methods-e-wallets .security-guarantee-section, 
.page-payment-methods-e-wallets .faq-section, 
.page-payment-methods-e-wallets .cta-bottom-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.page-payment-methods-e-wallets .info-section:nth-child(odd),
.page-payment-methods-e-wallets .how-to-deposit-section:nth-child(odd),
.page-payment-methods-e-wallets .faq-section:nth-child(odd) {
  background-color: #ffffff;
}

.page-payment-methods-e-wallets .section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-payment-methods-e-wallets .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-payment-methods-e-wallets .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

/* Feature Cards */
.page-payment-methods-e-wallets .grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-e-wallets .feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-payment-methods-e-wallets .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-payment-methods-e-wallets .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.page-payment-methods-e-wallets .card-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets .feature-card p {
  color: #666;
}

/* Wallet List */
.page-payment-methods-e-wallets .wallet-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-e-wallets .wallet-item {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-bottom: 4px solid #0A246A;
}

.page-payment-methods-e-wallets .wallet-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets .wallet-item h3 {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 10px;
}

.page-payment-methods-e-wallets .wallet-item p {
  color: #666;
}

/* How-to-deposit Steps */
.page-payment-methods-e-wallets .steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-e-wallets .step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 70px;
}

.page-payment-methods-e-wallets .step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0A246A; /* Deep blue */
  color: #FFD700; /* Gold text */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-e-wallets .step-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-payment-methods-e-wallets .step-item p {
  color: #666;
}

.page-payment-methods-e-wallets .step-item a {
  color: #0A246A;
  font-weight: bold;
  text-decoration: none;
}

.page-payment-methods-e-wallets .step-item a:hover {
  text-decoration: underline;
}

.page-payment-methods-e-wallets .text-center {
  text-align: center;
  margin-top: 50px;
}

/* Security Guarantee Section */
.page-payment-methods-e-wallets .grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-e-wallets .security-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 5px solid #0A246A;
}

.page-payment-methods-e-wallets .security-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.page-payment-methods-e-wallets .security-item h3 {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 10px;
}

.page-payment-methods-e-wallets .security-item p {
  color: #666;
}

/* FAQ Section */
.page-payment-methods-e-wallets .faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-payment-methods-e-wallets .faq-question {
  font-size: 1.3em;
  color: #0A246A;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-payment-methods-e-wallets .faq-question:hover {
  background-color: #f0f0f0;
}

.page-payment-methods-e-wallets .faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods-e-wallets .faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-payment-methods-e-wallets .faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #ffffff;
  color: #555;
}

.page-payment-methods-e-wallets .faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-payment-methods-e-wallets .faq-answer p {
  margin: 0;
}

/* CTA Bottom Section */
.page-payment-methods-e-wallets .cta-bottom-section {
  background: linear-gradient(135deg, #0A246A 0%, #071a4f 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods-e-wallets .cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-e-wallets .cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-payment-methods-e-wallets .cta-small-text {
  margin-top: 25px;
  font-size: 0.95em;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods-e-wallets .hero-title {
    font-size: 2.5em;
  }

  .page-payment-methods-e-wallets .section-title {
    font-size: 2em;
  }

  .page-payment-methods-e-wallets .grid-3-cols, 
  .page-payment-methods-e-wallets .wallet-list, 
  .page-payment-methods-e-wallets .steps-container, 
  .page-payment-methods-e-wallets .grid-2-cols {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-e-wallets .feature-card, 
  .page-payment-methods-e-wallets .wallet-item, 
  .page-payment-methods-e-wallets .step-item, 
  .page-payment-methods-e-wallets .security-item {
    margin: 0 auto;
    max-width: 450px;
  }

  .page-payment-methods-e-wallets .cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-e-wallets .hero-title {
    font-size: 2em;
  }

  .page-payment-methods-e-wallets .hero-description {
    font-size: 1em;
  }

  .page-payment-methods-e-wallets .btn-primary, 
  .page-payment-methods-e-wallets .btn-secondary {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-payment-methods-e-wallets .section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-e-wallets .section-description {
    font-size: 0.95em;
  }

  .page-payment-methods-e-wallets .card-title, 
  .page-payment-methods-e-wallets .wallet-item h3, 
  .page-payment-methods-e-wallets .step-title, 
  .page-payment-methods-e-wallets .security-item h3 {
    font-size: 1.4em;
  }

  .page-payment-methods-e-wallets .faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-payment-methods-e-wallets .faq-question::after {
    right: 20px;
  }

  .page-payment-methods-e-wallets .faq-answer {
    padding: 15px 20px;
  }

  .page-payment-methods-e-wallets .cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods-e-wallets .cta-description {
    font-size: 1em;
  }
}