/* ===========================================================
   ERRAND LOGIX — UNIFIED STYLESHEET
   Single source of truth for index, booking, jobs, and
   agent-application pages. Deduplicated, dead rules removed,
   typography normalized to the scale defined in :root.
   =========================================================== */

/* ---------- Reset & Root Variables ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0b0b0b;
  --black-soft: #151515;
  --white: #ffffff;
  --off-white: #fafafa;
  --gold: #d6a21d;
  --gold-dark: #b8860b;
  --gold-light: #fff8e7;
  --text: #171717;
  --muted: #6f6f6f;
  --border: #e6e6e6;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  --radius: 14px;
  --container: 1180px;
  --fs-2xs: 10px;
  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-base: 13px;
  --fs-md: 14px;
  --fs-lg: 16px;
  --fs-h4: 15px;
  --fs-h3: 18px;
  --fs-h2: 28px;
  --fs-h1-section: clamp(31px, 4vw, 43px);
  --fs-h1-hero: clamp(44px, 6vw, 68px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  font-size: var(--fs-md);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.tab-logo{
  border-radius: 20px;
}

/* ---------- Layout Containers ---------- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}

.wrap {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}

.agent-wrap {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}

/* ---------- Header / Nav (shared across all pages) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  height: 76px;
}

.agent-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.nav {
  height: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header .nav {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}

.agent-nav {
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.agent-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  flex-shrink: 0;
}

.brand b {
  font-weight: 500;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.agent-nav .brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.agent-nav .brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-errand {
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #111;
}

.agent-nav .brand-errand {
  color: #111;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 28px 0;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: color .2s ease;
}

.dropdown-toggle:hover,
.nav-dropdown.open .dropdown-toggle {
    color: var(--gold-dark);
}

.dropdown-toggle .caret {
    display: inline-block;
    font-size: 10px;
    color: var(--gold-dark);
    transition: transform .25s ease;
}

.nav-dropdown.open .dropdown-toggle .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 270px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1000;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 11px;
    color: #171717;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.dropdown-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 15px;
    transition: background .15s ease, color .15s ease;
}

.dropdown-menu a:hover .dropdown-icon,
.dropdown-menu a:focus-visible .dropdown-icon,
.dropdown-menu a.active .dropdown-icon {
    background: var(--gold);
    color: #fff;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-text strong {
    font-size: var(--fs-sm);
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-text small {
    font-size: var(--fs-2xs);
    font-weight: 400;
    color: var(--muted);
    white-space: nowrap;
}

.brand-logix {
  font-family: "Paytone One", sans-serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--gold-dark);
}

.agent-nav .brand-logix {
  color: var(--gold-dark);
}

.mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--fs-base);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  margin: 4px auto;
}

.links a:hover,
.links .active {
  color: var(--gold-dark);
}

.back-link {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #666;
}

.back-link:hover {
  color: var(--gold-dark);
}

/* ---------- Buttons ---------- */
.btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--fs-base);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #111;
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(217, 154, 22, .2);
}

.btn-gold:hover {
  background: #e4a41d;
  box-shadow: 0 12px 24px rgba(217, 154, 22, .25);
}

.btn-outline {
  color: var(--black);
  border-color: #bcbcbc;
  background: #fff;
}

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

.btn-dark-outline {
  color: white;
  border-color: #666;
  background: transparent;
}

.btn-dark-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Shared eyebrow / small-caps labels ---------- */
.hero small,
.heading small,
.side > small,
.success > small {
  color: var(--gold-dark);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 1.5px;
}

.eyebrow,
.section-label,
.jobs-intro small,
.jobs-note small,
.choice-content small,
.info-card>small,
.application-success small {
  display: inline-block;
  color: var(--gold-dark);
  font-size: var(--fs-xs);
  letter-spacing: 1.5px;
  font-weight: 800;
}

.eyebrow,
.section-label {
  margin-bottom: 12px;
}

/* ---------- Hero (shared banner + homepage variant) ---------- */
.hero {
  padding: 70px 0;
  background: radial-gradient(circle at 85% 40%, rgba(217, 154, 22, .11), transparent 30%), #fafafa;
  border-bottom: 1px solid #eee;
}

.hero h1 {
  font-size: var(--fs-h1-hero);
  line-height: 1;
  letter-spacing: -3px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 620px;
  color: #555;
  margin-top: 18px;
  font-size: var(--fs-md);
}

#home.hero {
  min-height: 510px;
  overflow: hidden;
  padding: 0;
  border-bottom: 0;
  background: radial-gradient(circle at 78% 40%, rgba(217, 154, 22, .09), transparent 29%),
    linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
}

