/* INFUZE — Register page */

.register-body {
  background: var(--infuze-cream, #faf7f2);
}

#register-page {
  overflow-x: hidden;
}

/* ── Hero ── */
.register-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.register-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../res/images/regi.jpg') center / cover no-repeat,
    linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.register-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 43, 30, 0.72) 0%, rgba(124, 58, 237, 0.55) 45%, rgba(6, 182, 212, 0.45) 100%),
    rgba(0, 0, 0, 0.35);
}

.register-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.register-hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: registerOrbFloat 14s ease-in-out infinite;
}

.register-hero-orbs .orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(255, 107, 53, 0.35);
  top: 8%;
  right: 5%;
}

.register-hero-orbs .orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(124, 58, 237, 0.35);
  bottom: 12%;
  left: 4%;
  animation-delay: -4s;
}

.register-hero-orbs .orb-3 {
  width: 160px;
  height: 160px;
  background: rgba(6, 182, 212, 0.3);
  top: 45%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes registerOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -24px) scale(1.08); }
}

.register-hero .container {
  position: relative;
  z-index: 2;
}

.register-hero-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px;
  border-radius: var(--infuze-radius-lg, 24px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.register-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.register-hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: registerPulse 2s ease infinite;
}

@keyframes registerPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.register-hero-logo {
  max-width: min(420px, 88vw);
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.register-hero-title {
  margin: 0 0 16px;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.register-hero-subtitle {
  margin: 0 auto 28px;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.register-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.register-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.register-hero-meta i {
  color: var(--infuze-gold, #d4a853);
}

.register-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.register-hero-actions--forms {
  margin-top: 28px;
}

.register-hero-actions--secondary {
  margin-top: 12px;
}

.register-hero-actions--forms .btn {
  min-width: min(100%, 280px);
}

.register-hero-actions .btn-reg-offline {
  border: 2px solid var(--infuze-gold, #d4a853);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.25), rgba(212, 168, 83, 0.08));
  color: #fff;
}

.register-hero-actions .btn-reg-offline:hover {
  background: var(--infuze-gold, #d4a853);
  color: var(--infuze-navy, #0f1419);
}

.register-form-cards {
  margin-bottom: 8px;
}

.register-action-online {
  border-left: 4px solid var(--infuze-accent, #e62b1e);
}

.register-action-offline {
  border-left: 4px solid var(--infuze-gold, #d4a853);
}

.register-hero-actions .btn {
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.register-hero-actions .btn i {
  margin-right: 8px;
}

.register-hero-actions .btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
}

.register-hero-actions .btn-outline-white:hover {
  background: #fff;
  color: var(--infuze-navy, #0f1419);
}

#register-page .reveal-section,
#register-page .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

#register-page .register-hero .reveal-item,
#register-page .register-hero.reveal-section {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Steps ── */
.register-steps {
  padding: 80px 0 40px;
  background: var(--infuze-cream, #faf7f2);
}

.register-section-title {
  color: var(--infuze-navy, #0f1419);
  font-size: clamp(28px, 4vw, 38px);
  margin: 8px 0 12px;
}

.register-section-intro {
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--infuze-muted, #6b7280);
  font-size: 16px;
  line-height: 1.7;
}

.register-step-grid {
  margin-top: 8px;
}

.register-step-card {
  position: relative;
  height: 100%;
  padding: 36px 28px 32px;
  border-radius: var(--infuze-radius-lg, 24px);
  background: #fff;
  border: 1px solid rgba(15, 20, 25, 0.06);
  box-shadow: var(--infuze-shadow-soft, 0 10px 40px rgba(0, 0, 0, 0.08));
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--infuze-shadow, 0 20px 60px rgba(0, 0, 0, 0.12));
}

.register-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: rgba(15, 20, 25, 0.06);
}

.register-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand, linear-gradient(135deg, #e62b1e, #ff6b35, #d63384, #7c3aed));
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  box-shadow: 0 10px 28px rgba(230, 43, 30, 0.3);
}

.register-step-icon i {
  font-size: 30px;
  color: #fff;
}

.register-step-card h3 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--infuze-navy, #0f1419);
}

.register-step-card p {
  margin: 0;
  color: var(--infuze-muted, #6b7280);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Action cards ── */
.register-actions {
  padding: 40px 0 60px;
  background:
    radial-gradient(circle at 0% 100%, rgba(230, 43, 30, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
    var(--infuze-cream, #faf7f2);
}

.register-action-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 160px;
  padding: 28px 28px 28px 24px;
  border-radius: var(--infuze-radius-lg, 24px);
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(15, 20, 25, 0.06);
  box-shadow: var(--infuze-shadow-soft, 0 10px 40px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.register-action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 20, 25, 0.14);
}

.register-action-brochure:hover {
  border-color: rgba(230, 43, 30, 0.25);
}

.register-action-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.register-action-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.register-action-brochure .register-action-icon {
  background: linear-gradient(135deg, #e62b1e, #ff6b35);
}

.register-action-whatsapp .register-action-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.register-action-text {
  flex: 1;
  min-width: 0;
}

.register-action-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--infuze-muted, #6b7280);
  margin-bottom: 6px;
}

.register-action-text h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--infuze-navy, #0f1419);
}

.register-action-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--infuze-muted, #6b7280);
}

.register-action-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 25, 0.06);
  color: var(--infuze-navy, #0f1419);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.register-action-card:hover .register-action-arrow {
  background: var(--infuze-red, #e62b1e);
  color: #fff;
  transform: translateX(4px);
}

.register-action-whatsapp:hover .register-action-arrow {
  background: #25d366;
}

.register-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: var(--infuze-radius, 16px);
  background: rgba(124, 58, 237, 0.08);
  border: 1px dashed rgba(124, 58, 237, 0.25);
}

.register-note i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 20px;
  color: var(--infuze-purple, #7c3aed);
}

.register-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--infuze-navy, #0f1419);
}

/* ── Info strip ── */
.register-info {
  padding: 20px 0 80px;
  background: var(--infuze-cream, #faf7f2);
}

.register-info-card {
  height: 100%;
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--infuze-radius-lg, 24px);
  background: linear-gradient(145deg, #0f1419 0%, #1a2332 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 20, 25, 0.2);
  transition: transform 0.3s ease;
}

.register-info-card:hover {
  transform: translateY(-6px);
}

.register-info-card i {
  display: block;
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--infuze-red, #e62b1e);
}

.register-info-card h4 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.register-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.register-info-card a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.register-info-card a:hover {
  color: var(--infuze-gold, #d4a853);
}

@media (max-width: 767px) {
  .register-hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .register-hero-card {
    padding: 32px 20px;
  }

  .register-hero-meta span {
    width: 100%;
    justify-content: center;
  }

  .register-action-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .register-action-arrow {
    align-self: flex-end;
  }

  .register-note {
    flex-direction: column;
  }
}
