/* ═══════════════════════════════════════════════════════════════
   ERP SAAS - Customer Signup Styles (Enhanced & Consolidated)
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   GLOBAL & LAYOUT
   ───────────────────────────────────────────────────────────── */

nav.navbar.navbar-light.navbar-expand-lg {
  display: none;
}

.footer-col-left, 
.footer-col-right {
  display: none;
}

.signup-container {
  min-height: 80vh;
}

.wizard-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   PROGRESS INDICATOR (Steps 1-2-3)
   ───────────────────────────────────────────────────────────── */

.progress-indicator {
  max-width: 600px;
  margin: 0 auto;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9ecef;
  border: 3px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #6c757d;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f);
  border-color: #1F1F1F;
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.3);
  transform: scale(1.1);
}

.progress-step.completed .step-circle {
  background: #28a745;
  border-color: #28a745;
  color: #fff;
}

.progress-step.completed .step-circle::after {
  content: '✓';
  font-size: 1.5rem;
}

.step-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  text-align: center;
}

.progress-step.active .step-label {
  color: #1F1F1F;
  font-weight: 600;
}

.progress-line {
  height: 3px;
  background: #e9ecef;
  flex: 1;
  min-width: 40px;
  max-width: 100px;
  transition: background 0.3s ease;
}

.progress-step.completed + .progress-line {
  background: #28a745;
}

/* ─────────────────────────────────────────────────────────────
   PLAN CARDS (Step 1)
   ───────────────────────────────────────────────────────────── */

.plan-card {
  position: relative;
  border: 2px solid #e9ecef;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: #1F1F1F;
}

.plan-card.hot {
  border-color: #1F1F1F;
  border-width: 3px;
}

.hot-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  border-top-left-radius: 0.875rem;
  border-top-right-radius: 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card.hot .term-select {
  margin-top: 1.75rem;
}

.plan-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #1F1F1F;
}

.term-select {
  margin-bottom: 0.5rem;
}

.term-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #495057;
  text-align: left;
}