#home h1 {
  font-size: var(--fs-h1-hero);
  line-height: .98;
  letter-spacing: -3.5px;
  max-width: 650px;
}

.hero-grid {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 35px;
}

.hero-copy {
  padding: 60px 0;
}

.hero-copy > p {
  max-width: 600px;
  margin: 23px 0 27px;
  color: #444;
  font-size: var(--fs-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.play-icon {
  color: var(--gold-dark);
  font-size: 17px;
}

.hero-visual {
  min-height: 430px;
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.city-shape {
  position: absolute;
  inset: 60px 0 0 70px;
  opacity: .7;
  background: linear-gradient(135deg, transparent 24%, rgba(217, 154, 22, .08) 25%, transparent 26%),
    linear-gradient(45deg, transparent 28%, rgba(0, 0, 0, .035) 29%, transparent 30%);
  clip-path: polygon(10% 15%, 30% 4%, 46% 16%, 65% 8%, 91% 28%, 83% 57%, 97% 77%, 60% 91%, 41% 80%, 17% 95%, 2% 63%, 16% 42%);
}

.route-line {
  position: absolute;
  width: 330px;
  height: 150px;
  border: 3px dashed rgba(217, 154, 22, .45);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(25deg);
  right: 60px;
  top: 155px;
}

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 7px 18px rgba(217, 154, 22, .25);
}

.pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  top: 12px;
  left: 12px;
}

.pin-one {
  right: 165px;
  top: 125px;
}

.pin-two {
  right: 58px;
  bottom: 100px;
  transform: scale(.7) rotate(-45deg);
}

.agent-card {
  position: absolute;
  right: 5px;
  bottom: 60px;
  width: 230px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 4;
}

.agent-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.agent-card strong {
  display: block;
  font-size: 12px;
}

.agent-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: #35a853;
  box-shadow: 0 0 0 4px #eaf7ed;
}

.package {
  position: absolute;
  width: 190px;
  height: 155px;
  right: 90px;
  bottom: 45px;
  background: #c98920;
  border-radius: 5px;
  transform: rotate(-5deg);
  box-shadow: 0 25px 35px rgba(0, 0, 0, .15);
  z-index: 3;
}

.package-tape {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 100%;
  background: rgba(255, 236, 178, .45);
}

.package-line {
  position: absolute;
  width: 65px;
  height: 4px;
  background: rgba(0, 0, 0, .15);
  left: 25px;
}

.line-a {
  top: 68px;
}

.line-b {
  top: 80px;
  width: 45px;
}

.package-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 40px;
  height: 32px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
}

/* ---------- Section Headings (shared) ---------- */
.section {
  padding: 85px 0;
}

.section-soft {
  background: #fbfbfb;
}

.section-heading {
  text-align: center;
  margin-bottom: 43px;
}

.section-heading h2,
.area-copy h2,
.about-copy h2,
.cta-section h2 {
  font-size: clamp(31px, 4vw, 43px);
  line-height: 1.1;
  letter-spacing: -1.8px;
}

.section-heading h2::after,
.area-copy h2::after,
.about-copy h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

.section-heading p {
  color: var(--muted);
  margin-top: 9px;
  font-size: var(--fs-md);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  border-block: 1px solid #ededed;
  background: #fffdf8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  min-height: 95px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border-right: 1px solid #eee;
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  border-right: 0;
}

.icon-circle {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 18px;
  font-weight: 800;
}

.trust-grid strong {
  display: block;
  font-size: var(--fs-h4);
}

.trust-grid p {
  color: #555;
  font-size: var(--fs-sm);
  line-height: 1.45;
  margin-top: 2px;
}

/* ---------- Process (How It Works) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
  align-items: center;
  position: relative;
}

/* Connector line that "draws" itself left-to-right once the section
   scrolls into view — sits behind the cards, roughly through the
   icon row. */
.process-grid.reveal-line::before {
  content: '';
  position: absolute;
  top: 88px;
  left: 4%;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  z-index: 0;
  opacity: 0;
  transition: width 1.3s cubic-bezier(.65, 0, .35, 1) .15s, opacity .3s ease .15s;
}

.process-grid.reveal-line.visible::before {
  width: 92%;
  opacity: .55;
}

.process-card {
  min-height: 215px;
  padding: 27px 25px;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .025);
  text-align: center;
  transition: opacity .6s cubic-bezier(.2, .7, .3, 1.3),
              transform .6s cubic-bezier(.2, .7, .3, 1.3),
              box-shadow .35s ease, border-color .35s ease;
}

