/* PowerPro Enrollment Page Styles - Enhanced UI */

:root {
  --primary-color: #28a745;
  --primary-hover: #218838;
  --primary-light: #d4edda;
  --secondary-color: #6c757d;
  --accent-color: #007bff;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --success-color: #28a745;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.powerpro-enrollment-page {
  max-width: 950px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

.powerpro-enrollment-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: none;
}

.powerpro-enrollment-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
  padding: 35px;
  border-radius: var(--radius-lg);
  margin-bottom: 35px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.powerpro-enrollment-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.powerpro-enrollment-header h1 {
  color: var(--bg-white);
  font-size: 32px;
  margin: 0 0 15px 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.powerpro-enrollment-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.powerpro-enrollment-info-box {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.powerpro-enrollment-info-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.powerpro-enrollment-info-box h3 {
  color: var(--text-primary);
  font-size: 22px;
  margin: 0 0 15px 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.powerpro-enrollment-info-box h3::before {
  content: "📋";
  font-size: 24px;
}

.powerpro-enrollment-info-box p {
  margin: 10px 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.powerpro-enrollment-info-box strong {
  color: var(--primary-color);
  font-weight: 700;
}

.powerpro-enrollment-section {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.powerpro-enrollment-section:hover {
  box-shadow: var(--shadow-md);
}

.powerpro-enrollment-section h3 {
  color: var(--text-primary);
  font-size: 20px;
  margin: 0 0 25px 0;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.powerpro-enrollment-section h3::before {
  content: "📅";
  font-size: 24px;
}

.powerpro-enrollment-schedule {
  overflow-x: auto;
}

.schedule-table-page {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.schedule-table-page thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
  color: var(--bg-white);
}

.schedule-table-page th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-table-page td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 15px;
  transition: background-color 0.2s;
}

.schedule-table-page tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table-page tbody tr:hover {
  background-color: rgba(40, 167, 69, 0.05);
}

.schedule-table-page tbody tr:hover td {
  color: var(--text-primary);
}

.powerpro-enrollment-form-page {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.powerpro-form-section {
  margin-bottom: 30px;
}

.powerpro-form-section-horizontal {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  align-items: start !important;
  margin-bottom: 20px !important;
}

.powerpro-form-section-horizontal .powerpro-form-group {
  margin-bottom: 0 !important;
  width: 100% !important;
}

.powerpro-form-section h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
}

.powerpro-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.powerpro-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.powerpro-form-group label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.powerpro-form-group label::after {
  content: "*";
  color: var(--danger-color);
  font-weight: 700;
  display: none;
}

.powerpro-form-group:has([required]) label::after {
  display: inline;
}

.powerpro-form-group input,
.powerpro-form-group select,
.powerpro-form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: var(--transition);
  background-color: var(--bg-white);
  font-family: inherit;
}

.powerpro-form-group input:hover,
.powerpro-form-group select:hover,
.powerpro-form-group textarea:hover {
  border-color: #adb5bd;
}

.powerpro-form-group input:focus,
.powerpro-form-group select:focus,
.powerpro-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
  background-color: var(--bg-white);
}

.powerpro-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

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

.powerpro-enrollment-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.powerpro-btn-primary,
.powerpro-btn-secondary {
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.powerpro-btn-primary::before,
.powerpro-btn-secondary::before {
  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, height 0.6s;
}

.powerpro-btn-primary:hover::before,
.powerpro-btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.powerpro-btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.powerpro-btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #1fa885 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.powerpro-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.powerpro-btn-primary:disabled {
  background: var(--secondary-color);
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.powerpro-btn-secondary {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.powerpro-btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.powerpro-enrollment-message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 6px;
  font-size: 14px;
}

.powerpro-enrollment-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.powerpro-enrollment-message.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.powerpro-enrollment-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  color: #666;
}

.powerpro-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
}

.powerpro-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .powerpro-enrollment-container {
    padding: 20px;
  }

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

  .powerpro-schedule-header-page,
  .powerpro-schedule-row-page {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .powerpro-enrollment-actions {
    flex-direction: column;
    gap: 15px;
  }

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

/* Confirmation Page Styles */
.powerpro-confirmation-page {
  max-width: 950px;
  margin: 40px auto;
  padding: 0 20px;
}

.powerpro-confirmation-container {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #e0e0e0;
}

.powerpro-confirmation-info-box {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.powerpro-confirmation-info-box h3 {
  color: #333;
  font-size: 20px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.powerpro-confirmation-info-box p {
  margin: 5px 0;
  color: #555;
  font-size: 15px;
}

.powerpro-confirmation-form {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.powerpro-confirmation-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.powerpro-confirmation-section:last-of-type {
  border-bottom: none;
}

.powerpro-confirmation-section h3 {
  color: #333;
  font-size: 18px;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.powerpro-confirmation-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.powerpro-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  background: var(--bg-light);
  margin-bottom: 12px;
}

.powerpro-checkbox-label:hover {
  background-color: #e8f5e9;
  border-color: var(--primary-light);
  transform: translateX(4px);
}

.powerpro-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary-color);
  border-radius: 4px;
}

.powerpro-checkbox-label input[type="checkbox"]:checked {
  background: var(--primary-color);
}

.powerpro-checkbox-label span {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.powerpro-checkbox-label:has(input:checked) {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-color: var(--primary-color);
}

.powerpro-checkbox-label:has(input:checked) span {
  color: var(--text-primary);
  font-weight: 600;
}

.powerpro-checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.powerpro-checkbox-label a:hover {
  text-decoration: none;
  border-bottom-color: var(--primary-color);
}

.powerpro-payment-notice {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 15px;
}

.powerpro-payment-notice strong {
  font-size: 18px;
}

.powerpro-recaptcha {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

@media (max-width: 768px) {
  .powerpro-confirmation-container {
    padding: 20px;
  }

  .powerpro-checkbox-label span {
    font-size: 13px;
  }
}

/* Multi-Step Form Styles - Enhanced */
.powerpro-multistep-form {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  min-height: 100vh;
}

.powerpro-multistep-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.powerpro-multistep-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    #20c997 50%,
    #17a2b8 100%
  );
}

.powerpro-course-header {
  text-align: center;
  padding-bottom: 35px;
  margin-bottom: 35px;
  position: relative;
}

.powerpro-course-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  border-radius: 2px;
}

.powerpro-course-header h2 {
  color: var(--text-primary);
  font-size: 36px;
  margin: 0 0 25px 0;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.powerpro-course-info-text p {
  margin: 12px 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.powerpro-course-info-text p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.info-note {
  background: linear-gradient(135deg, #e7f3ff 0%, #d6eaff 100%);
  padding: 16px 20px;
  border-left: 5px solid var(--info-color);
  margin: 20px 0;
  font-size: 15px !important;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(23, 162, 184, 0.1);
}

.info-note::before {
  content: "ℹ️";
  margin-right: 10px;
  font-size: 18px;
}

.required-note {
  color: var(--danger-color);
  font-weight: 600;
  font-size: 15px !important;
  margin-top: 20px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-left: 4px solid var(--danger-color);
  border-radius: var(--radius-sm);
}

.required-note::before {
  content: "⚠️";
  margin-right: 8px;
}

/* Step Progress - Enhanced */
.powerpro-steps-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
  padding: 0 20px;
}

.powerpro-steps-progress::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--border-color) 0%,
    var(--border-color) 100%
  );
  z-index: 0;
  border-radius: 2px;
}

.powerpro-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  cursor: default;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  transition: var(--transition);
  border: 4px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  transform: scale(0);
  transition: transform 0.3s;
}

.step-label {
  font-size: 13px;
  color: var(--secondary-color);
  text-align: center;
  font-weight: 600;
  transition: var(--transition);
}

.powerpro-step.active .step-number {
  background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
  color: var(--bg-white);
  border-color: var(--primary-color);
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
  animation: pulse 2s infinite;
}

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

.powerpro-step.completed .step-number {
  background: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: 0 2px 12px rgba(40, 167, 69, 0.3);
}

.powerpro-step.completed .step-number::before {
  content: "✓";
  position: absolute;
  font-size: 22px;
  font-weight: 900;
}

.powerpro-step.completed .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(40, 167, 69, 0.6);
  }
}

