/* ===== Registration Requirements Section ===== */
.requirements-section {
  background: var(--bg-light, #f8f9fc);
  padding: 4rem 0;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left Column */
.requirements-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  color: var(--primary, #1a2a6c);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.section-title i {
  color: var(--accent, #f26b38);
  font-size: 1.6rem;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent, #f26b38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.requirement-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.req-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(242, 107, 56, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent, #f26b38);
}

.req-content h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--dark, #1a1a2e);
  margin-bottom: 0.2rem;
}

.req-content p {
  color: var(--text-muted, #555);
  font-size: 0.95rem;
  margin: 0;
}

.req-number {
  font-weight: 700;
  color: var(--primary, #1a2a6c);
  font-size: 1.1rem;
}

.req-plus {
  color: var(--accent, #f26b38);
  font-weight: 700;
  margin: 0 0.2rem;
}

/* Payment Notice */
.payment-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff3e8;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  border: 1px solid #fddcc9;
  margin-top: 0.5rem;
}

.notice-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--accent, #f26b38);
}

.notice-text {
  margin: 0;
  font-size: 0.95rem;
  color: #5a2d1a;
}

.notice-text strong {
  color: #c0392b;
}

/* Payment Details */
.payment-details {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border: 1px solid #e8ecf1;
}

.payment-details h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: var(--primary, #1a2a6c);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.payment-details h3 i {
  color: var(--accent, #f26b38);
}

.payment-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f2f5;
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-row.highlight {
  background: #f0f7ff;
  margin: 0 -0.5rem;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  border-bottom: none;
}

.payment-label {
  font-weight: 600;
  color: #555;
  min-width: 140px;
  font-size: 0.92rem;
}

.payment-value {
  color: var(--dark, #1a1a2e);
  font-size: 0.95rem;
}

.account-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary, #1a2a6c);
  letter-spacing: 1px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--primary, #1a2a6c);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background 0.2s ease;
  position: relative;
}

.copy-btn:hover {
  background: rgba(26, 42, 108, 0.08);
}

.copy-btn .copy-tooltip {
  background: var(--dark, #1a1a2e);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.copy-btn:hover .copy-tooltip {
  opacity: 1;
}

/* Right Column - Visual Card */
.requirements-visual {
  position: sticky;
  top: 2rem;
}

.visual-card {
  background: linear-gradient(145deg, var(--primary, #1a2a6c), #162054);
  color: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26, 42, 108, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.visual-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #ffb88c;
}

.visual-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  margin: 0.5rem 0 0;
}

.visual-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
}

.visual-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0.5rem 0;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffb88c;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.1rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  color: var(--primary, #1a2a6c);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}

.btn-primary i {
  font-size: 1.1rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .requirements-visual {
    position: static;
  }

  .payment-row {
    flex-wrap: wrap;
  }

  .payment-label {
    min-width: 100px;
  }
}

@media (max-width: 600px) {
  .requirements-section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .requirement-item {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .req-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .visual-card {
    padding: 1.8rem 1.2rem;
  }

  .visual-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .payment-details {
    padding: 1rem 1.2rem;
  }

  .payment-label {
    min-width: 80px;
    font-size: 0.82rem;
  }

  .payment-value {
    font-size: 0.85rem;
  }

  .account-number {
    font-size: 1rem;
  }

  .payment-notice {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}