/* Stronger, springier entrance than the generic .reveal fade-up —
   cards rise, scale in and settle with a slight bounce, staggered
   via inline transition-delay set in JS. */
.process-card.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.9);
}

.process-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 40px rgba(214, 162, 29, .18);
  border-color: rgba(214, 162, 29, .4);
}

.step {
  position: absolute;
  top: 14px;
  left: 14px;
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  transform: scale(0);
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1) .35s;
  box-shadow: 0 0 0 0 rgba(214, 162, 29, .5);
}

.process-card.reveal.visible .step {
  transform: scale(1);
  animation: step-pulse 2.2s ease-out .9s 2;
}

@keyframes step-pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 162, 29, .55); }
  70% { box-shadow: 0 0 0 9px rgba(214, 162, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 162, 29, 0); }
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 14px auto 15px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 22px;
  font-weight: 800;
  position: relative;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), background .35s ease, color .35s ease;
}

/* Idle "orbit ring" — a soft dashed halo that spins slowly around
   each icon, only once the card has revealed. */
.card-icon::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 16px;
  border: 1.5px dashed rgba(214, 162, 29, 0);
  transition: border-color .4s ease;
  animation: icon-orbit 7s linear infinite;
}

.process-card.reveal.visible .card-icon::before {
  border-color: rgba(214, 162, 29, .45);
}

@keyframes icon-orbit {
  to { transform: rotate(360deg); }
}

.process-card:hover .card-icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--gold);
  color: #fff;
}

.process-card h3 {
  font-size: var(--fs-h4);
}

.process-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.process-arrow {
  text-align: center;
  color: var(--gold-dark);
  font-size: 26px;
  position: relative;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  animation: arrow-flow 1.6s ease-in-out infinite;
  animation-play-state: paused;
}

.process-grid.reveal-line.visible .process-arrow {
  animation-play-state: running;
}

@keyframes arrow-flow {
  0% { opacity: 0; transform: translateX(-6px); }
  35% { opacity: 1; transform: translateX(0); }
  70% { opacity: 1; transform: translateX(3px); }
  100% { opacity: 0; transform: translateX(8px); }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  padding: 27px;
  min-height: 235px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #dfc68c;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 800;
}

.service-card h3 {
  font-size: var(--fs-h4);
}

.service-card p {
  min-height: 58px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.service-card a,
.text-link {
  color: var(--black);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.service-card a span,
.text-link span {
  color: var(--gold-dark);
  margin-left: 4px;
}

/* ---------- Service Area / Map ---------- */
.area-section {
  padding: 76px 0;
  background: var(--gold-light);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
}

.area-copy h2 {
  max-width: 600px;
}

.area-copy h2::after {
  margin-left: 0;
}

.area-copy p {
  max-width: 650px;
  color: #4d4d4d;
  font-size: var(--fs-md);
  margin: 20px 0;
}

.area-copy small {
  display: block;
  margin-top: 16px;
  color: #6c5c35;
  font-size: var(--fs-xs);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-tags span {
  padding: 9px 13px;
  background: white;
  border: 1px solid #ead9af;
  border-radius: 7px;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.map-card {
  min-height: 285px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(25deg, transparent 47%, rgba(255, 255, 255, .8) 48%, rgba(255, 255, 255, .8) 49%, transparent 50%),
    linear-gradient(150deg, transparent 42%, rgba(255, 255, 255, .7) 43%, rgba(255, 255, 255, .7) 44%, transparent 45%),
    #eadfbd;
  clip-path: polygon(9% 15%, 36% 3%, 70% 10%, 95% 30%, 88% 72%, 63% 94%, 30% 83%, 4% 61%);
}

.map-road {
  position: absolute;
  height: 4px;
  background: rgba(255, 255, 255, .8);
  border-radius: 10px;
  transform-origin: left center;
}

.road-one {
  width: 340px;
  left: 25px;
  top: 95px;
  transform: rotate(16deg);
}

.road-two {
  width: 310px;
  left: 70px;
  top: 200px;
  transform: rotate(-25deg);
}

.road-three {
  width: 260px;
  left: 150px;
  top: 60px;
  transform: rotate(75deg);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  top: 7px;
  left: 7px;
}

.map-pin.big {
  width: 42px;
  height: 42px;
  top: 92px;
  left: 50%;
}

.map-pin.big::after {
  width: 12px;
  height: 12px;
  top: 15px;
  left: 15px;
}

.map-pin.small.one {
  top: 56px;
  right: 24%;
}

.map-pin.small.two {
  bottom: 50px;
  left: 32%;
  transform: scale(.8) rotate(-45deg);
}

.map-pin.small.three {
  bottom: 70px;
  right: 17%;
  transform: scale(.65) rotate(-45deg);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.about-visual {
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #f7f7f7, #fff9e9);
  padding: 40px 30px;
}

/* Give the whole visual its own springy, slightly-rotated entrance
   instead of the plain fade-up every other .reveal uses. */
.about-visual.reveal {
  opacity: 0;
  transform: translateY(24px) scale(.92) rotate(-2deg);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1.1), transform .8s cubic-bezier(.2, .7, .2, 1.1);
}

.about-visual.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.about-ring {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(217, 154, 22, .35);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  animation: ring-spin 22s linear infinite;
}

.about-visual.visible .about-ring {
  animation: ring-spin 22s linear infinite, ring-fade-in .8s ease .3s forwards;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes ring-fade-in {
  to { opacity: 1; }
}

.about-dots {
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(rgba(11, 11, 11, .16) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  z-index: 0;
  animation: dots-drift 6s ease-in-out infinite;
}

@keyframes dots-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5px, -7px); }
}

.about-box {
  width: 150px;
  height: 110px;
  position: absolute;
  top: 34px;
  right: 10%;
  background: var(--gold);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
  z-index: 1;
  animation: box-float 5s ease-in-out infinite;
}

@keyframes box-float {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}

.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 25px 45px rgba(0, 0, 0, .16);
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  animation: photo-float 4.5s ease-in-out .9s infinite;
}

.about-visual.visible .about-photo-frame {
  animation: photo-wipe-in 1s cubic-bezier(.65, 0, .3, 1) .35s forwards,
             photo-float 4.5s ease-in-out 1.4s infinite;
}

@keyframes photo-wipe-in {
  to { clip-path: inset(0 0% 0 0); }
}

@keyframes photo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Diagonal light streak that periodically sweeps across the photo. */
.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 48%, transparent 62%);
  transform: translateX(-130%);
  animation: photo-shine 4.5s ease-in-out 2.2s infinite;
}

