* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Pure White Theme - Based on #ffffff with Better Contrast */
  --primary: #c49430;
  --primary-dark: #a67d1f;
  --primary-light: #f4d77f;
  --secondary: #2c2c2c;
  --secondary-light: #555555;
  --accent: #ffa726;
  --accent-gold: #ffca28;

  /* All Pure White #ffffff */
  --bg-main: #ffffff;
  --bg-white: #ffffff;
  --bg-dark: #2c2c2c;
  --bg-input: #ffffff;
  --bg-hover: #fffbf5;
  --bg-card: #ffffff;

  /* Text Colors - Better Contrast */
  --text-primary: #2c2c2c;
  --text-secondary: #5a5a5a;
  --text-light: #888888;
  --text-muted: #aaaaaa;

  /* Improved Borders - More Visible */
  --border: #e0e0e0;
  --border-light: #ebebeb;
  --border-medium: #d0d0d0;
  --border-dark: #b0b0b0;
  --border-focus: #c49430;

  /* Status Colors */
  --success: #34c759;
  --error: #ff3b30;
  --warning: #ff9500;
  --info: #007aff;

  /* Gradients */
  --gradient-sports: linear-gradient(135deg, #f4d77f 0%, #c49430 100%);
  --gradient-field: linear-gradient(135deg, #f4d77f 0%, #ffa726 100%);
  --gradient-subtle: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);

  /* Better Shadows for Depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 6px 20px rgba(196, 148, 48, 0.15);
}

body {
  font-family:
    "Barlow",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Pure white - no background patterns */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: transparent;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

.registration-container {
  max-width: min(920px, 100% - 40px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 50px) clamp(15px, 3vw, 20px);
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header - Sports Branding */
.header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
  position: relative;
  padding: clamp(30px, 5vw, 50px) 20px;
  background: var(--bg-white);
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-sports);
}

.header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(196, 148, 48, 0.04) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.logo-section {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(15px, 2vw, 20px);
}

.platform-logo {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.platform-logo::before {
  content: "🏆";
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.header h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-sports);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(12px, 2vw, 18px);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.header p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.header-badge {
  display: inline-block;
  background: rgba(196, 148, 48, 0.15);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 700;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Progress Bar - Responsive */
.progress-bar {
  background: var(--bg-white);
  border-radius: clamp(12px, 2vw, 20px);
  padding: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(30px, 4vw, 45px);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 2vw, 15px);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--border);
}

.progress-steps::-webkit-scrollbar {
  height: 4px;
}

.progress-steps::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 2px;
}

.progress-steps::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.step {
  flex: 1 1 auto;
  min-width: clamp(60px, 15vw, 100px);
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + clamp(25px, 6vw, 40px));
  transform: translateY(-50%);
  width: calc(100% - clamp(50px, 12vw, 80px));
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.step.active:not(:last-child)::after,
.step.completed:not(:last-child)::after {
  background: var(--gradient-sports);
}

.step-circle {
  width: clamp(28px, 6vw, 36px);
  height: clamp(28px, 6vw, 36px);
  border-radius: 50%;
  background: var(--border);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  margin-bottom: clamp(6px, 1.5vw, 10px);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step.active .step-circle {
  background: var(--gradient-sports);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(196, 148, 48, 0.5);
}

.step.completed .step-circle {
  background: var(--success);
  color: white;
}

.step-label {
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  color: var(--text-secondary);
  font-weight: 600;
  white-space: nowrap;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

.step.completed .step-label {
  color: var(--success);
}

/* Form Sections - Sports Theme */
.form-section {
  background: var(--bg-white);
  border-radius: clamp(12px, 2vw, 20px);
  padding: clamp(25px, 4vw, 45px) clamp(20px, 3vw, 40px);
  margin-bottom: clamp(20px, 3vw, 35px);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  border-left: 4px solid var(--primary);
  opacity: 1 !important;
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-section:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(196, 148, 48, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
}

.form-section:nth-child(2) {
  animation-delay: 0.1s;
}
.form-section:nth-child(3) {
  animation-delay: 0.15s;
}
.form-section:nth-child(4) {
  animation-delay: 0.2s;
}
.form-section:nth-child(5) {
  animation-delay: 0.25s;
}
.form-section:nth-child(6) {
  animation-delay: 0.3s;
}
.form-section:nth-child(7) {
  animation-delay: 0.35s;
}
.form-section:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  margin-bottom: clamp(25px, 3vw, 35px);
  padding-bottom: clamp(15px, 2vw, 22px);
  border-bottom: 3px solid var(--bg-main);
  position: relative;
}

.section-header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: clamp(60px, 10vw, 100px);
  height: 3px;
  background: var(--gradient-sports);
}

.section-icon {
  width: clamp(45px, 8vw, 56px);
  height: clamp(45px, 8vw, 56px);
  background: var(--gradient-sports);
  border-radius: clamp(10px, 1.5vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196, 148, 48, 0.3);
}

.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Form Elements - Fully Responsive */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 28px);
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.form-row.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-label {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: clamp(8px, 1.5vw, 12px);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  display: flex;
  align-items: center;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.required {
  color: var(--error);
  margin-left: 5px;
  font-size: 1.1em;
}

.helper-text {
  font-size: clamp(0.8rem, 1.5vw, 0.88rem);
  color: var(--text-secondary);
  margin-top: clamp(6px, 1vw, 8px);
  line-height: 1.5;
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: clamp(12px, 2vw, 16px);
  border: 2px solid var(--border);
  border-radius: clamp(8px, 1.5vw, 12px);
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c49430' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(12px, 2vw, 16px) center;
  background-size: 12px;
  padding-right: clamp(36px, 5vw, 45px);
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196, 148, 48, 0.12);
  background: var(--bg-hover);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--border-medium);
  background: var(--bg-hover);
}

