/* style/index-deposit-withdrawal-process.css */

/* Base styles for the page */
.page-index-deposit-withdrawal-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-index-deposit-withdrawal-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-index-deposit-withdrawal-process__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
}

.page-index-deposit-withdrawal-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-deposit-withdrawal-process__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  color: #ffffff;
}

.page-index-deposit-withdrawal-process__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-index-deposit-withdrawal-process__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-deposit-withdrawal-process__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-deposit-withdrawal-process__btn-primary,
.page-index-deposit-withdrawal-process__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index-deposit-withdrawal-process__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-index-deposit-withdrawal-process__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-index-deposit-withdrawal-process__btn-secondary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-index-deposit-withdrawal-process__btn-secondary:hover {
  background-color: #c76706;
  border-color: #c76706;
}

.page-index-deposit-withdrawal-process__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-index-deposit-withdrawal-process__dark-bg {
  background-color: #0a0a0a; /* Body background */
  color: #ffffff;
}

.page-index-deposit-withdrawal-process__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-index-deposit-withdrawal-process__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 40px;
  text-align: center;
}

.page-index-deposit-withdrawal-process__paragraph {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
  color: #f0f0f0;
}

.page-index-deposit-withdrawal-process__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-deposit-withdrawal-process__step-card,
.page-index-deposit-withdrawal-process__info-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-index-deposit-withdrawal-process__step-title,
.page-index-deposit-withdrawal-process__info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-index-deposit-withdrawal-process__step-description,
.page-index-deposit-withdrawal-process__info-description {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-index-deposit-withdrawal-process__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
}

.page-index-deposit-withdrawal-process__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-deposit-withdrawal-process__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-index-deposit-withdrawal-process__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-index-deposit-withdrawal-process__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-index-deposit-withdrawal-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  list-style: none; /* For details tag */
  -webkit-touch-callout: none; /* Disable callout on iOS */
  -webkit-user-select: none; /* Disable text selection on iOS */
  -khtml-user-select: none; /* Disable text selection on Konqueror HTML */
  -moz-user-select: none; /* Disable text selection on Firefox */
  -ms-user-select: none; /* Disable text selection on Internet Explorer/Edge */
  user-select: none; /* Disable text selection */
}

.page-index-deposit-withdrawal-process__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-deposit-withdrawal-process__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-deposit-withdrawal-process__faq-item[open] .page-index-deposit-withdrawal-process__faq-toggle {
  transform: rotate(45deg);
}

.page-index-deposit-withdrawal-process__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #e0e0e0;
}

.page-index-deposit-withdrawal-process__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-index-deposit-withdrawal-process__cta-bottom {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.page-index-deposit-withdrawal-process__cta-bottom .page-index-deposit-withdrawal-process__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Links within text */
.page-index-deposit-withdrawal-process__paragraph a,
.page-index-deposit-withdrawal-process__step-description a,
.page-index-deposit-withdrawal-process__info-description a,
.page-index-deposit-withdrawal-process__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-index-deposit-withdrawal-process__paragraph a:hover,
.page-index-deposit-withdrawal-process__step-description a:hover,
.page-index-deposit-withdrawal-process__info-description a:hover,
.page-index-deposit-withdrawal-process__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-deposit-withdrawal-process__hero-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .page-index-deposit-withdrawal-process__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-index-deposit-withdrawal-process__hero-content {
    margin-top: 20px;
  }

  .page-index-deposit-withdrawal-process__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-index-deposit-withdrawal-process__intro-text {
    font-size: 1rem;
  }

  .page-index-deposit-withdrawal-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-index-deposit-withdrawal-process__btn-primary,
  .page-index-deposit-withdrawal-process__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-index-deposit-withdrawal-process__content-area,
  .page-index-deposit-withdrawal-process__faq-section,
  .page-index-deposit-withdrawal-process__cta-bottom {
    padding: 40px 15px !important;
  }

  .page-index-deposit-withdrawal-process__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-index-deposit-withdrawal-process__paragraph {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-index-deposit-withdrawal-process__step-by-step,
  .page-index-deposit-withdrawal-process__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-deposit-withdrawal-process__step-card,
  .page-index-deposit-withdrawal-process__info-card {
    padding: 25px;
  }

  .page-index-deposit-withdrawal-process__step-title,
  .page-index-deposit-withdrawal-process__info-title {
    font-size: 1.3rem;
  }

  .page-index-deposit-withdrawal-process__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-deposit-withdrawal-process__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-index-deposit-withdrawal-process__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Ensure all content containers are constrained */
  .page-index-deposit-withdrawal-process__hero-image-wrapper,
  .page-index-deposit-withdrawal-process__content-area,
  .page-index-deposit-withdrawal-process__step-by-step,
  .page-index-deposit-withdrawal-process__info-grid,
  .page-index-deposit-withdrawal-process__faq-section,
  .page-index-deposit-withdrawal-process__faq-list,
  .page-index-deposit-withdrawal-process__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-deposit-withdrawal-process__image-container,
  .page-index-deposit-withdrawal-process__video-container,
  .page-index-deposit-withdrawal-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}