@keyframes photo-shine {
  0% { transform: translateX(-130%); }
  22%, 100% { transform: translateX(130%); }
}

.about-badge {
  position: absolute;
  left: 0;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  z-index: 3;
  opacity: 0;
  transform: translateX(-26px) scale(.85);
  transition: opacity .55s cubic-bezier(.34, 1.56, .64, 1) 1s,
              transform .55s cubic-bezier(.34, 1.56, .64, 1) 1s;
}

.about-visual.visible .about-badge {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-badge img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.about-badge strong {
  display: block;
  font-size: var(--fs-sm);
}

.about-badge small {
  display: block;
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.about-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: var(--fs-md);
  margin: 18px 0;
}

.about-copy h2::after {
  margin-left: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 54px 0;
  color: white;
  background: var(--black);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.section-label.light {
  color: var(--gold);
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1.4px;
}

.cta-section p {
  color: #c9c9c9;
  margin-top: 6px;
  font-size: var(--fs-sm);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- CTA — Follow Us social strip ---------- */
.cta-social {
  margin-top: 40px;
}

.cta-social-line {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 26px;
}

.cta-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-social-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9a9a9a;
}

.cta-social-icons {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}

.social-btn svg {
  width: 19px;
  height: 19px;
}

.social-btn:hover {
  transform: translateY(-4px);
}

.social-btn.fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 12px 28px rgba(24, 119, 242, .4);
}

.social-btn.ig:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(221, 42, 123, .4);
}

.social-btn.x:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(255, 255, 255, .25);
}

/* ---------- Footer — index & agent-application variant (footer-grid) ---------- */
footer {
  color: #e9e9e9;
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1fr;
  gap: 50px;
  padding: 55px 0 40px;
}

.brand-footer {
  color: white;
}

.footer-brand > p {
  margin: 12px 0 17px;
  color: #969696;
  font-size: var(--fs-sm);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #3b3b3b;
  border-radius: 50%;
  color: #ddd;
  font-size: var(--fs-xs);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #aaa;
  font-size: var(--fs-xs);
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  border-left: 1px solid #333;
  padding-left: 30px;
  font-size: var(--fs-xs);
  line-height: 2;
  color: #888;
}

.footer-contact p {
  color: #aaa;
  font-size: var(--fs-xs);
  margin-bottom: 11px;
}

.footer-bottom {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #292929;
  color: #666;
  font-size: var(--fs-2xs);
}

.site-footer {
  background: var(--black);
  color: #ddd;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-errand {
  color: #fff;
}