.term-select select,
.term-select select.form-control,
.term-select .form-control,
select.form-control {
  width: 100%;
  height: auto !important;
  min-height: 38px;
  padding: 0.625rem 2rem 0.625rem 0.75rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: #1F1F1F !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
  border: 2px solid #e9ecef !important;
  border-radius: 0.5rem !important;
  transition: all 0.2s ease;
  cursor: pointer !important;
  text-align: left;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-text-fill-color: #1F1F1F !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.term-select select:hover,
.term-select select.form-control:hover,
.term-select .form-control:hover {
  border-color: #ced4da !important;
  background-color: #f8f9fa !important;
}

.term-select select:focus,
.term-select select.form-control:focus,
.term-select .form-control:focus {
  border-color: #1F1F1F !important;
  box-shadow: 0 0 0 0.2rem rgba(31, 31, 31, 0.15) !important;
  outline: none !important;
  color: #1F1F1F !important;
}

.term-select select option,
.term-select select.form-control option,
.term-select .form-control option {
  color: #1F1F1F !important;
  background-color: #ffffff !important;
  padding: 0.5rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  display: block !important;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
  min-height: 90px;
  justify-content: center;
}

.old-price {
  text-decoration: line-through;
  font-size: 1rem;
  color: #999;
  margin-bottom: 0.25rem;
}

.save-tag {
  background: linear-gradient(135deg, #e6f9ed, #d4f4dd);
  color: #28a745;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin: 0.5rem 0;
  display: inline-block;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1F1F1F;
  line-height: 1;
  margin: 0.25rem 0;
}

.trial-badge {
  color: #28a745;
  font-size: 1.25rem;
  font-weight: 700;
}

.total-price {
  font-size: 0.95rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.features-list {
  text-align: left;
  margin-bottom: 0.75rem;
  padding: 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f8f9fa;
  font-size: 0.85rem;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text {
  flex-grow: 1;
}

.feature-item.included {
  color: #212529;
}

.feature-item.not-included {
  color: #adb5bd;
  text-decoration: line-through;
}

.checkmark {
  color: #28a745;
  font-weight: 700;
  font-size: 1.125rem;
}

.crossmark {
  color: #dc3545;
  font-size: 1.125rem;
}

.btn-started {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2rem;
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f);
  color: white;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.4);
  background: linear-gradient(135deg, #2f2f2f, #1F1F1F);
}

.btn-started:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ─────────────────────────────────────────────────────────────
   TRUST BADGES (Step 1)
   ───────────────────────────────────────────────────────────── */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #495057;
  font-size: 0.95rem;
  font-weight: 500;
}

.badge-item i {
  color: #28a745;
  font-size: 1.125rem;
}

/* ─────────────────────────────────────────────────────────────
   FORM SECTIONS (Step 2)
   ───────────────────────────────────────────────────────────── */

.form-section {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #f8f9fa;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1F1F1F;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title i {
  color: #1F1F1F;
}

.form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-label.required::after {
  content: '*';
  color: #dc3545;
  margin-left: 0.25rem;
}

.form-control {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 2px solid #e9ecef;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: #1F1F1F;
  box-shadow: 0 0 0 0.2rem rgba(31, 31, 31, 0.15);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.input-with-tooltip {
  position: relative;
  display: flex;
  align-items: center;
}

.info-icon {
  position: absolute;
  right: 1rem;
  color: #6c757d;
  cursor: help;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.info-icon:hover {
  color: #1F1F1F;
}

/* ─────────────────────────────────────────────────────────────
   OTP VERIFICATION (Step 2)
   ───────────────────────────────────────────────────────────── */

.otp-verification-box {
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff3cd;
  border: 2px dashed #ffc107;
  margin-top: 0.75rem;
}

.btn-send-otp {
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(31, 31, 31, 0.3);
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-send-otp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.4);
  background: linear-gradient(135deg, #2f2f2f, #1F1F1F);
}

.btn-send-otp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-send-otp i {
  margin-right: 0.5rem;
}

.form-control-otp {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-align: center;
  border: 2px solid #dee2e6;
  transition: border-color 0.3s ease;
  padding: 0.75rem;
  background: #fff;
}

.form-control-otp:focus {
  border-color: #1F1F1F;
  box-shadow: 0 0 0 0.2rem rgba(31, 31, 31, 0.15);
}

.form-control-otp.border-success {
  border-color: #28a745;
  background-color: #d4edda;
}

#otp-status {
  font-size: 0.9rem;
  font-weight: 600;
}

#otp-timer {
  font-size: 0.85rem;
  color: #856404;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   REVIEW SECTION (Step 3)
   ───────────────────────────────────────────────────────────── */

.review-section {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e9ecef;
}

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

.review-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #e9ecef;
}

.review-item {
  margin-bottom: 0.75rem;
}

.review-item:last-child {
  margin-bottom: 0;
}

.review-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-value {
  font-size: 1rem;
  color: #212529;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   STEP 3: REVIEW SECTION
   ───────────────────────────────────────────────────────────── */

.review-section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2f2f2f;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title i {
  color: #1F1F1F;
  font-size: 1rem;
}

.review-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-item {
  margin-bottom: 0.75rem;
}

.review-item:last-child {
  margin-bottom: 0;
}

.review-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.review-value {
  font-size: 1rem;
  font-weight: 500;
  color: #2f2f2f;
  word-break: break-word;
}

#review-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F1F1F;
}

#review-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F1F1F;
}

#review-term {
  font-size: 0.875rem;
  color: #6c757d;
}

/* Edit buttons */
.review-section .btn-link {
  color: #1F1F1F;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  transition: all 0.2s ease;
}

.review-section .btn-link:hover {
  color: #2f2f2f;
  background-color: rgba(31, 31, 31, 0.05);
  border-radius: 0.25rem;
}

.review-section .btn-link i {
  margin-right: 0.25rem;
}

