:root {
  --yellow: #ffe600;
  --yellow-light: #fff4a3;
  --yellow-dark: #d4bf00;
  --black: #111111;
  --black-soft: #1e1e1e;
  --white: #ffffff;
  --off-white: #fafaf7;
  --gray-light: #f2f2ee;
  --gray-text: #666660;
  --gray-100: #f4f4f0;
  --gray-200: #e8e8e2;
  --gray-400: #bebeb8;
  --gray-600: #72726c;
  --gray-light: #f2f2ee;
  --gray-mid: #e0e0d8;
  --gray-text: #666660;
  --font-body: "Nunito", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --brand-name-font: "Oswald", sans-serif;
  --font-mono: "Space Mono", monospace;
  --radius: 4px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  --font-display: "Bebas Neue", sans-serif;
  background: var(--white);
  color: var(--black);
  margin: 0;
}

/* ── NAVBAR ── */
.navbar-BookEdu {
  /* background: var(--white); */
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  background: var(--black-soft);
}

/* .navbar-BookEdu .brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1px;
  text-decoration: none;
} */

.navbar-BookEdu .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-family: var(--brand-name-font);
  font-size: 1.9rem;
  color: var(--black);
  /* letter-spacing: 2px; */
  line-height: 1;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.brand-name span {
  color: var(--yellow-dark);
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--gray-text);
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-BookEdu .nav-link {
  /* color: var(--black); */
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 14px !important;
  transition: color 0.2s;
  font-family: var(--font-body);
  color: var(--white);
}

.navbar-BookEdu .nav-link:hover {
  color: var(--yellow);
}

.logo-box {
  /* width: 46px; */
  height: 46px;
  /* background: var(--black); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
}

.logo-box > img {
  width: 100%;
  mix-blend-mode: screen;
}

.btn-login {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
  border-radius: var(--radius);
  font-weight: 700;
  padding: 6px 20px;
  transition: all 0.2s;
}

.btn-login:hover {
  background: var(--yellow);
  color: var(--white);
}

.custom-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0.55rem 1.1rem;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.custom-btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.03);
}

.vendor-login{
  color: var(--yellow);
  text-decoration: none;
  margin-left: 10px;
}

/* ── HERO ── */
.hero {
  /*background: linear-gradient(135deg, #fff6fd 0%, #fdf1ff 60%, #fff9e0 100%);*/
  background: linear-gradient(135deg, #fdf1ff 30%, #fdf1ff 30%, #ffe600 100%);
  padding: 50px 0 0;
  overflow: hidden;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.95;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
  display: block;
  font-size: 3.2rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--black-soft);
  max-width: 430px;
  line-height: 1.75;
  margin: 1.75rem 0;
  font-weight: 400;
  animation: fadeUp 0.7s 0.2s ease both;
}

.badge-gst {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.hero-img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img-wrap img {
  max-width: 750px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-graphic {
  position: absolute;
  right: 5%;
  top: 30px;
  opacity: 0.07;
  font-size: 18rem;
  font-weight: 900;
  color: var(--yellow);
  pointer-events: none;
  user-select: none;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--white);
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid var(--gray-light);
  padding: 30px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-num {
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--yellow);
  font-family: var(--font-display);
}

.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-text);
  font-weight: 600;
  margin-top: 2px;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--black);
}

.section-sub {
  color: var(--gray-text);
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ── WHY BookEdu ── */
.why-section {
  background: var(--off-white);
  padding: 70px 0;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  height: 100%;
  border-left: 4px solid var(--yellow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
}

.why-card .icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 2rem;
}

.why-card h5 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-card p {
  font-family: var(--font-body);
  color: var(--gray-text);
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}

/* ── REWARDS BANNER ── */
.rewards-section {
  background: var(--yellow);
  padding: 50px 0;
}

.reward-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
}

.reward-card .ri {
  font-size: 2rem;
  margin-bottom: 10px;
}

.reward-card h6 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  line-height: 1.35;
  font-weight: 700;
  font-family: var(--font-body);
}

.reward-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-body);
  padding-top: 15px;
}

/* ── TESTIMONIALS ── */
.custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background-color: white;
  border-radius: 50%;
  padding: 6px;
}

.video-testimonial-card {
  background: #fff;
  border-radius: 16px;
  /* Zyada rounded corners */
  padding: 15px;
  height: 100%;
  transition: 0.3s;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Soft shadow like image 2 */
}