.footer-brand .brand-logix {
  color: var(--gold);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: #777;
  margin-top: 8px;
}

/* ---------- Footer — booking/jobs/choice variant (.footer) ---------- */
.footer {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
  padding: 42px 0 30px;
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 40px;
}

.footer p,
.contact {
  color: #888;
  font-size: var(--fs-xs);
  margin-top: 10px;
}

.footlinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--fs-xs);
  color: #aaa;
}

.footlinks a:hover {
  color: var(--gold);
}

.bottom {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
  padding: 15px 0;
  border-top: 1px solid #292929;
  color: #686868;
  font-size: var(--fs-2xs);
}

@media (prefers-reduced-motion: reduce) {
  .process-grid.reveal-line::before,
  .card-icon::before,
  .process-card.reveal.visible .step,
  .process-arrow,
  .about-ring,
  .about-dots,
  .about-box,
  .about-photo-frame,
  .about-visual.visible .about-photo-frame,
  .about-photo-frame::after {
    animation: none !important;
    transition-duration: .2s !important;
  }

  .process-grid.reveal-line.visible::before { width: 92%; opacity: .55; }
  .about-visual.visible .about-photo-frame { clip-path: inset(0 0% 0 0); }
}

/* ---------- Reveal-on-scroll Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   BOOKING FORM PAGE (booking_Errand.html / booking_Delivery.html)
   =========================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.035);
}

.layout {
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 55px;
  align-items: start;
}

.heading {
  margin-bottom: 30px;
}

.heading h2 {
  font-size: var(--fs-h2);
  letter-spacing: -1px;
}

.heading p {
  color: var(--muted);
  font-size: var(--fs-base);
  margin-top: 5px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: var(--fs-sm);
  font-weight: 700;
}

label i {
  font-style: normal;
  color: #888;
  font-weight: 400;
}

label.full {
  grid-column: 1/-1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: .2s;
  font-size: var(--fs-sm);
}

input,
select {
  height: 48px;
}

textarea {
  min-height: 110px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 154, 22, .12);
}

.price {
  margin-top: 25px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ead9af;
  background: var(--gold-light);
  border-radius: 12px;
}

.price strong {
  display: block;
  font-size: 26px;
  letter-spacing: -.7px;
}

.price p {
  font-size: var(--fs-xs);
  color: #6b5a34;
}

.naira {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 19px;
}

.note {
  margin: 14px 0 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: #f8f8f8;
  color: #666;
  font-size: var(--fs-xs);
}

.note b {
  color: #333;
}

.submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.submit:hover {
  background: #222;
}

.submit span {
  color: var(--gold);
  margin-left: 6px;
}

.privacy {
  text-align: center;
  color: #999;
  font-size: var(--fs-2xs);
  margin-top: 12px;
}

aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 95px;
}

.side {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.side h3 {
  font-size: var(--fs-h3);
  letter-spacing: -.4px;
  margin: 4px 0 7px;
}

.side > p {
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.row {
  padding: 16px 0;
  border-top: 1px solid #eee;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.row span {
  display: flex;
  flex-direction: column;
}

.row b {
  font-size: var(--fs-sm);
}

.row i {
  font-style: normal;
  color: #888;
  font-size: var(--fs-xs);
}

.row strong {
  color: var(--gold-dark);
  font-size: var(--fs-h3);
  white-space: nowrap;
}

.tiny {
  border-top: 1px solid #eee;
  padding-top: 14px;
  margin-top: 5px;
}

.dark {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.dark > small {
  color: var(--gold);
}

.dark > p {
  padding: 10px 0;
  border-top: 1px solid #2e2e2e;
  color: #777;
}

.dark > p b {
  color: #eee;
}

.gold {
  background: #fffaf0;
  border-color: #eeddb5;
}

.gold a {
  display: inline-block;
  color: var(--gold-dark);
  font-size: var(--fs-xs);
  font-weight: 800;
  margin-top: 12px;
}

.wa-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 12px;
}

.success {
  padding: 50px 35px;
  text-align: center;
  border: 1px solid #ead9af;
  background: var(--gold-light);
  border-radius: 15px;
}

.check {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 23px;
}

.success h2 {
  font-size: var(--fs-h2);
}

.success p {
  max-width: 560px;
  margin: 9px auto 20px;
  color: #666;
  font-size: var(--fs-base);
}

.wa,
.again {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 17px;
  border-radius: 7px;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.wa {
  background: var(--gold);
  color: #111;
}

.again {
  margin-left: 7px;
  border: 1px solid #bbb;
  background: #fff;
  cursor: pointer;
}

/* ===========================================================
   JOBS PAGE
   =========================================================== */
