/* style/payment-methods.css */

/* Variables */
:root {
  --page-payment-methods-primary-color: #1A237E; /* Deep Indigo */
  --page-payment-methods-secondary-color: #FFD700; /* Gold */
  --page-payment-methods-text-dark: #333333;
  --page-payment-methods-text-light: #ffffff;
  --page-payment-methods-bg-light: #f5f5f5;
  --page-payment-methods-bg-dark: #2c3e50;
  --page-payment-methods-border-color: #e0e0e0;
}

.page-payment-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-payment-methods-text-dark);
  background-color: var(--page-payment-methods-bg-light);
}

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

.page-payment-methods__hero-section {
  background: linear-gradient(135deg, var(--page-payment-methods-primary-color) 0%, #3f51b5 100%); /* Slightly lighter variant for gradient */
  color: var(--page-payment-methods-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-payment-methods__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__hero-title .highlight {
  color: var(--page-payment-methods-secondary-color);
}

.page-payment-methods__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-payment-methods__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-payment-methods__btn--primary {
  background-color: var(--page-payment-methods-secondary-color);
  color: var(--page-payment-methods-primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-payment-methods__btn--secondary {
  background-color: var(--page-payment-methods-primary-color);
  color: var(--page-payment-methods-secondary-color);
  border: 1px solid var(--page-payment-methods-secondary-color);
  padding: 10px 20px;
  font-size: 1em;
}

.page-payment-methods__btn--secondary:hover {
  background-color: var(--page-payment-methods-secondary-color);
  color: var(--page-payment-methods-primary-color);
  transform: translateY(-2px);
}

.page-payment-methods__content-section {
  padding: 60px 0;
  background-color: var(--page-payment-methods-bg-light);
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: var(--page-payment-methods-primary-color);
  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: var(--page-payment-methods-secondary-color);
  border-radius: 2px;
}

.page-payment-methods__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: var(--page-payment-methods-text-dark);
}

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

.page-payment-methods__method-card {
  background-color: var(--page-payment-methods-text-light);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-payment-methods__method-title {
  font-size: 1.8em;
  color: var(--page-payment-methods-primary-color);
  margin-bottom: 15px;
}

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

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-payment-methods__method-details li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #444;
}

.page-payment-methods__method-details li strong {
  color: var(--page-payment-methods-primary-color);
}

.page-payment-methods__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-payment-methods__steps-list li {
  background-color: var(--page-payment-methods-text-light);
  border-left: 5px solid var(--page-payment-methods-secondary-color);
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  line-height: 1.5;
}

.page-payment-methods__steps-list li strong {
  color: var(--page-payment-methods-primary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 8px;
}

.page-payment-methods__link {
    color: var(--page-payment-methods-primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-payment-methods__link:hover {
    color: var(--page-payment-methods-secondary-color);
}

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

.page-payment-methods__info-card {
  background-color: var(--page-payment-methods-primary-color);
  color: var(--page-payment-methods-text-light);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__info-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-payment-methods__info-title {
  font-size: 1.6em;
  color: var(--page-payment-methods-secondary-color);
  margin-bottom: 10px;
}

.page-payment-methods__info-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.page-payment-methods__faq-container {
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-payment-methods__faq-item {
  background-color: var(--page-payment-methods-text-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: var(--page-payment-methods-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--page-payment-methods-secondary-color);
  transition: transform 0.3s ease;
}

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

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-payment-methods__faq-answer.active {
  display: block;
}

.page-payment-methods__cta-bottom {
  background-color: var(--page-payment-methods-primary-color);
  color: var(--page-payment-methods-text-light);
  padding: 50px 30px;
  text-align: center;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__cta-text {
  font-size: 1.4em;
  margin-bottom: 30px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__method-grid,
  .page-payment-methods__info-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-payment-methods__method-card,
  .page-payment-methods__info-card,
  .page-payment-methods__faq-item {
    padding: 25px;
  }
  .page-payment-methods__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods__info-title {
    font-size: 1.4em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__method-grid,
  .page-payment-methods__info-cards {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__steps-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-payment-methods__steps-list li strong {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-bottom {
    padding: 30px 20px;
  }
  .page-payment-methods__cta-text {
    font-size: 1em;
  }
}