.video-testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.thumb-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.thumb-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  /* BookEdu Pink */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: 3px solid white;
  /* White border as seen in image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.play-btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.1);
  border-color: var(--yellow);
}

.video-testimonial-card h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--black);
}

.video-testimonial-card .location {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}

.video-testimonial-card .quote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  font-family: var(--font-body);
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--off-white);
  padding: 50px 0;
}

.step-card {
  text-align: center;
  padding: 10px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.step-card h6 {
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.step-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 600;
  font-family: var(--font-body);
}

/* ── LEARNING HUB BANNER ── */
.hub-section {
  background: var(--yellow);
  padding: 40px 0;
  color: var(--white);
}

.hub-section h3 {
  font-weight: 500;
  color: var(--black);
  font-size: 2.1rem;
}

.hub-section p {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  font-family: var(--font-body);
  color: var(--black);
}

.btn-hub {
  background: var(--black);
  color: var(--yellow);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  padding: 10px 26px;
  font-size: 1rem;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}

.btn-hub:hover {
  opacity: 0.85;
}

/* ── GROW ── */
.grow-section {
  background: var(--white);
  padding: 70px 0;
}

.grow-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 22px 20px;
  height: 100%;
  border-top: 3px solid var(--yellow);
  box-shadow: var(--shadow);
}

.grow-card .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.grow-card h6 {
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.grow-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-body);
}

/* ── CATEGORIES ── */
.categories-section {
  background: var(--yellow);
  padding: 60px 0;
  color: var(--white);
}

.cat-link {
  display: inline-block;
  background: var(--white);
  border: 1px solid #e0e0d8;
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  margin: 5px;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.cat-link:hover {
  background: var(--black);
  border-color: var(--yellow);
  color: var(--yellow);
}

.view-more {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: var(--font-display);
}

/* ── SUPPORT ── */
.support-section {
  background: var(--off-white);
  padding: 50px 0;
}

.support-badge {
  background: var(--yellow);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: #aaa;
  padding: 50px 0 24px;
}

footer .brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1px;
}

footer .brand > img {
  width: 200px;
  mix-blend-mode: screen;
}

footer p {
  font-size: 1rem;
}

footer h6 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

footer a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 7px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--yellow);
}

footer .divider {
  border-color: #333;
  margin: 30px 0 16px;
}

footer .copy {
  font-size: 0.78rem;
  color: #555;
}

footer .social-icon {
  width: 36px;
  height: 36px;
  background: #222;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover colors */
footer .social-icon:hover {
  transform: translateY(-3px);
}

/* Individual hover colors */
footer .social-icon:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 span {
    font-size: 2.4rem;
  }
}

/* ------------------------------ VENDOR SIGN UP -------------------------------------------- */

.sign-up-section {
  min-height: 100vh;
  /* full screen height */
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}