.jobs-page {
  padding: 70px 0 90px;
}

.jobs-intro {
  max-width: 700px;
  margin-bottom: 35px;
}

.jobs-intro h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: -1px;
}

.jobs-intro p {
  color: var(--muted);
  font-size: var(--fs-base);
  margin-top: 8px;
}

.job-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.job-top {
  padding: 28px;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.job-status {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 20px;
  background: #eaf6e9;
  color: #28742d;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 1px;
}

.job-top h2 {
  margin-top: 8px;
  font-size: var(--fs-h2);
  letter-spacing: -.7px;
}

.job-location {
  color: #777;
  font-size: var(--fs-xs);
  margin-top: 3px;
}

.job-type {
  padding: 9px 14px;
  border: 1px solid #e6d39b;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 7px;
  font-size: var(--fs-xs);
  font-weight: 800;
}

.job-content {
  padding: 30px;
}

.job-section {
  margin-bottom: 30px;
}

.job-section h3,
.job-grid h3 {
  font-size: var(--fs-h4);
  margin-bottom: 7px;
}

.job-section p {
  color: #666;
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.job-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.job-grid ul {
  padding-left: 18px;
}

.job-grid li {
  color: #666;
  font-size: var(--fs-xs);
  margin-bottom: 8px;
  line-height: 1.6;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.area-list span {
  padding: 8px 12px;
  border-radius: 6px;
  background: #f5f5f5;
  font-size: var(--fs-2xs);
  font-weight: 700;
}

.job-section .tiny {
  font-size: var(--fs-2xs);
  color: #888;
}

.job-apply {
  padding: 20px;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
}

.job-apply h3 {
  font-size: var(--fs-h4);
}

.job-apply p {
  color: #888;
  font-size: var(--fs-2xs);
  margin-top: 2px;
}

.job-apply .btn {
  white-space: nowrap;
}

.jobs-note {
  margin-top: 55px;
  padding: 35px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.jobs-note h2 {
  font-size: var(--fs-h2);
  margin-top: 4px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-top: 30px;
}

.steps > div {
  padding-top: 18px;
  border-top: 2px solid var(--gold);
}

.steps strong {
  color: var(--gold-dark);
  font-size: var(--fs-sm);
}

.steps h3 {
  font-size: var(--fs-h4);
  margin-top: 5px;
}

.steps p {
  color: #777;
  font-size: var(--fs-2xs);
  margin-top: 4px;
  line-height: 1.6;
}

/* ===========================================================
   AGENT APPLICATION PAGE
   =========================================================== */
.agent-hero {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 68px 0 62px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--gold-dark);
}

.hero-label span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.agent-hero h1 {
  font-size: var(--fs-h1-hero);
  line-height: 1;
  letter-spacing: -3px;
  margin-top: 9px;
}

.agent-hero h1 span {
  color: var(--gold-dark);
}

.agent-hero p {
  max-width: 680px;
  font-size: var(--fs-md);
  color: #666;
  margin-top: 18px;
  line-height: 1.8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}

.hero-points div {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #444;
}

.hero-points b {
  color: var(--gold-dark);
  margin-right: 5px;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 310px;
  gap: 32px;
  padding: 55px 0 85px;
  align-items: start;
}

.application-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.035);
}

.form-heading {
  padding: 32px 34px 28px;
  border-bottom: 1px solid #eee;
}

.form-badge {
  display: inline-block;
  padding: 6px 9px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 5px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 1.2px;
}

.form-heading h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -.8px;
  margin-top: 10px;
}

.form-heading p {
  max-width: 680px;
  font-size: var(--fs-base);
  color: #777;
  margin-top: 7px;
  line-height: 1.7;
}

#agentForm {
  padding: 0 34px 34px;
}

.form-section {
  padding: 30px 0;
  border-bottom: 1px solid #ededed;
}

.section-title {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 21px;
}

.section-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: grid;
  place-items: center;
  background: var(--black);
  border-radius: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.section-title h3 {
  font-size: var(--fs-h4);
  line-height: 1.3;
}

.section-title p {
  font-size: var(--fs-xs);
  color: #929292;
  margin-top: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #303030;
}

.form-grid label.full {
  grid-column: 1/-1;
}

input,

select,

textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 7px;
  background: #fff;
  color: #222;
  font-size: var(--fs-sm);
  outline: none;
  transition: .2s;
}

input,

select {
  height: 46px;
  padding: 0 13px;
}

input:focus,

select:focus,

textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,162,29,.10);
}

input::placeholder,