/* Terms checkbox */
.form-check-input:checked {
  background-color: #1F1F1F;
  border-color: #1F1F1F;
}

.form-check-label a {
  color: #1F1F1F;
  text-decoration: underline;
}

.form-check-label a:hover {
  color: #2f2f2f;
}

/* Create Account Button */
#btn-final-submit {
  background: linear-gradient(90deg, #1F1F1F, #2f2f2f);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#btn-final-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

#btn-final-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#btn-final-submit i {
  margin-right: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────
   PROVISIONING PROGRESS (Step 3)
   ───────────────────────────────────────────────────────────── */

#provision-container {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Modern Gear Loading Animation */
.loading-gears {
  position: relative;
  width: 200px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gear {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f2f2f;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.gear i {
  font-size: 1rem;
}

/* Large Gear (Center) */
.gear-large {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-clockwise 4s linear infinite;
}

.gear-large i {
  font-size: 5rem;
  color: #1F1F1F;
}

/* Small Gear (Top Right) */
.gear-small {
  right: 10px;
  top: 0;
  animation: rotate-counter-clockwise 3s linear infinite;
}

.gear-small i {
  font-size: 3rem;
  color: #2f2f2f;
}

/* Medium Gear (Bottom Left) */
.gear-medium {
  left: 0;
  bottom: 0;
  animation: rotate-clockwise 3.5s linear infinite;
}

.gear-medium i {
  font-size: 3.5rem;
  color: #404040;
}

@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Pulsing effect for gears */
.gear-large {
  animation: rotate-clockwise 4s linear infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  }
  50% {
    opacity: 0.85;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  }
}

.provision-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F1F1F;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.provision-subtitle {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

#provision-container .progress {
  background-color: #e9ecef;
  border-radius: 2rem;
  height: 35px;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
  border: 2px solid #dee2e6;
  position: relative;
}

#provision-bar {
  background: linear-gradient(90deg, #1F1F1F 0%, #2f2f2f 50%, #404040 100%);
  background-size: 200% 100%;
  border-radius: 2rem;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  animation: shimmer 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

#provision-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  animation: shine 2s ease-in-out infinite;
}

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

@keyframes shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 200%;
  }
}

#provision-message {
  font-size: 1.15rem;
  color: #2f2f2f;
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
  min-height: 35px;
  padding: 0.75rem 1.5rem;
  line-height: 1.6;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.03) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  animation: message-fade 0.5s ease-in-out;
}

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

.progress-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  z-index: 1;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .loading-gears {
    width: 150px;
    height: 90px;
  }
  
  .gear-large i {
    font-size: 3.5rem;
  }
  
  .gear-small i {
    font-size: 2rem;
  }
  
  .gear-medium i {
    font-size: 2.5rem;
  }
  
  .provision-title {
    font-size: 1.35rem;
  }
  
  .provision-subtitle {
    font-size: 0.875rem;
  }
  
  #provision-message {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */

.btn {
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f);
  border: none;
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2f2f2f, #1F1F1F);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, #28a745, #20c851);
  border: none;
}

