/* ===== ESTILOS PERSONALIZADOS GOLDSTARS ===== */
/* Este archivo contiene todos los estilos personalizados que no deben ser sobrescritos durante el build */

/* Navegación de pasos */
.step-navigation {
  margin-bottom: 2rem;
}

/* Navegación inferior específica */
.step-navigation-bottom {
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 102, 61, 0.1);
}

.back-btn {
  background: transparent;
  border: 2px solid #ff663d;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  color: #ff663d;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 102, 61, 0.1);
}

.back-btn:hover {
  background: #ff663d;
  color: white;
  transform: translateX(-3px);
  box-shadow: 0 4px 15px rgba(255, 102, 61, 0.2);
}

/* ===== SELECTOR DE CARTAS - DESCARGA DE PLANES ===== */

/* Contenedor principal */
.plan-download-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header del título */
.plan-download-header {
  text-align: center;
  margin-bottom: 3rem;
}

.plan-download-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.plan-download-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

/* Sistema de cartas selector */
.card-selector-container {
  margin: 2rem 0;
}

.card-selector {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
}

.card-selector:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 102, 61, 0.2);
}

/* Imagen de la carta */
.card-selector-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-selector:hover .card-selector-image {
  transform: scale(1.05);
}

/* Overlay de la carta */
.card-selector-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: background 0.3s ease;
}

.card-selector:hover .card-selector-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Contenido de la carta */
.card-selector-content {
  color: white;
  text-align: center;
  width: 100%;
}

.card-selector-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.card-selector-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-selector-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card-selector:hover .card-selector-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.card-selector-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Grid responsivo */
.cards-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

/* Grid para género (2 columnas) */
.cards-grid-gender {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 800px;
  margin: 2rem auto;
}

/* Grid para nivel (3 columnas) */
.cards-grid-level {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 2rem auto;
}

/* Grid para planes (flexible) */
.cards-grid-plans {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 2rem auto;
}

/* Cartas de entrenadores */
.trainer-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 102, 61, 0.2);
}

.trainer-card .card-selector-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(44, 62, 80, 0.9) 100%
  );
}

.trainer-card:hover .card-selector-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(52, 73, 94, 0.95) 100%
  );
}