textarea::placeholder {
  color: #aaa;
}

.beginner-note {
  display: flex;
  gap: 13px;
  padding: 15px;
  margin-bottom: 20px;
  background: #fffbf1;
  border: 1px solid #eddbab;
  border-radius: 9px;
}

.beginner-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 11px;
}

.beginner-note strong {
  font-size: var(--fs-sm);
}

.beginner-note p {
  font-size: var(--fs-xs);
  color: #777;
  line-height: 1.6;
  margin-top: 2px;
}

.agreement {
  padding: 25px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: var(--fs-xs);
  color: #666;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox input {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 1px;
  accent-color: var(--gold-dark);
}

.application-submit {
  height: 53px;
  width: 100%;
  border: 0;
  border-radius: 7px;
  background: var(--black);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}

.application-submit span {
  color: var(--gold);
  margin-left: 6px;
}

.application-submit:hover {
  background: #222;
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: var(--fs-2xs);
  color: #999;
  margin-top: 10px;
}

.application-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 90px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 23px;
}

.side-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  border-radius: 7px;
  margin-bottom: 17px;
}

.info-card h3 {
  font-size: var(--fs-h3);
  line-height: 1.3;
  margin: 5px 0 8px;
  letter-spacing: -.4px;
}

.info-card>p {
  font-size: var(--fs-xs);
  color: #777;
  line-height: 1.7;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #eee;
  font-size: var(--fs-2xs);
  margin-top: 5px;
}

.info-row span {
  color: #888;
}

.info-row strong {
  font-size: var(--fs-2xs);
}

.highlight-card {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(217, 154, 22, 0.12);
}

.dark-card {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.dark-card>small {
  color: var(--gold);
}

.dark-card>p {
  color: #888;
}

.qualities {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.qualities div {
  font-size: var(--fs-xs);
  color: #bbb;
}

.qualities span {
  color: var(--gold);
  font-weight: 800;
  margin-right: 4px;
}

.process {
  margin-top: 15px;
}

.process div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid #eee;
  font-size: var(--fs-xs);
  color: #666;
}

.process b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #f7f7f7;
  border-radius: 5px;
  font-size: var(--fs-2xs);
  color: var(--gold-dark);
}

.gold-card {
  background: var(--gold-light);
  border-color: #ead8a6;
}

.gold-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--gold-dark);
}

.application-success {
  padding: 60px 30px;
  text-align: center;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 22px;
}

.application-success h2 {
  font-size: var(--fs-h2);
  letter-spacing: -.7px;
  margin-top: 6px;
}

.application-success p {
  max-width: 520px;
  margin: 8px auto 20px;
  font-size: var(--fs-base);
  color: #777;
  line-height: 1.7;
}

.application-success a {
  display: inline-block;
  padding: 11px 17px;
  border-radius: 7px;
  background: var(--gold);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.price small {
  display: block;
  color: var(--gold-dark);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 1.2px;
}

/* ===========================================================
   CHOICE / BOOKING LANDING PAGE (booking.html)
   =========================================================== */
.choice-hero {
  background: #fff;
  padding: 75px 0 65px;
  border-bottom: 1px solid #eee;
}

.choice-hero h1 {
  font-size: var(--fs-h1-hero);
  line-height: .98;
  letter-spacing: -4px;
  margin-top: 12px;
}

.choice-hero h1 span {
  color: var(--gold-dark);
}

.choice-hero p {
  max-width: 550px;
  font-size: var(--fs-md);
  color: #707070;
  margin-top: 20px;
}

.choice-section {
  padding: 55px 0 90px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: .25s;
}

.choice-card:hover {
  transform: translateY(-5px);
  border-color: #d2aa43;
  box-shadow: 0 15px 40px rgba(0,0,0,.07);
}

.choice-number {
  position: absolute;
  top: 25px;
  right: 28px;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: #aaa;
}

.choice-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  border-radius: 9px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 42px;
}

.choice-content {
  max-width: 500px;
}

.choice-content h2 {
  font-size: var(--fs-h2);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-top: 5px;
}

.choice-content p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: #777;
  margin-top: 12px;
  max-width: 430px;
}

.choice-link {
  display: inline-block;
  margin-top: 24px;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: #111;
}

.choice-link b {
  color: var(--gold-dark);
  margin-left: 6px;
}

.choice-card:hover .choice-link {
  color: var(--gold-dark);
}