.btn-success:hover {
  background: linear-gradient(135deg, #20c851, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
}

.btn-outline-secondary:hover {
  background: #6c757d;
  color: #fff;
}

.btn-link {
  color: #1F1F1F;
  text-decoration: none;
  font-weight: 600;
}

.btn-link:hover {
  color: #2f2f2f;
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   MODAL & ALERTS
   ───────────────────────────────────────────────────────────── */

.modal-dialog .btn-primary {
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f) !important;
  border-color: #1F1F1F !important;
  border-radius: 2rem !important;
}

.alert {
  border-radius: 0.75rem;
  border: 2px solid;
}

.alert-info {
  background: #d1ecf1;
  border-color: #17a2b8;
  color: #0c5460;
}

.success-message {
  padding: 1rem;
}

.success-message strong {
  color: #28a745;
}

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────── */

.accordion-button {
  font-weight: 600;
  color: #1F1F1F;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #1F1F1F;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #1F1F1F;
  box-shadow: 0 0 0 0.25rem rgba(31, 31, 31, 0.15);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────── */

/* Tablets and below */
@media (max-width: 768px) {
  .progress-steps {
    gap: 0.5rem;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-label {
    font-size: 0.75rem;
  }
  
  .progress-line {
    min-width: 20px;
    max-width: 40px;
  }
  
  .plan-card {
    margin-bottom: 1rem;
  }
  
  .current-price {
    font-size: 1.5rem;
  }
  
  .features-list {
    font-size: 0.85rem;
  }
  
  .form-section {
    padding: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .step-label {
    display: none;
  }
  
  .progress-line {
    max-width: 30px;
  }
  
  .plan-card {
    padding: 1rem;
  }
  
  .plan-title {
    font-size: 1.25rem;
  }
  
  .btn-started {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────── */

@media print {
  @page {
    size: A4;
    margin: 5mm;
  }
  
  .wizard-step:not(#step-3) {
    display: none !important;
  }
  
  button, .btn {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   CUSTOM FONT (Cairo Saudi)
   ───────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Cairo Saudi';
  src: url('https://cdn.jsdelivr.net/gh/UsmanSanawar/Cairo-with-Saudi-Currency@main/Cairo-Regular-Saudi.ttf') format('truetype');
  unicode-range: U+00A7 !important;
}

html body {
  font-family: 'Cairo Saudi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

@media print {
  html body {
    font-family: 'Cairo Saudi', serif !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────── */

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

.wizard-step {
  animation: fadeIn 0.5s ease;
}

.spinner-border {
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SUBDOMAIN SELECTOR STYLES
   ═══════════════════════════════════════════════════════════════ */

.subdomain-selector {
  margin-bottom: 1.5rem;
}

.subdomain-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #ced4da;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.2s ease;
  background: #fff;
}

.subdomain-input-group:focus-within {
  border-color: #1F1F1F;
  box-shadow: 0 0 0 0.2rem rgba(31, 31, 31, 0.1);
}

.subdomain-input-group.available {
  border-color: #28a745;
}

.subdomain-input-group.unavailable {
  border-color: #dc3545;
}

.subdomain-input-group.checking {
  border-color: #ffc107;
}

.subdomain-input {
  flex: 1;
  border: none !important;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  background: transparent;
}

.subdomain-input:focus {
  outline: none;
  box-shadow: none !important;
}

.subdomain-suffix {
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  border-left: 1px solid #dee2e6;
}

.subdomain-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

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

.subdomain-status.available {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.subdomain-status.unavailable {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.subdomain-status.checking {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.subdomain-status .status-icon {
  font-size: 1rem;
}

.subdomain-status.available .status-icon::before {
  content: '✓';
  font-weight: 700;
}

.subdomain-status.unavailable .status-icon::before {
  content: '✗';
  font-weight: 700;
}

.subdomain-status.checking .status-icon::before {
  content: '⏳';
}

/* ═══════════════════════════════════════════════════════════════
   SUBDOMAIN REVIEW CARD
   ═══════════════════════════════════════════════════════════════ */

.subdomain-review-card {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
  border: 2px solid #91d5ff;
  padding: 1.5rem;
}

.subdomain-url-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.url-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1F1F1F, #2f2f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.url-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.url-content {
  flex: 1;
}

.url-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.url-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F1F1F;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  margin-bottom: 0.25rem;
}

.url-value a {
  color: #1F1F1F;
  text-decoration: none;
  border-bottom: 2px dashed #91d5ff;
  transition: all 0.2s ease;
}

.url-value a:hover {
  color: #0056b3;
  border-bottom-color: #0056b3;
}

#btn-edit-subdomain {
  color: #1F1F1F;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  transition: all 0.2s ease;
}

#btn-edit-subdomain:hover {
  color: #2f2f2f;
  background-color: rgba(31, 31, 31, 0.05);
  border-radius: 0.25rem;
}
