/* ================================================
   CONTACT US - SMART FLOW STYLES
   Professional, clean design for multi-step form
   ================================================ */

/* ---- Step containers ---- */
.smart-step {
  animation: stepFadeIn 0.35s ease-out;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Step header ---- */
.smart-step-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8ecf1;
}

.smart-step-header > i {
  font-size: 36px;
  color: #39b54a;
  margin-bottom: 12px;
  display: block;
}

.smart-step-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.smart-step-header p {
  font-size: 14px;
  color: #5a6478;
  margin: 0;
  line-height: 1.5;
}

/* ---- Intent option cards ---- */
.intent-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.intent-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.intent-option-card:hover {
  border-color: #39b54a;
  background: #f0fdf4;
  box-shadow: 0 2px 8px rgba(57, 181, 74, 0.1);
  transform: translateX(4px);
}

.intent-option-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  border-radius: 10px;
  font-size: 18px;
  color: #252d87;
  transition: all 0.2s ease;
}

.intent-option-card:hover .intent-option-icon {
  background: #252d87;
  color: #ffffff;
}

.intent-option-content {
  flex: 1;
}

.intent-option-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1f36;
  margin: 0 0 3px;
}

.intent-option-content p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.intent-option-arrow {
  color: #c5cbd6;
  font-size: 14px;
  transition: all 0.2s ease;
}

.intent-option-card:hover .intent-option-arrow {
  color: #39b54a;
  transform: translateX(3px);
}

/* ---- Action buttons area ---- */
.smart-step-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8ecf1;
}

/* ---- Reservation found banner ---- */
.res-found-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  margin-bottom: 22px;
}

.res-found-banner > i {
  font-size: 22px;
  color: #39b54a;
  flex-shrink: 0;
}

.res-found-banner strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #166534;
  margin-bottom: 2px;
}

.res-found-banner span {
  font-size: 13px;
  color: #15803d;
  line-height: 1.4;
}

/* ---- Error banner ---- */
.form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #991b1b;
  font-size: 13px;
}

.form-error i {
  color: #dc2626;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #39b54a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover:not(:disabled) {
  background: #2d9a3c;
  box-shadow: 0 4px 12px rgba(57, 181, 74, 0.3);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: #5a6478;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #f5f7fa;
  border-color: #b0b8c9;
  color: #1a1f36;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-back:hover {
  color: #252d87;
}

/* ---- Success state ---- */
.smart-success-box {
  text-align: center;
  padding: 40px 20px;
}

.smart-success-box > i {
  color: #39b54a !important;
  margin-bottom: 18px;
}

.smart-success-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0 0 10px;
}

.smart-success-box p {
  font-size: 14px;
  color: #5a6478;
  margin: 0;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

/* ---- Required asterisk ---- */
.req {
  color: #dc2626;
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .smart-step-header h2 {
    font-size: 19px;
  }

  .intent-option-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .intent-option-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 16px;
  }

  .intent-option-content h3 {
    font-size: 14px;
  }

  .smart-success-box {
    padding: 30px 10px;
  }
}