.delivery-card {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.delivery-card:hover {
  border-color: var(--gold);
}

.delivery-card .choice-number {
  color: #777;
}

.delivery-card .choice-icon {
  background: var(--gold);
  color: #111;
}

.delivery-card .choice-content p {
  color: #999;
}

.delivery-card .choice-link {
  color: #fff;
}

.delivery-card .choice-link b {
  color: var(--gold);
}

.help-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 25px;
  background: var(--gold-light);
  border: 1px solid #ead8a6;
  border-radius: 10px;
}

.help-box strong {
  font-size: var(--fs-sm);
}

.help-box p {
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: #777;
  margin-top: 3px;
  max-width: 760px;
}

.help-box a {
  white-space: nowrap;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--gold-dark);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1050px) {

  .nav {
    gap: 18px;
  }

  .nav-links {
    gap: 17px;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n+2) {
    border-bottom: 1px solid #eee;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .process-arrow {
    display: none;
  }

  /* The draw-on line is choreographed for the single-row desktop
     layout; on the 2-column stack it would cut across cards, so
     skip it here. */
  .process-grid.reveal-line::before {
    display: none;
  }

}

@media (max-width: 900px) {

  .layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar,
  aside {
    position: static;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 850px) {

  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-side {
    position: static;
  }

}

@media (max-width: 820px) {

  .container {
    width: min(var(--container), calc(100% - 34px));
  }

  .nav {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 15px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 5px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 5px;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    min-width: 0;
    width: 100%;
    max-height: 0;
    padding: 0 4px;
    margin: 0;
    border: none;
    box-shadow: none;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    visibility: visible;
    pointer-events: auto;
    max-height: 220px;
    padding: 6px;
    margin: 2px 0 6px;
  }

  .dropdown-menu a {
    padding: 9px 10px;
  }

  .dropdown-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .dropdown-text strong {
    color: #333;
  }

  .hero-grid,
  .area-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  #home.hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 70px 0 20px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .area-grid {
    gap: 30px;
  }

  .about-grid {
    gap: 35px;
  }

  .about-visual {
    min-height: 340px;
    padding: 30px 20px;
  }

  .about-ring {
    width: 170px;
    height: 170px;
  }

  .about-box {
    width: 120px;
    height: 90px;
  }

  .about-photo-frame {
    max-width: 250px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }

}

@media (max-width: 800px) {

  .job-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 700px) {

  .container {
    width: calc(100% - 30px);
  }

  .choice-hero {
    padding: 55px 0 50px;
  }

  .choice-hero h1 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 310px;
  }

  .help-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-box a {
    margin-top: 5px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 16px;
  }

}

@media (max-width: 600px) {

  .wrap,
  .nav,
  .footer,
  .bottom {
    width: calc(100% - 34px);
  }

  .hero {
    padding: 55px 0;
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .layout {
    padding: 50px 0 65px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto !important;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .price {
    align-items: flex-start;
  }

  .success {
    padding: 38px 20px;
  }

  .wa,
  .again {
    width: 100%;
    justify-content: center;
    margin: 0 0 8px;
  }

  .jobs-page {
    padding: 50px 0 65px;
  }

  .job-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-content {
    padding: 20px;
  }

  .job-apply {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-apply .btn {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .jobs-note {
    padding: 25px 20px;
  }

  .agent-wrap,

.agent-nav,

.agent-footer-inner,

.agent-bottom {
    width: calc(100% - 30px);
  }

  .agent-nav .brand-logo {
    width: 38px;
    height: 38px;
  }

  .agent-nav .brand-name {
    font-size: 16px;
  }

  .agent-hero {
    padding: 50px 0;
  }

  .agent-hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .hero-points {
    flex-direction: column;
    gap: 8px;
  }

  .application-layout {
    padding: 35px 0 60px;
  }

  .form-heading,

#agentForm {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }

  .qualities {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {

  .section {
    padding: 65px 0;
  }

  #home h1 {
    font-size: 43px;
    letter-spacing: -2.3px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 285px;
  }

  .package {
    width: 145px;
    height: 120px;
    right: 55px;
    bottom: 25px;
  }

  .agent-card {
    right: 0;
    bottom: 22px;
    width: 190px;
  }

  .pin-one {
    right: 120px;
    top: 60px;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid #eee;
  }

  .trust-grid article:first-child {
    padding-left: 20px;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .process-card {
    min-height: 190px;
  }

  .service-card {
    min-height: auto;
  }

  .map-card {
    min-height: 230px;
  }

  .footer-bottom {
    flex-direction: column;
  }

}

@media (max-width: 450px) {

  .choice-hero h1 {
    font-size: 43px;
  }

  .choice-card {
    padding: 25px;
  }

  .choice-icon {
    margin-bottom: 32px;
  }

}