.trainer-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.download-btn {
  background: linear-gradient(135deg, #ff663d, #e8290b);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(255, 102, 61, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 61, 0.4);
  background: linear-gradient(135deg, #e8290b, #ff663d);
  color: white;
}

/* Tarjeta de aviso para nivel avanzado */
.advanced-notice-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

/* Event landing helpers */
.event-landing-hero {
  background: linear-gradient(135deg, rgba(255, 102, 61, 0.1), rgba(232, 41, 11, 0.1));
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.event-landing-hero .badge.text-bg-light-soft { background: rgba(255, 255, 255, 0.5); color: #333; border: 1px solid rgba(0,0,0,0.05); }
.event-landing-hero-card { background: #fff; border-radius: 16px; padding: 1.25rem; }
.event-landing-hero-dorsal { background: #fff3ef; color: #e14a1f; border: 2px solid #ff663d; border-radius: 12px; padding: 10px 14px; font-weight: 800; font-size: 22px; letter-spacing: 1px; }
.event-landing-bullets li { margin-bottom: .5rem; }

.event-landing-benefits { margin: 3rem auto; }
.benefit-card i { font-size: 28px; }
.benefit-image { width: 100%; height: 120px; object-fit: cover; border-radius: 12px; }

.event-landing-agenda { margin: 3rem auto; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: flex; gap: .75rem; padding: .75rem 0; border-bottom: 1px dashed rgba(0,0,0,0.08); }
.timeline li span { min-width: 64px; font-weight: 700; color: #e14a1f; }
.info-card { background: #fff; border-radius: 16px; }
.info-item .label { font-size: .8rem; color: #777; }
.info-item .value { font-weight: 600; }

.event-landing-testimonials { margin: 3rem auto; }
.event-landing-testimonials i.cs-quote { font-size: 26px; }

.event-landing-form { margin: 3rem auto; max-width: 960px; }
.event-dorsal-badge { display: inline-block; background: #fff3ef; color: #e14a1f; border: 2px solid #ff663d; border-radius: 12px; padding: 12px 18px; font-weight: 800; font-size: 28px; letter-spacing: 1px; }

.event-landing-faq { margin: 3rem auto; }

/* Global smooth scroll for anchor links */
html { scroll-behavior: smooth; }

/* Reveal on scroll animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease, box-shadow .3s ease, filter .3s ease; }
.reveal.reveal-left { transform: translateX(-24px); }
.reveal.reveal-right { transform: translateX(24px); }
.reveal.show { opacity: 1; transform: none; }

/* Hover lift effect for cards */
.hover-lift { transition: transform .25s ease, box-shadow .25s ease; }
.hover-lift:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; }

/* Subtle animated gradient in hero */
.event-landing-hero { background-size: 200% 200%; animation: moveGradient 10s ease infinite; }
@keyframes moveGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Hero visual with parallax */
.hero-visual { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.hero-visual img { width: 100%; display: block; will-change: transform; transform: translateY(var(--py, 0px)); transition: transform .15s ease-out; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.05) 60%, rgba(0,0,0,0)); pointer-events: none; }
.hero-visual .badge-overlay { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,0.9); color: #111; border-radius: 12px; padding: 8px 12px; font-weight: 700; border: 1px solid rgba(0,0,0,0.06); }

/* Hero background cover modifier */
.event-landing-hero--cover {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center var(--heroPY, 0px);
  background-repeat: no-repeat;
}
.event-landing-hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
  pointer-events: none;
}
.event-landing-hero--cover > .row { position: relative; z-index: 1; }
.event-landing-hero--cover .display-5,
.event-landing-hero--cover .lead,
.event-landing-hero--cover .event-landing-bullets li,
.event-landing-hero--cover .badge.text-bg-light-soft { color: #fff !important; }
.event-landing-hero--cover .badge.text-bg-light-soft { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.35); }

/* Gallery slider */
.event-landing-gallery { margin: 3rem auto; }
.gallery-track { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-track::-webkit-scrollbar { height: 8px; }
.gallery-track::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 8px; }
.gallery-slide { flex: 0 0 80%; max-width: 80%; scroll-snap-align: start; position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
@media (min-width: 992px) { .gallery-slide { flex-basis: 48%; max-width: 48%; } }
.gallery-slide img { width: 100%; height: 360px; object-fit: cover; display: block; }
.gallery-controls { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 12px; }
.gallery-btn { border-radius: 999px; padding: 8px 14px; }
.gallery-uploader input[type="file"] { display: none; }
.gallery-empty { padding: 2rem; border: 2px dashed rgba(0,0,0,0.1); border-radius: 16px; text-align: center; color: #666; }

/* Improved thumbnail spacing and styling */
.glide-thumb .glide__slide { 
  padding: 0 8px; 
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.glide-thumb .glide__slide img { 
  border: 3px solid transparent; 
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.glide-thumb .glide__slide:hover img { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.glide-thumb .glide__slide.active img { 
  border-color: #ff663d; 
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 102, 61, 0.3);
}

/* Enhanced form styles */
.event-landing-form { margin: 3rem auto; max-width: 960px; }
.registration-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 2rem 0;
  min-height: 400px;
}
.form-hero-section {
  background: linear-gradient(135deg, #ff663d 0%, #e14a1f 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.form-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.form-hero-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  z-index: 1;
  position: relative;
}
.form-fields-section {
  padding: 3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enhanced-form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}
.enhanced-form-control:focus {
  border-color: #ff663d;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 61, 0.15);
  background: #fff;
}
.enhanced-form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.enhanced-submit-btn {
  background: linear-gradient(135deg, #ff663d 0%, #e14a1f 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 102, 61, 0.3);
}
.enhanced-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 102, 61, 0.4);
  background: linear-gradient(135deg, #e14a1f 0%, #ff663d 100%);
}

/* Dark FAQ Section */
.event-landing-faq { margin: 3rem auto; }
.faq-dark-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.faq-dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff663d 0%, #e14a1f 100%);
}
.faq-dark-section h3 {
  color: white;
}
.faq-dark-section .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
.dark-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
}
.dark-accordion .accordion-button {
  background: transparent;
  color: white;
  border: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  position: relative;
}
.dark-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 102, 61, 0.1);
  color: #ff663d;
  box-shadow: none;
}
.dark-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 61, 0.25);
  border-color: transparent;
}
.dark-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.dark-accordion .accordion-body {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  line-height: 1.6;
}

/* Dark Benefits Section */
.event-landing-benefits-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.event-landing-benefits-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff663d 0%, #e14a1f 100%);
}

.event-landing-benefits-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff663d 0%, #e14a1f 100%);
}

.dark-benefit-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.dark-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 102, 61, 0.2) !important;
  border-color: rgba(255, 102, 61, 0.3) !important;
}

.benefit-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dark-benefit-card:hover .benefit-image {
  transform: scale(1.05);
}

.benefit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 102, 61, 0.8) 0%, rgba(225, 74, 31, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dark-benefit-card:hover .benefit-overlay {
  opacity: 1;
}

.benefit-icon {
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-benefit-card .card-body {
  padding: 2rem;
  background: transparent;
}

.dark-benefit-card h5 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.dark-benefit-card .text-light {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6;
}

/* Logo in form section */
.form-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.advanced-notice-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.advanced-notice-text {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-btn {
  background: linear-gradient(135deg, #ff663d, #e8290b);
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 61, 0.3);
  background: linear-gradient(135deg, #e8290b, #ff663d);
  color: white;
}

/* Estilos para tabs de reservas */
.reservations-tabs .nav-tabs {
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.reservations-tabs .nav-item {
  flex: 1;
}

.reservations-tabs .nav-link {
  color: var(--body) !important;
  background-color: transparent;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  margin: 0;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.reservations-tabs .nav-link.active {
  background-color: #ff663d !important;
  color: var(--light-text) !important;
  box-shadow: 0 2px 8px rgba(255, 102, 61, 0.3);
}

.reservations-tabs .nav-link:hover:not(.active) {
  background-color: rgba(255, 102, 61, 0.1);
  color: #ff663d !important;
}

/* Contenido de tabs */
.tab-content {
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane {
  min-height: 200px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .plan-download-title { font-size: 2.2rem; }
  .cards-grid-gender { max-width: 700px; }
  .cards-grid-level { max-width: 900px; }
}

@media (max-width: 992px) {
  .plan-download-title { font-size: 2rem; }
  .card-selector { height: 320px; }
  .trainer-card { height: 380px; }
  .card-selector-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .plan-download-title { font-size: 1.8rem; }
  .card-selector { height: 280px; }
  .trainer-card { height: 320px; }
  .card-selector-title { font-size: 1.5rem; }
  .cards-grid { gap: 1.5rem; }
  .cards-grid-gender,
  .cards-grid-level,
  .cards-grid-plans { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .plan-download-container { padding: 0 10px; }
  .plan-download-title { font-size: 1.6rem; }
  .card-selector { height: 250px; }
  .trainer-card { height: 280px; }
  .card-selector-title { font-size: 1.3rem; }
  .card-selector-overlay { padding: 1.5rem; }
  .advanced-notice-card { padding: 2rem 1.5rem; }
}

/* Animaciones */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.card-selector,
.trainer-card,
.advanced-notice-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments for registration form */
@media (max-width: 991px) {
  .registration-form-card .row {
    flex-direction: column;
  }
  
  .form-hero-section {
    min-height: 400px;
  }
  
  .form-fields-section {
    min-height: 500px;
  }
}

.card-selector:nth-child(2) { animation-delay: 0.1s; }
.card-selector:nth-child(3) { animation-delay: 0.2s; }
.card-selector:nth-child(4) { animation-delay: 0.3s; }