.sign-up-section h4 {
  color: var(--yellow);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.sign-up-section .form-container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sign-up-section .right-form {
  padding: 40px;
}

.sign-up-section .left-img {
  /* background-image: url('./assets/img/sing-up-img.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-up-section .left-img img {
  max-width: 90%;
}

/* input */
.sign-up-section .form-control {
  height: 50px;
  border-radius: 6px;
  border: 1px solid var(--black-soft);
}

.sign-up-section .error {
  color: red;
  font-size: 13px;
}

.sign-up-section .custom-btn {
  background-color: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.sign-up-section .custom-btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .sign-up-section .left-img {
    display: none;
  }
}

/* ------------------------------ VENDOR REGISTRATION --------------------------------------- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 3px;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 1.6px;
  text-align: center;
  padding: 0.4rem 1rem;
}

.top-bar span {
  color: #fff;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--black);
  padding: clamp(1.75rem, 5vw, 3.25rem) 0 clamp(1.25rem, 4vw, 2.25rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 230, 0, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-wm {
  position: absolute;
  right: -10px;
  bottom: -25px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 11rem);
  color: rgba(255, 230, 0, 0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
  white-space: nowrap;
}

.hero-lbl {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.hero-lbl::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--yellow);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.1rem);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.05;
}

.hero-title span {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(0.8rem, 2vw, 0.93rem);
  color: #999;
  line-height: 1.65;
  margin-top: 0.6rem;
  max-width: 500px;
  font-family: var(--font-body);
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 1.1rem;
}

.breadcrumb-row a {
  color: #555;
  text-decoration: none;
  transition: color var(--t);
}

.breadcrumb-row a:hover {
  color: var(--yellow);
}

.breadcrumb-row .bc-sep {
  color: #444;
}

.breadcrumb-row .bc-cur {
  color: var(--yellow);
}

/* hero side badges */
.hero-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.55;
  font-family: var(--font-body);
}

.hero-badge i {
  color: var(--yellow);
  font-size: 1.05rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.hero-badge strong {
  color: #fff;
}

/* ─── STEPPER BAR ─── */
.stepper-bar {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  padding: 0.8rem 0;
  position: sticky;
  top: 65px;
  z-index: 1030;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stepper {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 0.2rem;
}

.stepper::-webkit-scrollbar {
  display: none;
}

.step-item {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  right: -4px;
  top: 22px;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
  transition: background 0.4s;
}

.step-item.done:not(:last-child)::after,
.step-item.active:not(:last-child)::after {
  background: var(--yellow);
}

.step-pill {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.3s;
}

.step-item.active .step-pill {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
  font-size: 1rem;
}

.step-item.done .step-pill {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}

.step-txt {
  min-width: 0;
  margin-left: 0.45rem;
}

.step-txt-label {
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  line-height: 1;
  font-weight: 500;
  font-family: var(--font-display);
}

.step-txt-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 12px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.step-item.active .step-txt-label,
.step-item.active .step-txt-name {
  color: var(--yellow);
}

.step-item.done .step-txt-label,
.step-item.done .step-txt-name {
  color: var(--yellow-dk);
}

/* ─── FORM SECTIONS ─── */
.form-sec {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-bottom: 1.1rem;
  transition: box-shadow var(--t);
}

.form-sec:hover {
  box-shadow: var(--sh-md);
}

.fs-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.25rem;
  background: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  cursor: pointer;
  user-select: none;
}

.fs-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--black);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.fs-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black-soft);
  font-family: var(--font-body);
}

.fs-title {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.2;
  font-family: var(--font-display);
}

.fs-desc {
  font-size: 0.9rem;
  color: var(--black-soft);
  margin-top: 0px;
  font-family: var(--font-body);
}

.fs-chevron {
  margin-left: auto;
  color: var(--black);
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.form-sec.collapsed .fs-chevron {
  transform: rotate(-90deg);
}

.fs-body {
  padding: 1.25rem;
}

.form-sec.collapsed .fs-body {
  display: none;
}

/* ─── FIELD GROUP LABEL ─── */
.fg-label {
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--gray-200);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.fg-label::before {
  content: "";
  display: inline-block;
  width: 41px;
  height: 3px;
  background: var(--yellow);
}

/* ─── CONTROLS ─── */
.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.32rem;
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.lbl-req {
  color: var(--red);
  font-size: 0.66rem;
}

.lbl-opt {
  font-size: 0.54rem;
  color: var(--gray-600);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gray-100);
  padding: 0.09rem 0.36rem;
  border-radius: 2px;
}

.form-control,
.form-select {
  font-size: 0.95rem;
  border: 1px solid var(--gray-600);
  border-radius: 5px;
  padding: 0.58rem 0.88rem;
  color: var(--black);
  background: var(--white);
  transition:
    border-color var(--t),
    box-shadow var(--t);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.22);
  outline: none;
}

.form-control::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.ii-wrap {
  position: relative;
}

.ii-wrap .form-control,
.ii-wrap .form-select {
  padding-left: 2.5rem;
}

.ii-wrap .ii {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
  font-size: 1rem;
  pointer-events: none;
}

.f-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 0.26rem;
  font-family: var(--fm);
  letter-spacing: 0.3px;
}

.form-check-input:checked {
  background-color: var(--black);
  border-color: var(--black);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.22);
}

/* ─── RADIO CARDS ─── 
    .rc-group {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
    }

    .rc-card {
      flex: 1 1 72px;
      min-width: 72px;
      max-width: 130px;
      border: 2px solid var(--gray-200);
      border-radius: var(--r);
      padding: .6rem .65rem;
      text-align: center;
      cursor: pointer;
      transition: all var(--t);
      position: relative;
    }

    .rc-card input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .rc-card:hover {
      border-color: var(--yellow-dk);
      background: var(--yellow-lt);
    }

    .rc-card.selected {
      border-color: var(--black);
      background: var(--yellow);
    }

    .rc-ico {
      font-size: 1.2rem;
      display: block;
      margin-bottom: .22rem;
    }

    .rc-lbl {
      font-weight: 800;
      font-size: .73rem;
      color: var(--gray-600);
      display: block;
    }

    .rc-card.selected .rc-lbl {
      color: var(--black);
    }*/