/* Form Steps */
.powerpro-form-step {
  display: none;
}

.powerpro-form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

.powerpro-form-step h3 {
  color: var(--text-primary);
  font-size: 26px;
  margin: 0 0 30px 0;
  font-weight: 800;
  padding-bottom: 20px;
  border-bottom: none;
  position: relative;
  padding-left: 20px;
}

.powerpro-form-step h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 20px;
  width: 5px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #20c997 100%);
  border-radius: 3px;
}

.powerpro-form-step h4 {
  color: var(--text-primary);
  font-size: 18px;
  margin: 25px 0 15px 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.powerpro-form-step h4::before {
  content: "▸";
  color: var(--primary-color);
  font-size: 20px;
}

.powerpro-form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.powerpro-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-text {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #856404;
}

.info-text a {
  color: #0056b3;
  text-decoration: underline;
}

input.error,
select.error,
textarea.error {
  border-color: var(--danger-color) !important;
  background-color: #fff5f5 !important;
  animation: shake 0.4s;
}

.powerpro-checkbox-label.error {
  background: #fff5f5;
  border: 2px solid var(--danger-color);
  animation: shake 0.4s;
}

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

/* Loading State */
.powerpro-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.powerpro-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Enhanced Info Boxes */
.privacy-content,
.usi-info-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
  padding: 24px;
  border-radius: var(--radius-md);
  max-height: 400px;
  overflow-y: auto;
  border: 2px solid var(--border-color);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--border-color);
}

