/* =========================================================
   FDI CLIENT WIZARD PAGE RESTORATION
   ========================================================= */
body {
  background: linear-gradient(to bottom right, #f4f5f6, #e9edf4) !important;
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
  margin: 0;
  padding: 0;
}

/* --- Header area (logo + title + contact) --- */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 20px 40px;
  border-bottom: 1px solid #e6e9ee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
.header-content .left-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-content .left-block img {
  height: 50px;
  object-fit: contain;
}
.header-content .company-name {
  font-weight: 700;
  color: #002d5c;
  font-size: 16px;
}
.header-content .center-block h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #002d5c;
}
.header-content .center-block .subtext {
  font-size: 13px;
  color: #4e8bda;
  margin-top: 3px;
}
.header-content .right-block {
  text-align: right;
  font-size: 13px;
  color: #64748b;
}
.header-content .right-block a {
  color: #4e8bda;
  text-decoration: none;
}
.header-content .right-block a:hover {
  text-decoration: underline;
}

/* --- Wizard header (progress + navigation) --- */
.wizard-header {
  background: #f8f9fc;
  padding: 24px 40px 16px;
  border-bottom: 1px solid #e6e9ee;
  text-align: center;
}
.progress-wrap {
  margin-bottom: 14px;
}
.progress-title {
  font-weight: 600;
  font-size: 15px;
  color: #002d5c;
}
.progress-pill {
  display: inline-block;
  background: #e9eef8;
  color: #002d5c;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 8px;
}
.progressbar {
  background: #e6e9ee;
  height: 6px;
  border-radius: 4px;
  margin: 8px auto;
  width: 60%;
  overflow: hidden;
}
.progressbar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #002d5c, #4e8bda, #31a6d6);
  transition: width 0.4s ease;
}

/* --- Section navigation (steps) --- */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.steps a {
  font-size: 13px;
  text-decoration: none;
  color: #002d5c;
  padding: 6px 10px;
  border-radius: 6px;
  background: transparent;
  transition: all 0.2s ease;
}
.steps a:hover {
  background: rgba(78, 139, 218, 0.08);
  color: #31a6d6;
}
.steps a.active {
  color: #7566de;
  border-bottom: 2px solid #7566de;
}

/* --- Form layout --- */
.wizard-grid {
  display: flex;
  justify-content: center;
  padding: 30px 20px 60px;
}
.panel {
  background: #fff;
  max-width: 950px;
  width: 100%;
  border-radius: 10px;
  padding: 28px 36px;
  box-shadow: 0 6px 18px rgba(0, 45, 92, 0.08);
}
.panel h3 {
  font-size: 18px;
  color: #002d5c;
  font-weight: 700;
  margin-bottom: 10px;
}
.panel .sub {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* --- File input --- */
.panel input[type="file"] {
  display: inline-block;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f9fafc;
  font-size: 13px;
}

/* --- Buttons --- */
.actions-sticky {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 24px;
}
.actions-sticky .btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn.primary {
  background: linear-gradient(180deg, #002d5c, #001e3e);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 45, 92, 0.25);
}
.btn.primary:hover {
  background: #004080;
}
.btn.ghost {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #002d5c;
}
.btn.ghost:hover {
  background: rgba(78, 139, 218, 0.08);
}

/* --- Footer --- */
footer {
  text-align: center;
  color: #64748b;
  font-size: 12px;
  padding: 20px 0;
}