/* ─── CHECK CARDS ─── */
.ck-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  transition:
    border-color var(--t),
    background var(--t);
  cursor: pointer;
}

.ck-card:hover {
  border-color: var(--yellow-dk);
  background: var(--yellow-lt);
}

.ck-card .form-check-input {
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.ck-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.ck-text strong {
  color: var(--black);
}

.ck-text a {
  color: var(--yellow-dk);
  font-weight: 700;
  text-decoration: none;
}

.ck-text a:hover {
  text-decoration: underline;
}

/* ─── INFO BOXES ─── */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r);
  font-size: 0.79rem;
  line-height: 1.6;
}

.info-box i {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ib-yellow {
  background: var(--yellow-lt);
  border: 1px solid #e8d800;
  color: #555;
}

.ib-yellow i {
  color: var(--yellow-dk);
}

.ib-green {
  background: var(--green-bg);
  border: 1px solid #a5d6a7;
  color: #333;
}

.ib-green i {
  color: var(--green);
}

.ib-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #aaa;
}

.ib-dark i {
  color: var(--yellow);
}

.ib-dark strong {
  color: #fff;
}

/* ─── ACTION BAR ─── */
.action-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 0.8rem;
  box-shadow: var(--sh-sm);
}

.btn-draft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.62rem 1.25rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-draft:hover {
  border-color: var(--black);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.62rem 1.25rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-back:hover {
  color: var(--black);
  border-color: var(--black);
}

#vendorForm .custom-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0.55rem 1.1rem;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

#vendorForm .custom-btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.03);
}

/* ─── SUCCESS PANEL ─── */
.success-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
  text-align: center;
  box-shadow: var(--sh-md);
}

.success-ico {
  width: 78px;
  height: 78px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: 1px;
  color: var(--black);
}

.success-sub {
  font-size: clamp(0.82rem, 2vw, 0.93rem);
  color: var(--gray-600);
  max-width: 440px;
  margin: 0.55rem auto 0;
  line-height: 1.75;
}

.ref-badge {
  display: inline-block;
  background: var(--gray-100);
  border: 1.5px dashed var(--gray-400);
  padding: 0.48rem 1.6rem;
  border-radius: var(--r);
  font-family: var(--fm);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--black);
  margin: 1.15rem 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 1.65rem 0;
  margin-top: 2.5rem;
}

.f-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: var(--white);
}

.f-logo span {
  color: var(--yellow);
}

.f-sub {
  font-size: 0.6rem;
  color: #555;
  font-family: var(--fm);
  letter-spacing: 1px;
}

.f-link {
  color: #888;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--t);
}

.f-link:hover {
  color: var(--yellow);
}

.f-copy {
  font-size: 0.66rem;
  color: #444;
  font-family: var(--fm);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.52s ease,
    transform 0.52s ease;
}

.fu.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
/* ≥1400px */
@media (min-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}

/* <992px — tablet */
@media (max-width: 991.98px) {
  .stepper-bar {
    top: 68px;
  }

  .step-txt {
    display: none;
  }

  .step-item {
    flex: none;
  }

  .stepper {
    justify-content: space-around;
    gap: 0.4rem;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .mob-snav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* <768px — mobile */
@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.58rem;
    letter-spacing: 1px;
    padding: 0.38rem 0.75rem;
  }

  .stepper-bar {
    top: 60px;
  }

  .page-hero {
    padding: 1.4rem 0 1.1rem;
  }

  .fs-head {
    padding: 0.85rem 0.95rem;
    gap: 0.6rem;
  }

  .fs-body {
    padding: 1rem;
  }

  .action-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .action-bar > * {
    width: 100%;
    justify-content: center;
  }

  .btn-draft,
  .btn-back,
  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .rc-group {
    gap: 0.4rem;
  }

  .rc-card {
    min-width: 65px;
  }
}

/* <576px — extra small */
@media (max-width: 575.98px) {
  .fs-title {
    font-size: 1.02rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .fs-desc {
    display: none;
  }

  .rc-card {
    flex: 1 1 60px;
    padding: 0.5rem 0.4rem;
  }

  .success-panel {
    padding: 1.75rem 1rem;
  }
}