.form-textarea {
  min-height: clamp(90px, 15vw, 120px);
  resize: vertical;
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
}

.form-textarea.large {
  min-height: clamp(140px, 20vw, 200px);
}

/* File Upload - Sports Styled */
.file-upload {
  border: 2px dashed var(--border-medium);
  border-radius: clamp(10px, 1.5vw, 14px);
  padding: clamp(25px, 4vw, 35px);
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.file-upload::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(244, 215, 127, 0.04);
  border-radius: 50%;
  transition:
    width 0.5s,
    height 0.5s;
}

.file-upload:hover {
  border-color: var(--primary);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.file-upload:hover::before {
  width: 300%;
  height: 300%;
}

.file-upload-icon {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(10px, 1.5vw, 15px);
  position: relative;
  z-index: 1;
}

.file-upload-text {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.file-upload-text strong {
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.file-upload-input {
  display: none;
}

/* Checkbox and Radio Groups - Sports Theme */
.registration-container .checkbox-group,
.registration-container .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 14px);
  margin-top: clamp(10px, 1.5vw, 12px);
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  padding: clamp(10px, 1.5vw, 14px) clamp(14px, 2vw, 20px);
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: clamp(8px, 1.2vw, 10px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.checkbox-item::before,
.radio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(196, 148, 48, 0.1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.checkbox-item:hover,
.radio-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.checkbox-item:hover::before,
.radio-item:hover::before {
  width: 100%;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
  margin-right: clamp(6px, 1vw, 10px);
  width: clamp(16px, 2.5vw, 20px);
  height: clamp(16px, 2.5vw, 20px);
  cursor: pointer;
  accent-color: var(--primary);
  position: relative;
  z-index: 1;
}

.checkbox-item span,
.radio-item span {
  position: relative;
  z-index: 1;
}

.checkbox-item input:checked + span,
.radio-item input:checked + span {
  color: var(--primary);
}

.checkbox-item:has(input:checked),
.radio-item:has(input:checked) {
  background: rgba(244, 215, 127, 0.04);
  border-color: var(--primary);
  font-weight: 700;
}

/* Coach Section - Sports Design */
.coach-section {
  background: linear-gradient(
    135deg,
    rgba(33, 33, 33, 0.02) 0%,
    rgba(196, 148, 48, 0.04) 100%
  );
  border-radius: clamp(10px, 1.5vw, 14px);
  padding: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(18px, 2.5vw, 25px);
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.coach-section:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(196, 148, 48, 0.15);
}

.coach-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(18px, 2.5vw, 25px);
  flex-wrap: wrap;
  gap: 12px;
}

.coach-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-remove-coach {
  background: var(--error);
  color: white;
  border: none;
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2vw, 20px);
  border-radius: clamp(6px, 1vw, 8px);
  cursor: pointer;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.25);
}

.registration-container .btn-remove-coach:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.registration-container .btn-remove-coach:active {
  transform: translateY(0);
}

.registration-container .btn-add-coach {
  background: var(--gradient-field);
  color: white;
  border: none;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 32px);
  border-radius: clamp(8px, 1.2vw, 12px);
  cursor: pointer;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 12px);
  margin-top: clamp(12px, 2vw, 18px);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
}

.registration-container .btn-add-coach:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.registration-container .btn-add-coach:active {
  transform: translateY(-1px);
}