.privacy-content::-webkit-scrollbar,
.usi-info-box::-webkit-scrollbar {
  width: 8px;
}

.privacy-content::-webkit-scrollbar-track,
.usi-info-box::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 4px;
}

.privacy-content::-webkit-scrollbar-thumb,
.usi-info-box::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.privacy-content::-webkit-scrollbar-thumb:hover,
.usi-info-box::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

.privacy-content h4,
.usi-info-box h5 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
}

.privacy-content p,
.usi-info-box p {
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.privacy-content ul,
.usi-info-box ul {
  margin-left: 20px;
  color: var(--text-secondary);
}

.privacy-content li,
.usi-info-box li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .powerpro-multistep-container {
    padding: 25px 20px;
  }

  .powerpro-course-header h2 {
    font-size: 28px;
  }

  .powerpro-steps-progress {
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 35px;
    padding: 0 10px 15px;
    -webkit-overflow-scrolling: touch;
  }

  .powerpro-steps-progress::before {
    left: 40px;
    right: 40px;
  }

  .step-label {
    font-size: 11px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-width: 3px;
  }

  .powerpro-form-step h3 {
    font-size: 22px;
  }

  .powerpro-form-step h4 {
    font-size: 16px;
  }

  .powerpro-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .powerpro-form-group {
    margin-bottom: 18px;
  }

  .powerpro-form-navigation {
    flex-direction: column;
    gap: 12px;
  }

  .powerpro-form-navigation button {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
  }

  .powerpro-enrollment-page {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .powerpro-enrollment-header {
    padding: 25px 20px;
  }

  .powerpro-enrollment-header h1 {
    font-size: 24px;
  }

  .powerpro-checkbox-label {
    padding: 14px;
  }

  .schedule-table-page {
    font-size: 13px;
  }

  .schedule-table-page th,
  .schedule-table-page td {
    padding: 12px 10px;
  }
}

@media (max-width: 480px) {
  .powerpro-multistep-container {
    padding: 20px 15px;
  }

  .powerpro-course-header h2 {
    font-size: 24px;
  }

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

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .step-label {
    font-size: 10px;
  }

  .powerpro-btn-primary,
  .powerpro-btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  .powerpro-enrollment-page {
    background: white;
  }

  .powerpro-steps-progress,
  .powerpro-form-navigation {
    display: none;
  }

  .powerpro-form-step {
    display: block !important;
    page-break-inside: avoid;
  }

  .powerpro-multistep-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Smooth Transitions */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Success Message Enhancement */
.powerpro-enrollment-message.success {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #1b5e20;
  border: 2px solid var(--success-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
  animation: slideInDown 0.5s ease-out;
}

.powerpro-enrollment-message.error {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #b71c1c;
  border: 2px solid var(--danger-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
  animation: slideInDown 0.5s ease-out;
}

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

/* Tooltip Enhancement */
[title] {
  position: relative;
  cursor: help;
}

/* Grid Layout Enhancement */
.powerpro-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Radio Button Styling */
input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

/* Disabled State */
input:disabled,
select:disabled,
textarea:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Card Style for Sections */
.qualification-only,
.short-course-only {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
  margin: 20px 0;
}

/* Enhanced Table Styling */
.schedule-table-page tbody tr:nth-child(odd) {
  background-color: rgba(248, 249, 250, 0.5);
}

.schedule-table-page tbody tr:hover {
  background-color: rgba(40, 167, 69, 0.08);
  transform: scale(1.01);
  transition: all 0.2s;
}

/* Badge Style */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--primary-color);
  color: white;
}

.badge-info {
  background: var(--info-color);
  color: white;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
