.start-section {
  position: relative;
  padding: 60px 0 100px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(12, 47, 134, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(28, 93, 231, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #f6f8fc 0%, #ffffff 100%);
  overflow: hidden;
}

.start-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(12, 47, 134, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatAnimation 20s ease-in-out infinite;
}

.start-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(28, 93, 231, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatAnimation 25s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(10px, 10px) scale(1.02); }
}

.start-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 
    0 4px 20px rgba(12, 47, 134, 0.08),
    0 20px 60px rgba(12, 47, 134, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(228, 232, 245, 0.6);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 6px 24px rgba(12, 47, 134, 0.1),
    0 24px 70px rgba(12, 47, 134, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.start-card__intro {
  padding: 36px 40px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  background: 
    linear-gradient(135deg, rgba(12, 47, 134, 0.03) 0%, rgba(255, 255, 255, 0.8) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c2f86' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-bottom: 2px solid rgba(228, 232, 245, 0.5);
  position: relative;
  overflow: hidden;
}

.start-card__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0c2f86, #1c5de7, #0c2f86);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.start-card__intro h2 {
  margin: 8px 0 12px;
  font-size: 28px;
  font-weight: 900;
  color: #0c2f86;
  line-height: 1.3;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #0c2f86 0%, #1c5de7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.start-card__intro .eyebrow {
  font-weight: 900;
  font-size: 13px;
  color: #0c2f86;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.start-card__intro .eyebrow::after {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0c2f86, transparent);
  border-radius: 2px;
}

.start-card__intro .muted {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 500;
}

.pill-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-list span {
  background: linear-gradient(135deg, #0c2f86 0%, #1c5de7 100%);
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 
    0 4px 12px rgba(12, 47, 134, 0.25),
    0 8px 24px rgba(12, 47, 134, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease backwards;
}

.pill-list span:nth-child(1) { animation-delay: 0.1s; }
.pill-list span:nth-child(2) { animation-delay: 0.2s; }
.pill-list span:nth-child(3) { animation-delay: 0.3s; }

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

.pill-list span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.pill-list span:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 
    0 6px 16px rgba(12, 47, 134, 0.3),
    0 12px 30px rgba(12, 47, 134, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pill-list span:hover::before {
  left: 100%;
}

.pill-list span i {
  font-size: 14px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.start-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  padding: 8px;
  gap: 12px;
  position: relative;
}

.start-tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e4e8f5, transparent);
}

.start-tabs button {
  background: #ffffff;
  border: 2px solid #e0e3ed;
  padding: 18px 24px;
  font-weight: 900;
  font-size: 16px;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.start-tabs button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 47, 134, 0.05), rgba(28, 93, 231, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.start-tabs button:hover {
  color: #0c2f86;
  border-color: #1c5de7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 47, 134, 0.15);
}

.start-tabs button:hover::before {
  opacity: 1;
}

.start-tabs button i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.start-tabs button:hover i {
  transform: scale(1.1) rotate(5deg);
}

.start-tabs button.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0c2f86 0%, #1c5de7 100%);
  border-color: transparent;
  box-shadow: 
    0 8px 20px rgba(12, 47, 134, 0.3),
    0 4px 12px rgba(12, 47, 134, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.start-tabs button.active::before {
  opacity: 0;
}

.start-tabs button.active i {
  transform: scale(1.15);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.start-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 28px 12px;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(228, 232, 245, 0.5);
}

.start-quick .quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: #0c2f86;
  font-weight: 800;
  font-size: 13px;
  border: 1.5px solid #d9e1ff;
  box-shadow: 0 2px 8px rgba(12, 47, 134, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease backwards;
}

.start-quick .quick-pill:nth-child(1) { animation-delay: 0.1s; }
.start-quick .quick-pill:nth-child(2) { animation-delay: 0.2s; }
.start-quick .quick-pill:nth-child(3) { animation-delay: 0.3s; }

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

.start-quick .quick-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 47, 134, 0.2);
  border-color: #1c5de7;
}

.start-quick .quick-pill i {
  font-size: 15px;
}

.start-quick .quick-pill.alt {
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  border-color: #a5f3fc;
  color: #0e7490;
}

.start-quick .quick-pill.alt:hover {
  box-shadow: 0 4px 12px rgba(14, 116, 144, 0.2);
  border-color: #06b6d4;
}

.start-quick .quick-pill.dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-color: #334155;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
}

.start-quick .quick-pill.dark:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4);
  border-color: #475569;
}

.alert {
  margin: 20px 28px 0;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInDown 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert::before {
  content: '✓';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.alert.success {
  background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
  color: #166534;
  border: 2px solid #86efac;
}

.alert.success::before {
  background: #22c55e;
  color: white;
}

.alert.danger {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #b45309;
  border: 2px solid #fdba74;
}

.alert.danger::before {
  content: '⚠';
  background: #f59e0b;
  color: white;
}

.start-forms {
  padding: 32px 40px 40px;
  background: #ffffff;
  position: relative;
}

.start-form {
  display: none;
}

.start-form.active {
  display: block;
  animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
  from { 
    opacity: 0; 
    transform: translateY(20px) scale(0.98);
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1);
  }
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0 24px;
  border-bottom: 2px dashed rgba(12, 47, 134, 0.15);
  margin-bottom: 24px;
  position: relative;
}

.form-head::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #0c2f86, transparent);
  animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}

.form-head h3 {
  margin: 6px 0;
  color: #0c2f86;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.form-head .muted {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  color: #94a3b8;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.chip:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.chip i {
  font-size: 15px;
}

.chip.primary {
  background: linear-gradient(135deg, #e7efff 0%, #dbeafe 100%);
  color: #0c2f86;
  border: 1.5px solid #bfdbfe;
}

.chip.secondary {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  color: #111827;
  border: 1.5px solid #e5e7eb;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideInUp 0.5s ease backwards;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 900;
  font-size: 14px;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.form-group label::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #0c2f86;
  border-radius: 50%;
  display: inline-block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.form-group select {
  appearance: none;
  background-image: 
    linear-gradient(45deg, transparent 50%, #0c2f86 50%), 
    linear-gradient(135deg, #0c2f86 50%, transparent 50%);
  background-position: 
    calc(100% - 22px) calc(50% - 2px), 
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0c2f86;
  box-shadow: 
    0 0 0 4px rgba(12, 47, 134, 0.1),
    0 4px 12px rgba(12, 47, 134, 0.08);
  background: #ffffff;
  transform: translateY(-1px);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  color: #475569;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.checkbox-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 47, 134, 0.1), rgba(28, 93, 231, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-option input {
  accent-color: #0c2f86;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.checkbox-option span {
  position: relative;
  z-index: 1;
}

.checkbox-option:hover {
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  border-color: #1c5de7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 47, 134, 0.15);
  color: #0c2f86;
}

.checkbox-option:hover::before {
  opacity: 1;
}

.checkbox-option:has(input:checked) {
  background: linear-gradient(135deg, #0c2f86 0%, #1c5de7 100%);
  border-color: #0c2f86;
  color: #ffffff;
  box-shadow: 
    0 4px 12px rgba(12, 47, 134, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.checkbox-option:has(input:checked)::before {
  opacity: 0;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0c2f86 0%, #1c5de7 100%);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 
    0 4px 12px rgba(12, 47, 134, 0.3),
    0 8px 24px rgba(12, 47, 134, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 6px 16px rgba(12, 47, 134, 0.35),
    0 12px 32px rgba(12, 47, 134, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-primary.alt {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 
    0 4px 12px rgba(15, 23, 42, 0.3),
    0 8px 24px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary.alt:hover {
  box-shadow: 
    0 6px 16px rgba(15, 23, 42, 0.35),
    0 12px 32px rgba(15, 23, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hint {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hint i {
  color: #94a3b8;
  font-size: 15px;
}

.error-text {
  margin: 4px 0 0;
  color: #dc2626;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.error-text::before {
  content: '⚠';
  font-size: 14px;
}

@media (max-width: 960px) {
  .start-card__intro {
    grid-template-columns: 1fr;
    padding: 28px 24px 20px;
  }

  .pill-list {
    justify-content: flex-start;
  }
  
  .start-card__intro h2 {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .start-section {
    padding: 40px 0 60px;
  }

  .start-card {
    border-radius: 20px;
    margin: 0 12px;
  }

  .start-card__intro {
    padding: 24px 20px 16px;
  }

  .start-card__intro h2 {
    font-size: 22px;
  }

  .start-forms {
    padding: 24px 20px 32px;
  }

  .start-tabs {
    padding: 6px;
    gap: 8px;
  }

  .start-tabs button {
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    border-radius: 12px;
  }

  .start-tabs button i {
    font-size: 18px;
  }

  .start-quick {
    padding: 12px 20px 8px;
  }

  .pill-list span {
    font-size: 12px;
    padding: 10px 14px;
  }

  .quick-pill {
    font-size: 12px;
    padding: 10px 12px;
  }

  .start-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 0 20px;
  }

  .form-head h3 {
    font-size: 20px;
  }

  .chip {
    padding: 10px 14px;
    font-size: 12px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-family: 'Tajawal', 'Cairo', sans-serif;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hint {
    justify-content: center;
    font-size: 13px;
  }

  .alert {
    margin: 16px 20px 0;
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .start-section::before,
  .start-section::after {
    display: none;
  }

  .start-card__intro h2 {
    font-size: 20px;
  }

  .start-card__intro .muted {
    font-size: 14px;
  }

  .pill-list {
    gap: 8px;
  }

  .pill-list span {
    padding: 8px 12px;
    font-size: 11px;
  }

  .checkbox-option {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 14px;
  }
}

/* تحسينات إضافية للتفاعلية */
@media (hover: hover) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* تأثيرات لوضع Dark Mode (إذا كان مفعلاً) */
@media (prefers-color-scheme: dark) {
  /* يمكن إضافة تصميم Dark Mode هنا إذا لزم الأمر */
}

/* تحسين الطباعة */
@media print {
  .start-section {
    background: white;
    padding: 20px 0;
  }

  .start-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .btn-primary,
  .start-tabs {
    display: none;
  }
}

/* تأثيرات إضافية احترافية */

/* تأثير Loading للنموذج */
.start-form.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.start-form.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #f3f4f6;
  border-top-color: #0c2f86;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* تحسين Accessibility - Focus Visible */
.btn-primary:focus-visible,
.start-tabs button:focus-visible {
  outline: 3px solid #0c2f86;
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid #0c2f86;
  outline-offset: 2px;
}

/* تأثير Tooltip للمساعدة */
.form-group label[data-tooltip] {
  position: relative;
  cursor: help;
}

.form-group label[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #1e293b;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-group label[data-tooltip]:hover::after {
  opacity: 1;
}

/* تأثير Ripple للأزرار */
.btn-primary {
  overflow: hidden;
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

/* تحسين Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #16a34a;
  background: #f0fdf4;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group input.success:focus,
.form-group select.success:focus,
.form-group textarea.success:focus {
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

/* تأثير Skeleton Loader */
.skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 12px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* تحسين Scrollbar */
.start-form::-webkit-scrollbar {
  width: 8px;
}

.start-form::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.start-form::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0c2f86, #1c5de7);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.start-form::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1c5de7, #0c2f86);
}

/* تأثير Pulse للعناصر المهمة */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* تحسين الأداء */
.start-card,
.btn-primary,
.start-tabs button,
.checkbox-option,
.pill-list span {
  will-change: transform;
}

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