/* Form Actions - Sports Buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: clamp(15px, 2vw, 25px);
  margin-top: clamp(35px, 5vw, 50px);
  padding-top: clamp(25px, 3vw, 35px);
  border-top: 3px solid var(--border);
  flex-wrap: wrap;
}

.registration-container .btn-secondary,
.registration-container .btn-primary {
  padding: clamp(14px, 2.2vw, 18px) clamp(30px, 4vw, 45px);
  border-radius: clamp(10px, 1.5vw, 14px);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1 1 auto;
  min-width: min(180px, 100%);
  white-space: nowrap;
}

.registration-container .btn-secondary {
  background: var(--bg-white);
  color: var(--secondary);
  border: 3px solid var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.registration-container .btn-secondary:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.registration-container .btn-primary {
  background: var(--gradient-sports);
  color: white;
  flex: 2 1 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-dark);
}

.registration-container .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s,
    height 0.5s;
}

.registration-container .btn-primary:hover::before {
  width: 300%;
  height: 300%;
}

.registration-container .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.registration-container .btn-primary:active,
.registration-container .btn-secondary:active {
  transform: translateY(-1px);
}

.date-range-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.image-gallery-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(clamp(120px, 20vw, 160px), 1fr)
  );
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(10px, 1.5vw, 15px);
}

.image-preview {
  border: 3px dashed var(--border);
  border-radius: clamp(8px, 1.2vw, 12px);
  padding: clamp(18px, 2.5vw, 25px);
  text-align: center;
  background: var(--bg-white);
  min-height: clamp(130px, 20vw, 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-preview:hover {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(244, 215, 127, 0.1) 0%,
    rgba(244, 215, 127, 0.03) 100%
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.faq-section {
  margin-top: clamp(18px, 2.5vw, 25px);
}

.faq-item {
  margin-bottom: clamp(20px, 3vw, 30px);
}

/* Responsive Improvements */
@media (max-width: 768px) {
  body::before {
    height: 250px;
  }

  .progress-steps {
    justify-content: flex-start;
  }

  .step {
    min-width: 96px;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .date-range-group {
    grid-template-columns: 1fr;
  }

  .registration-container .radio-group,
  .registration-container .checkbox-group {
    flex-direction: column;
    align-items: stretch;
  }

  .checkbox-item,
  .radio-item {
    width: 100%;
    justify-content: flex-start;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-secondary,
  .btn-primary {
    width: 100%;
    min-width: 100%;
  }

  .coach-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-remove-coach {
    width: 100%;
  }

  .section-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .platform-logo {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .header h1 {
    font-size: 1.8rem;
  }

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

  .image-gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

/* Print Styles */
@media print {
  body::before,
  body::after {
    display: none;
  }

  .progress-bar,
  .btn-add-coach,
  .btn-remove-coach,
  .form-actions {
    display: none;
  }

  .form-section {
    page-break-inside: avoid;
    box-shadow: none;
    border: 2px solid var(--border);
  }
}

/* Enhanced Accessibility */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Force Light Mode Always */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-main: #ffffff;
    --bg-white: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border: #f0f0f0;
  }

  .form-input,
  .form-select,
  .form-textarea {
    background: #ffffff;
    color: #333333;
  }

  .form-section::before {
    opacity: 0.5;
  }
}

/* custom css  */
.preview-container {
  position: relative;
  width: 200px;
  margin-top: 10px;
}

.preview-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

button.remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-weight: bold;
  line-height: 0;
}

.remove-btn:hover {
  background: darkred;
}

.ui-datepicker-title {
  display: block !important;
}

.ui-datepicker-year {
  display: inline !important;
}

.ui-datepicker-month {
  display: inline !important;
}

/* Brochure Section - Sports Design */
.registration-container .brochure-section {
  background: linear-gradient(
    135deg,
    rgba(33, 33, 33, 0.02) 0%,
    rgba(196, 148, 48, 0.04) 100%
  );
  border-radius: clamp(10px, 1.5vw, 14px);
  padding: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(18px, 2.5vw, 25px);
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.registration-container .brochure-section:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(196, 148, 48, 0.15);
}

.registration-container .brochure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(18px, 2.5vw, 25px);
  flex-wrap: wrap;
  gap: 12px;
}

.registration-container .brochure-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.registration-container .btn-remove-brochure {
  background: var(--error);
  color: white;
  border: none;
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2vw, 20px);
  border-radius: clamp(6px, 1vw, 8px);
  cursor: pointer;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.25);
}

.registration-container .btn-remove-brochure:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.registration-container .btn-remove-brochure:active {
  transform: translateY(0);
}

.registration-container .btn-add-brochure {
  background: var(--gradient-field);
  color: white;
  border: none;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 32px);
  border-radius: clamp(8px, 1.2vw, 12px);
  cursor: pointer;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 12px);
  margin-top: clamp(12px, 2vw, 18px);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
}

.registration-container .btn-add-brochure:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.registration-container .btn-add-brochure:active {
  transform: translateY(-1px);
}
.wp-editor-tabs button#camp_information-tmce,
.wp-editor-tabs button#camp_information-html {
  font-size: 12px;
}

.wp-editor-tabs button#camp_information-html:hover,
.wp-editor-tabs button#camp_information-tmce:hover {
  background: none;
  color: #50575e;
}
.wp-editor-tabs .wp-switch-editor {
  top: 16px;
}
.wp-switch-editor:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .form-section {
    opacity: 1 !important;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) {
  .form-section {
    opacity: 1 !important;
  }
}
#loaderadditional_reg {
    /* position: absolute;
    right: 18%; */
    width: 100px;
    z-index: -1;
	}
#loaderadditional_message {
    font-size: clamp(0.8rem, 1.5vw, 0.88rem);
    color: var(--text-secondary);
    margin-top: clamp(6px, 1vw, 8px);
    line-height: 1.5;
    font-weight: 400;
}
p.loader-text {
    margin-top: 10px;
    font-size: 17px;
    color: black;
    font-weight: bold;
    text-align: center;
}
p.must-log-in a { 
    color: #c49430;
}
