/* =====================================================
//michot-website/public/css/styles.css
   CENTER ALERT
===================================================== */

.center-alert-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.center-alert-overlay.hidden {
  display: none !important;
}

.center-alert-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.center-alert-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 26px;
  font-weight: 800;
  cursor: pointer;
  color: #444;
}

.center-alert-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #0f5fc9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.center-alert-card h2 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.center-alert-card p {
  color: #555;
  line-height: 1.55;
  margin-bottom: 22px;
}

.center-alert-action {
  width: 100%;
  min-height: 48px;
}

.center-alert-success .center-alert-icon {
  background: #147a36;
}

.center-alert-error .center-alert-icon {
  background: #b42318;
}

.center-alert-warning .center-alert-icon {
  background: #b7791f;
}

.center-alert-info .center-alert-icon {
  background: #0f5fc9;
}
/* =====================================================
   MICHOT — styles.css (FULL CLEANED FINAL — SHARED IDENTITY)
   File: /public/css/styles.css

   PURPOSE:
   - Main Michot website CSS
   - Shared account authentication flow
   - Step-by-step OTP/account setup pages
   - Driver onboarding website pages
   - Fixed Michot blue navbar and footer
   - Mobile menu support
   - Legal acceptance checkbox support

   UPDATED:
   - Supports public/auth.html step-flow screen
   - Supports public/otp.html 6-digit verification
   - Supports account-name, account-phone, account-password,
     and account-address pages
   - Supports driver onboarding pages and document upload pages
   - Removes visual dependency on role page
   - Keeps shared identity UI:
     one Michot account for website, Rider app, and Driver app
===================================================== */

/* =====================================================
   BASE
===================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  background: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.hidden {
  display: none !important;
}

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

/* =====================================================
   NAVBAR
===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #0f5fc9;
  color: #fff;
  z-index: 1000;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE */

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-left .brand,
.brand {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.nav-left .nav-link {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

/* CENTER */

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-search {
  width: min(520px, 100%);
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
}

/* RIGHT SIDE */

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-right .nav-link,
.nav-link {
  color: #fff;
  font-weight: 800;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  text-decoration: underline;
}

.nav-cta {
  background: #fff;
  color: #000;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* BACK BUTTON FOR AUTH PAGES */

.nav-back {
  background: none !important;
  border: none !important;
  color: #fff !important;
  font-size: 30px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  display: none;
}

.auth-page .nav-back {
  display: inline-flex !important;
  align-items: center !important;
}

.nav-back:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

/* =====================================================
   DESKTOP NAV / MOBILE NAV
===================================================== */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 16px;
  background: #0f5fc9;
}

.mobile-nav.open {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

/* =====================================================
   HAMBURGER MENU
===================================================== */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 10px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0f5fc9;
  color: #fff;
  display: none;
  flex-direction: column;
  padding: 24px 18px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .menu-cta {
  margin-top: 18px;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 900;
}

/* =====================================================
   DROPDOWN — DESKTOP SIGNUP
===================================================== */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 48px;
  width: 200px;
  background: #fff;
  color: #000;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 2000;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
  color: #000;
}

.dropdown-menu a:hover {
  background: #f2f2f2;
}

/* =====================================================
   ACCOUNT MENU
===================================================== */

.account-menu {
  position: relative;
}

.account-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.account-dropdown {
  position: absolute;
  right: 0;
  top: 140%;
  background: #0f5fc9;
  border-radius: 12px;
  min-width: 160px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.account-dropdown.open {
  display: flex;
}

.account-dropdown button {
  background: none;
  border: none;
  color: #fff;
  padding: 14px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.account-dropdown button:hover {
  background: #0c52ad;
}

/* =====================================================
   PAGE / HERO
===================================================== */

.page {
  padding-top: 96px;
  flex: 1;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 18px;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
  font-weight: 800;
}

.hero p {
  margin-top: 10px;
  color: #444;
}

.hero-note {
  margin-top: 18px;
  line-height: 1.6;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}


/* Shared homepage button layout */
.hero-actions .primary-btn,
.hero-actions .ghost-btn {
  width: auto;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =====================================================
   PAYMENTS PAGE
===================================================== */

.payments-page {
  background:
    radial-gradient(circle at top right, rgba(59, 119, 236, 0.12), transparent 32rem),
    linear-gradient(#fff, #fff);
}

.payments-page .hero,
.payments-page .content-section {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.payments-page .hero {
  padding: 96px 0 72px;
  text-align: left;
}

.payments-hero {
  border-bottom: 1px solid #e9e9e9;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin-bottom: 12px;
  color: #0f5fc9;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payments-page .hero h1,
.content-section h2 {
  color: #111;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.payments-page .hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
}

.content-section {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 0;
}

.content-section h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.02;
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  color: #333;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.primary-button {
  background: #0f5fc9;
  color: #fff;
}

.secondary-button {
  background: #f2f2f2;
  color: #000;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p {
  margin-top: 12px;
  color: #555;
  font-size: 17px;
}

/* =====================================================
   PAYMENT CARDS
===================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  margin-top: 18px;
  color: #111;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.info-card p {
  margin-top: 10px;
  color: #555;
  font-size: 15.5px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f1f5ff;
  color: #0f5fc9;
  font-size: 22px;
  font-weight: 950;
}

/* =====================================================
   PAYMENT SPLIT / PROCESS SECTIONS
===================================================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 40px;
}

.split-section.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.split-text p {
  margin-top: 14px;
  color: #555;
  font-size: 17px;
}

.process-card {
  padding: 30px;
  border-radius: 28px;
  background: #0f5fc9;
  color: #fff;
  box-shadow: 0 22px 50px rgba(15, 95, 201, 0.2);
}

.process-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.process-card ol {
  padding-left: 20px;
}

.process-card li {
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  font-weight: 650;
}

/* =====================================================
   PAYMENT WALLET EXPLAINER
===================================================== */

.wallet-explainer {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.wallet-card,
.wallet-copy,
.notice-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.wallet-card h3,
.wallet-copy h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.wallet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  color: #444;
  font-size: 15px;
}

.wallet-row strong {
  color: #000;
  white-space: nowrap;
}

.wallet-row.total {
  margin-top: 4px;
  padding-top: 18px;
  border-bottom: 0;
  color: #000;
  font-weight: 900;
}

.wallet-copy p {
  margin-top: 14px;
  color: #555;
  font-size: 16.5px;
}

.notice-section {
  padding-top: 30px;
}

.notice-card {
  background: #f6f8ff;
  border-color: #dfe8ff;
}

.notice-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.notice-card p {
  margin-top: 14px;
  max-width: 900px;
  color: #4d5b73;
  font-size: 16.5px;
}

/* =====================================================
   FORMS / FIELDS
===================================================== */

.field {
  margin-top: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-weight: 600;
}

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

.hint {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

.form-actions {
  margin-top: 20px;
}

.primary-btn {
  width: 100%;
  background: #0f5fc9;
  color: #fff;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

.ghost-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: #666;
}

.fineprint a {
  text-decoration: underline;
}

/* =====================================================
   LEGAL ACCEPTANCE CHECKBOX
===================================================== */

.legal-acceptance,
.legal-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #f6f8fc;
  border: 1px solid #e5e7eb;
}

.legal-acceptance input,
.legal-checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.legal-acceptance label,
.legal-checkbox-row label {
  color: #333;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.legal-acceptance a,
.legal-checkbox-row a {
  color: #0f5fc9;
  font-weight: 900;
  text-decoration: underline;
}

/* =====================================================
   AUTH PAGE — SHARED IDENTITY STEP FLOW
===================================================== */

.auth-page {
  min-height: 100vh;
  background: #fff;
  color: #000;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

.auth-page .footer {
  display: none !important;
}

.auth-header {
  height: 64px;
  background: #0f5fc9;
  display: flex;
  align-items: center;
  padding: 0 36px;
  flex: 0 0 auto;
}

.auth-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.auth-shell {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 30px 96px;
  flex: 1;
}

.auth-panel {
  width: 100%;
}

.auth-centered-panel {
  max-width: 360px;
  margin: 18vh auto 0;
}

.auth-panel h1 {
  font-size: 28px;
  line-height: 1.18;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.auth-context-label {
  color: #0f5fc9;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.auth-full-btn {
  width: 100%;
  min-height: 48px;
  font-size: 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.auth-divider span {
  flex: 1;
  height: 1px;
  background: #bdbdbd;
}

.social-auth-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 9px;
  background: #eeeeee;
  color: #000;
  font-size: 15px;
  font-weight: 750;
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-auth-btn:hover {
  background: #e2e2e2;
}

.social-icon {
  margin-right: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.google-icon {
  color: #4285f4;
}

.apple-icon {
  color: #000;
  font-size: 19px;
  line-height: 1;
}

.auth-consent {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.55;
  color: #555;
}

.auth-switch {
  margin-top: 22px;
  font-size: 14px;
}

.auth-switch a,
.auth-links a {
  color: #000;
  text-decoration: underline;
  font-weight: 750;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
}

.auth-error,
.otp-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff2f2;
  border: 1px solid #ffd0d0;
  color: #9f1d1d;
  font-size: 13px;
  font-weight: 700;
}

.auth-status,
.otp-status {
  color: #4b5563;
  min-height: 18px;
}

.auth-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px;
}

.auth-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-toggle button {
  padding: 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #f3f3f3;
  font-weight: 900;
  cursor: pointer;
}

.auth-toggle button.active {
  background: #0f5fc9;
  color: #fff;
  border-color: #0f5fc9;
}

.auth-form h1,
.auth-form h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.auth-sub {
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}


/* =====================================================
   AUTH MODAL
===================================================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 760px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

/* Password + Confirm Password */

.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrap input {
  flex: 1;
  padding-right: 42px;
}

.eye-btn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.error-text {
  color: #b00020;
  font-size: 12px;
  margin-top: 4px;
}

/* =====================================================
   OTP PAGE — 6-DIGIT VERIFICATION
===================================================== */

.otp-shell {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 30px 132px;
  flex: 1;
}

.otp-panel {
  width: 100%;
  max-width: 420px;
  margin: 14vh auto 0;
}

.otp-panel h1 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.otp-subtitle {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  margin-bottom: 12px;
}

.otp-change-link {
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  margin-bottom: 28px;
}

.otp-boxes {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-input {
  width: 54px;
  height: 58px;
  border: 2px solid #d6d6d6;
  border-radius: 10px;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  outline: none;
  background: #fff;
}

.otp-input:focus {
  border-color: #0f5fc9;
  box-shadow: 0 0 0 3px rgba(15, 95, 201, 0.12);
}

.otp-resend-btn,
.otp-more-btn,
.link-button {
  display: block;
  border: none;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 0;
}

.otp-resend-btn:disabled,
.link-button:disabled {
  color: #777;
  cursor: not-allowed;
  text-decoration: none;
}

.otp-more-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 80px;
}

.otp-more-options button {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  background: #eee;
  color: #000;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.otp-more-options button:hover {
  background: #e2e2e2;
}

.otp-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 84px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  z-index: 50;
}

.otp-back-btn,
.otp-next-btn {
  min-width: 58px;
  min-height: 52px;
  border: none;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.otp-back-btn {
  background: #eee;
  color: #000;
}

.otp-next-btn {
  background: #0f5fc9;
  color: #fff;
  padding: 0 22px;
}

.otp-next-btn:disabled {
  background: #ccc;
  color: #777;
  cursor: not-allowed;
}


/* =====================================================
   DRIVER WEBSITE ONBOARDING PAGES
===================================================== */

.driver-step-shell {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 30px 132px;
  flex: 1;
}

.driver-step-panel {
  width: 100%;
}

.driver-back-link {
  border: none;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
}

.driver-step-panel h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.driver-step-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: #555;
  margin-bottom: 28px;
}

.driver-option-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  border: 2px solid #e2e2e2;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  background: #fff;
}

.driver-option-card:hover {
  border-color: #0f5fc9;
}

.driver-option-card input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: #0f5fc9;
}

.driver-option-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.driver-option-card small {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.driver-fixed-continue {
  position: fixed;
  left: 30px;
  right: 30px;
  bottom: 24px;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: #0f5fc9;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  z-index: 60;
}

.driver-fixed-continue:hover {
  background: #0c52ad;
}

.driver-disclosure-box,
.photo-guidelines-box {
  border: 2px solid #e2e2e2;
  border-radius: 14px;
  padding: 22px;
  margin: 24px 0;
  background: #fafafa;
}

.driver-disclosure-box p {
  margin-bottom: 14px;
  color: #333;
  line-height: 1.55;
}

.driver-disclosure-box p:last-child {
  margin-bottom: 0;
}

.driver-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: #f6f8fc;
  border: 1px solid #e5e7eb;
}

.driver-check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #0f5fc9;
}

.driver-check-row span {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

/* Driver onboarding checklist */

.onboarding-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.onboarding-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  border: 2px solid #e2e2e2;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.onboarding-item:hover {
  border-color: #0f5fc9;
}

.onboarding-item strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.onboarding-item small {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: #555;
}

.onboarding-item em {
  min-width: 92px;
  text-align: center;
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eee;
  color: #555;
}

.onboarding-item em.done {
  background: #e7f4ea;
  color: #2f7a3d;
}

/* Profile photo */

.photo-guidelines-box ul {
  margin: 0;
  padding-left: 20px;
}

.photo-guidelines-box li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.photo-guidelines-box li:last-child {
  margin-bottom: 0;
}

.profile-photo-preview {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  border: 2px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 22px;
  color: #777;
  font-size: 15px;
  text-align: center;
}

.profile-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-photo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 54px;
  border-radius: 999px;
  background: #0f5fc9;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

/* Document uploads */

.document-upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.document-upload-card {
  min-height: 150px;
  border: 2px dashed #bbb;
  border-radius: 16px;
  padding: 22px;
  background: #fafafa;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.document-upload-card:hover {
  border-color: #0f5fc9;
}

.document-upload-card strong {
  display: block;
  font-size: 19px;
  margin-bottom: 10px;
}

.document-upload-card small {
  font-size: 14px;
  color: #666;
  word-break: break-word;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
  background: #0f5fc9;
  color: #fff;
  padding: 40px 18px 18px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 24px;
}

.footer-col h3 {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #d8e7ff;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-meta {
  font-size: 12px;
  color: #d8e7ff;
  margin-top: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.social-circle {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-circle img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #d8e7ff;
}

.footer-links-right {
  display: inline-flex;
  gap: 16px;
}

.footer-links-right a {
  color: #fff;
  margin-left: 14px;
  font-weight: 700;
}

.footer-links-right a:hover {
  color: #fff;
  text-decoration: underline;
}

/* =====================================================
   FLOATING SUPPORT
===================================================== */

.support-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0f5fc9;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(15, 95, 201, 0.24);
}

.support-float:hover {
  opacity: 0.9;
}

/* =====================================================
   SESSION MODAL
===================================================== */

.session-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.session-modal.hidden {
  display: none !important;
}

.session-box {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  text-align: center;
  width: 340px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#sessionCountdown {
  font-weight: bold;
  font-size: 18px;
}

#sessionCountdown.danger {
  color: red;
}

#sessionContinueBtn {
  margin-top: 16px;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #0f5fc9;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

#sessionContinueBtn:hover {
  background: #0c52ad;
}

/* =====================================================
   APP DOWNLOAD BUTTONS
===================================================== */

.download-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.download-actions .primary-btn,
.download-actions .ghost-btn {
  width: auto;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =====================================================
   RESPONSIVE
===================================================== */

.desktop-only {
  display: inline-flex;
}

/* TABLET */

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .payments-page .hero {
    padding: 72px 0 54px;
  }

  .content-section {
    padding: 54px 0;
  }

  .card-grid,
  .wallet-explainer,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

/* MOBILE NAVBAR */

@media (max-width: 768px) {
  .navbar-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 14px !important;
  }

  .nav-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 28px !important;
    height: 22px !important;
    margin: 0 6px 0 0 !important;
    order: -1;
  }

  .nav-left .brand {
    display: inline-flex !important;
    white-space: nowrap !important;
  }

  .nav-left .nav-link {
    display: none !important;
  }

  .nav-center {
    display: none !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
  }

  .nav-right .nav-link.desktop-only {
    display: inline-flex !important;
  }

  #signupBtn,
  .nav-cta {
    display: inline-flex !important;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex !important;
  }

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

/* SMALL MOBILE */

@media (max-width: 620px) {
  .payments-page .hero,
  .content-section,
  .footer-inner,
  .mobile-nav {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    font-size: 16px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .payments-page .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .card-grid {
    gap: 14px;
  }

  .info-card,
  .process-card,
  .wallet-card,
  .wallet-copy,
  .notice-card {
    padding: 22px;
    border-radius: 20px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links-right a {
    margin-left: 0;
    margin-right: 14px;
  }

  .nav-search {
    max-width: 140px;
  }

  .download-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .download-actions .primary-btn,
  .download-actions .ghost-btn {
    width: 100%;
  }
}


/* =====================================================
   STEP-FLOW RESPONSIVE OVERRIDES
===================================================== */

@media (min-width: 900px) {
  .driver-fixed-continue {
    left: 50%;
    right: auto;
    width: 800px;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .auth-header {
    height: 64px;
    padding: 0 24px;
  }

  .auth-brand {
    font-size: 22px;
  }

  .auth-shell,
  .otp-shell,
  .driver-step-shell {
    padding: 34px 24px 120px;
  }

  .auth-centered-panel,
  .otp-panel {
    max-width: none;
    margin-top: 10vh;
  }

  .auth-panel h1,
  .otp-panel h1,
  .driver-step-panel h1 {
    font-size: 28px;
  }

  .auth-full-btn {
    min-height: 48px;
    font-size: 15px;
  }

  .social-auth-btn {
    min-height: 46px;
    font-size: 15px;
  }

  .otp-boxes {
    gap: 8px;
  }

  .otp-input {
    width: 46px;
    height: 54px;
    font-size: 24px;
  }

  .otp-bottom-nav {
    min-height: 80px;
    padding: 14px 24px;
  }

  .document-upload-row {
    grid-template-columns: 1fr;
  }

  .driver-option-card,
  .onboarding-item {
    padding: 18px;
  }

  .driver-option-card strong,
  .onboarding-item strong {
    font-size: 18px;
  }

  .onboarding-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .onboarding-item em {
    align-self: flex-start;
  }

  .profile-photo-preview {
    width: 190px;
    height: 190px;
  }

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


/* =====================================================
   DRIVER DASHBOARD WEB
===================================================== */

.driver-dashboard-shell {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
  padding: 96px 0 48px;
  flex: 1;
}

.driver-dashboard-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.driver-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.driver-dashboard-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.driver-dashboard-subtitle {
  margin-top: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.55;
}

.driver-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #0f5fc9;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

#driverStatus[data-status-type="success"],
.driver-status-pill[data-status-type="success"] {
  background: #e7f4ea;
  color: #147a36;
}

#driverStatus[data-status-type="warning"],
.driver-status-pill[data-status-type="warning"] {
  background: #fff7e6;
  color: #9a5b00;
}

#driverStatus[data-status-type="error"],
.driver-status-pill[data-status-type="error"] {
  background: #fff2f2;
  color: #b42318;
}

.driver-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.driver-dashboard-info {
  border: 1px solid #ededed;
  border-radius: 18px;
  padding: 18px;
  background: #fafafa;
}

.driver-dashboard-info small {
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.driver-dashboard-info strong {
  display: block;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  word-break: break-word;
}

.driver-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.driver-dashboard-actions .primary-btn,
.driver-dashboard-actions .ghost-btn {
  width: auto;
  min-width: 180px;
}

#toggleOnlineBtn:disabled {
  background: #c9c9c9 !important;
  color: #666 !important;
  cursor: not-allowed;
}

#toggleOnlineBtn.is-busy {
  opacity: 0.8;
}

@media (max-width: 820px) {
  .driver-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .driver-dashboard-header {
    flex-direction: column;
  }

  .driver-dashboard-actions .primary-btn,
  .driver-dashboard-actions .ghost-btn {
    width: 100%;
  }
}


/* =====================================================
   FINAL OVERRIDES — MUST BE LAST
===================================================== */

.navbar,
.footer,
.mobile-menu,
.mobile-nav,
.account-dropdown,
.auth-header {
  background: #0f5fc9 !important;
}

.account-dropdown button:hover {
  background: #0c52ad !important;
}

.primary-btn,
.primary-button {
  background: #0f5fc9 !important;
  color: #fff !important;
}

.auth-toggle button.active {
  background: #0f5fc9 !important;
  color: #fff !important;
  border-color: #0f5fc9 !important;
}

#sessionContinueBtn {
  background: #0f5fc9 !important;
  color: #fff !important;
}

#sessionContinueBtn:hover {
  background: #0c52ad !important;
}

.dropdown-menu {
  display: none !important;
}

.dropdown-menu.open {
  display: block !important;
}

.auth-page .footer {
  display: none !important;
}

/* =====================================================
   HOMEPAGE NAV + HERO FINAL FIX
===================================================== */

.navbar-inner {
  width: 100% !important;
  max-width: none !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.nav-left {
  margin-left: 0 !important;
}

.brand {
  margin-left: 0 !important;
}

.dropdown {
  position: relative !important;
}

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 230px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16) !important;
  padding: 10px !important;
  display: none !important;
  z-index: 99999 !important;
}

.dropdown-menu.open {
  display: grid !important;
  gap: 6px !important;
}

.dropdown-menu a {
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
}

.dropdown-menu a:hover {
  background: #f3f6fb !important;
}

.homepage-hero {
  padding: 78px 18px 76px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
}

.homepage-hero-inner {
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  align-items: center !important;
  gap: 64px !important;
}

.homepage-hero-copy .eyebrow,
.homepage-account-note {
  display: none !important;
}

.homepage-hero-copy h1 {
  max-width: 660px !important;
  font-size: clamp(40px, 5.2vw, 64px) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: -0.055em !important;
  margin-bottom: 22px !important;
}

.homepage-hero-copy .hero-text {
  max-width: 690px !important;
  margin-top: 0 !important;
  font-size: clamp(17px, 1.7vw, 21px) !important;
  line-height: 1.55 !important;
  color: #222 !important;
}

.homepage-hero-panel {
  display: flex !important;
  justify-content: center !important;
}

.homepage-ride-search-card {
  width: 100% !important;
  max-width: 430px !important;
  padding: 30px !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.11) !important;
}

.homepage-ride-search-card h2 {
  font-size: 24px !important;
  line-height: 1.2 !important;
  margin: 0 0 22px !important;
  font-weight: 950 !important;
  letter-spacing: -0.03em !important;
}

.homepage-ride-search-card .field {
  margin-bottom: 16px !important;
}

.homepage-ride-search-card label {
  display: block !important;
  margin-bottom: 7px !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  color: #111 !important;
}

.homepage-ride-search-card input {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 14px !important;
  border: 1px solid #d6dbe3 !important;
  padding: 0 14px !important;
  font-size: 15px !important;
  outline: none !important;
}

.homepage-ride-search-card input:focus {
  border-color: #0f5fc9 !important;
  box-shadow: 0 0 0 4px rgba(15, 95, 201, 0.13) !important;
}

.use-location-btn {
  margin-top: 8px !important;
  border: none !important;
  background: transparent !important;
  color: #0f5fc9 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.homepage-map {
  width: 100% !important;
  height: 190px !important;
  border-radius: 18px !important;
  background: #eef4ff !important;
  margin: 16px 0 !important;
  overflow: hidden !important;
}

.homepage-route-summary,
.homepage-ride-status {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 8px 0 !important;
  color: #444 !important;
}

.homepage-ride-status.error {
  color: #b42318 !important;
  font-weight: 800 !important;
}

@media (max-width: 900px) {
  .homepage-hero {
    padding: 58px 18px 54px !important;
  }

  .homepage-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .homepage-hero-copy h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
  }
}

/* =====================================================
   HOMEPAGE HERO POSITION ONLY
===================================================== */

.homepage-hero {
  padding-top: 42px !important;
  padding-bottom: 70px !important;
}

.homepage-hero-inner {
  align-items: flex-start !important;
}

.homepage-hero-copy {
  padding-top: 40px !important;
}

.homepage-hero-copy h1 {
  margin-top: 0 !important;
}

/* =====================================================
   NAVBAR SEARCH RESULTS
===================================================== */

.nav-center {
  position: relative !important;
}

.navbar-search-results {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16) !important;
  padding: 8px !important;
  display: none !important;
  z-index: 99999 !important;
}

.navbar-search-results.open {
  display: grid !important;
  gap: 6px !important;
}

.navbar-search-item,
.navbar-search-empty {
  display: block !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  background: #fff !important;
}

.navbar-search-item:hover {
  background: #f3f6fb !important;
}

.navbar-search-empty {
  color: #666 !important;
}
/* =====================================================
   FINAL FOOTER SOCIAL CENTER FIX
   MUST STAY AT THE VERY BOTTOM OF styles.css
===================================================== */

.footer-social {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 34px auto 26px !important;
  text-align: center !important;
  flex-wrap: wrap !important;
}

.footer-social .social-circle {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  background: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 42px !important;
}

.footer-social .social-circle img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  display: block !important;
}

/* =====================================================
   MICHOT HOMEPAGE FINAL OVERRIDES — NAV, HERO, SEARCH
   Keep this block at the very bottom of styles.css.
===================================================== */

.navbar-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.nav-left {
  margin-left: 0 !important;
  gap: 20px !important;
}

.brand {
  margin-left: 0 !important;
  white-space: nowrap !important;
}

.nav-center {
  position: relative !important;
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
}

.nav-search {
  width: min(520px, 100%) !important;
  height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
}

.dropdown {
  position: relative !important;
}

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 245px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16) !important;
  padding: 10px !important;
  display: none !important;
  z-index: 99999 !important;
}

.dropdown-menu.open {
  display: grid !important;
  gap: 6px !important;
}

.dropdown-menu a {
  display: block !important;
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 850 !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
}

.dropdown-menu a:hover {
  background: #f3f6fb !important;
}

.homepage-hero {
  padding-top: 42px !important;
  padding-bottom: 70px !important;
}

.homepage-hero-inner {
  align-items: flex-start !important;
}

.homepage-hero-copy {
  padding-top: 38px !important;
}

.homepage-hero-copy .eyebrow,
.homepage-account-note {
  display: none !important;
}

.homepage-hero-copy h1 {
  max-width: 630px !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
  font-size: clamp(38px, 4.8vw, 60px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.055em !important;
}

.homepage-hero-copy .hero-text {
  max-width: 670px !important;
  font-size: clamp(17px, 1.55vw, 20px) !important;
  line-height: 1.55 !important;
}

.homepage-ride-search-card h1,
.homepage-ride-search-card h2 {
  font-size: 24px !important;
  line-height: 1.2 !important;
  margin: 0 0 22px !important;
  font-weight: 950 !important;
  letter-spacing: -0.03em !important;
}

.footer-col h1,
.footer-col h3 {
  font-weight: 900 !important;
  font-size: 14px !important;
  margin-bottom: 10px !important;
  color: #fff !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
}

.info-card h1,
.info-card h3,
.process-card h1,
.process-card h3,
.wallet-card h1,
.wallet-card h3 {
  font-size: 22px !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
  letter-spacing: -0.03em !important;
}

.navbar-search-results {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(520px, 100vw - 36px) !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16) !important;
  padding: 8px !important;
  display: none !important;
  z-index: 99999 !important;
}

.navbar-search-results.open {
  display: grid !important;
  gap: 6px !important;
}

.navbar-search-item,
.navbar-search-empty {
  display: block !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  background: #fff !important;
}

.navbar-search-item:hover {
  background: #f3f6fb !important;
}

.navbar-search-empty {
  color: #666 !important;
}

.dropdown {
  position: relative !important;
  z-index: 10000 !important;
}

.dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 240px !important;
  background: #fff !important;
  color: #111 !important;
  border-radius: 16px !important;
  padding: 10px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
  z-index: 99999 !important;
}

.dropdown-menu.open {
  display: grid !important;
  gap: 6px !important;
}
.navbar {
  overflow: visible !important;
}

.navbar-inner,
.nav-right,
.dropdown {
  overflow: visible !important;
}

.dropdown {
  position: relative !important;
  z-index: 100000 !important;
}

#signupBtn {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 100001 !important;
}

#signupMenu {
  pointer-events: auto !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 250px !important;
  display: none !important;
  z-index: 100002 !important;
}

#signupMenu.open {
  display: grid !important;
  gap: 6px !important;
}


/* =====================================================
   SIGNUP DROPDOWN ABSOLUTE FINAL FIX
   Must stay at the very bottom of styles.css
===================================================== */

.navbar,
.navbar-inner,
.nav-right,
.dropdown {
  overflow: visible !important;
}

.dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  z-index: 100000 !important;
}

#signupBtn {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 100001 !important;
}

#signupMenu {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 260px !important;
  padding: 10px !important;
  border-radius: 16px !important;
  border: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  color: #111111 !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
  display: none !important;
  z-index: 100002 !important;
  pointer-events: auto !important;
}

#signupMenu.open {
  display: grid !important;
  gap: 6px !important;
}

#signupMenu a {
  display: block !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  color: #111111 !important;
  background: #ffffff !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

#signupMenu a:hover {
  background: #f3f6fb !important;
}

.nav-center {
  position: relative !important;
}

.navbar-search-results {
  z-index: 100003 !important;
}
/* =====================================================
   SOCIAL LOGIN BUTTONS — GOOGLE / APPLE
   Must stay at the very bottom of styles.css
===================================================== */

.social-auth-btn {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #dadce0;
  background: #ffffff;
  color: #202124;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.social-auth-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.social-auth-btn:hover {
  background: #f8f9fa;
}

.google-btn {
  color: #202124;
}

.apple-btn {
  color: #000000;
}

/* =====================================================
   SIGNUP DROPDOWN — DRIVE / RIDE MENU FINAL FIX
   Drive first, Ride second. Compact menu with left spacing.
   Must stay at the very bottom of styles.css.
===================================================== */

.nav-login-link {
  font-weight: 900 !important;
}

.signup-dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  z-index: 100000 !important;
}

#signupMenu.signup-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  width: 154px !important;
  min-width: 154px !important;
  padding: 12px 0 !important;
  border-radius: 0 !important;
  border: 1px solid #d9d9d9 !important;
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16) !important;
  display: none !important;
  z-index: 100002 !important;
  pointer-events: auto !important;
}

#signupMenu.signup-menu.open {
  display: grid !important;
  gap: 0 !important;
}

#signupMenu.signup-menu .signup-option {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0 20px !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #000000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

#signupMenu.signup-menu .signup-option:hover {
  background: #f3f6fb !important;
}

#signupMenu.signup-menu .signup-option span {
  display: inline-flex !important;
  align-items: center !important;
  padding-left: 0 !important;
}

#signupMenu.signup-menu .signup-option-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  fill: currentColor !important;
  display: block !important;
}

@media (max-width: 768px) {
  .nav-login-link {
    display: inline-flex !important;
  }

  #signupMenu.signup-menu {
    right: 0 !important;
  }
}

/* =====================================================
   HOMEPAGE HERO TITLE FINAL FIX
   Keeps “Moving your way with Michot.” clean and professional.
   Must stay at the very bottom of styles.css.
===================================================== */

.homepage-hero-copy h1 {
  max-width: 820px !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
  font-size: clamp(42px, 4.1vw, 58px) !important;
  line-height: 1.04 !important;
  font-weight: 950 !important;
  letter-spacing: -0.055em !important;
  white-space: nowrap !important;
}

.homepage-hero-copy .hero-text {
  max-width: 720px !important;
}

@media (max-width: 1180px) {
  .homepage-hero-copy h1 {
    white-space: normal !important;
    max-width: 680px !important;
    font-size: clamp(38px, 5vw, 54px) !important;
  }
}

@media (max-width: 900px) {
  .homepage-hero-copy h1 {
    max-width: 100% !important;
    white-space: normal !important;
    font-size: clamp(36px, 10vw, 52px) !important;
    line-height: 1.05 !important;
  }
}

/* =====================================================
   MICHOT — HOME MOBILE NAV FINAL OVERRIDE
   File: /public/css/styles.css

   PURPOSE:
   - Mobile screen: show Hamburger icon at top-left.
   - Mobile screen: hide navbar search input, search icon, and search results.
   - Mobile screen: keep Sign up button/dropdown visible on the right.
   - Desktop screen: keep search bar visible.
   - This block must remain at the VERY BOTTOM of styles.css.
===================================================== */

@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }

  .navbar {
    height: 64px !important;
    min-height: 64px !important;
    background: #0f5fc9 !important;
    color: #ffffff !important;
    z-index: 10000 !important;
  }

  .navbar-inner {
    width: 100% !important;
    max-width: none !important;
    height: 64px !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .nav-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    margin-left: 0 !important;
    order: 1 !important;
  }

  .hamburger,
  .nav-left .hamburger,
  button.hamburger,
  #hamburgerBtn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: column !important;
    width: 30px !important;
    height: 22px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    padding: 0 !important;
    margin: 0 4px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    order: -1 !important;
    flex-shrink: 0 !important;
    z-index: 11001 !important;
  }

  .hamburger span,
  .nav-left .hamburger span,
  button.hamburger span,
  #hamburgerBtn span {
    display: block !important;
    width: 30px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    opacity: 1 !important;
  }

  .hamburger.active span:nth-child(1),
  #hamburgerBtn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .hamburger.active span:nth-child(2),
  #hamburgerBtn.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .hamburger.active span:nth-child(3),
  #hamburgerBtn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
  }

  .brand,
  .nav-left .brand {
    display: inline-flex !important;
    align-items: center !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
  }

  /*
    Mobile navbar search must be completely hidden.
    This removes the search input, search icon, and search dropdown from
    the top navigation on mobile only.
  */
  .nav-center,
  .nav-center.desktop-only,
  .navbar .nav-center,
  .navbar-inner .nav-center,
  .nav-search,
  .navbar-search,
  .nav-search-wrap,
  .nav-search-container,
  .nav-search-button,
  .nav-search-btn,
  .nav-search-icon,
  .navbar-search-results,
  .navbar-search-results.open,
  .search-icon,
  .search-btn,
  .search-button,
  .mobile-search,
  .mobile-search-icon,
  input.nav-search,
  input[aria-label="Search"],
  input[aria-label="Search Michot"],
  [data-navbar-search],
  [data-search],
  [aria-label="Search"],
  [aria-label="Search Michot"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }

  .desktop-only,
  .nav-left .desktop-only,
  .nav-right .desktop-only,
  .nav-left .nav-link.desktop-only,
  .nav-right .nav-link.desktop-only {
    display: none !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    order: 2 !important;
    white-space: nowrap !important;
  }

  .nav-right .dropdown,
  .nav-right .signup-dropdown,
  .dropdown {
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
  }

  #signupBtn,
  .nav-right .nav-cta,
  .signup-dropdown .nav-cta,
  .dropdown .nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 7px 13px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  .dropdown-menu,
  #signupMenu,
  #signupMenu.signup-menu {
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    min-width: 230px !important;
    max-width: calc(100vw - 28px) !important;
    z-index: 11002 !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100dvh - 64px) !important;
    overflow-y: auto !important;
    background: #0f5fc9 !important;
    z-index: 10001 !important;
    padding: 22px 18px !important;
    display: none !important;
    flex-direction: column !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .mobile-menu a {
    color: #ffffff !important;
  }
}

@media (min-width: 769px) {
  .hamburger,
  .nav-left .hamburger,
  button.hamburger,
  #hamburgerBtn {
    display: none !important;
  }

  .nav-center {
    display: flex !important;
  }

  .nav-search {
    display: block !important;
  }
}


/* =====================================================
   MICHOT — HOME MOBILE NAV CLEAN FINAL FIX
   File: /public/css/styles.css

   PURPOSE:
   - Mobile: show hamburger icon on the top-left.
   - Mobile: hide navbar search input/search icon/search results.
   - Mobile: keep Sign up button/dropdown visible on the right.
   - Mobile: hamburger menu opens as clean text links, not white boxes.
   - Desktop: keep desktop navbar/search unchanged.

   IMPORTANT:
   - Keep this block at the VERY BOTTOM of styles.css.
===================================================== */

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 64px !important;
    min-height: 64px !important;
    background: #0f5fc9 !important;
    color: #ffffff !important;
    z-index: 10000 !important;
  }

  .navbar-inner {
    width: 100% !important;
    max-width: none !important;
    height: 64px !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .nav-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    order: 1 !important;
  }

  #hamburgerBtn,
  .hamburger,
  .nav-left .hamburger,
  button.hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: column !important;
    width: 30px !important;
    height: 22px !important;
    min-width: 30px !important;
    padding: 0 !important;
    margin: 0 4px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    z-index: 11005 !important;
  }

  #hamburgerBtn span,
  .hamburger span,
  .nav-left .hamburger span,
  button.hamburger span {
    display: block !important;
    width: 30px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    opacity: 1 !important;
  }

  #hamburgerBtn.active span:nth-child(1),
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  #hamburgerBtn.active span:nth-child(2),
  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }

  #hamburgerBtn.active span:nth-child(3),
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
  }

  .brand,
  .nav-left .brand {
    display: inline-flex !important;
    align-items: center !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
  }

  .desktop-only,
  .nav-left .desktop-only,
  .nav-right .desktop-only,
  .nav-left .nav-link.desktop-only,
  .nav-right .nav-link.desktop-only,
  .nav-login-link {
    display: none !important;
  }

  .nav-center,
  .nav-center.desktop-only,
  .navbar .nav-center,
  .navbar-inner .nav-center,
  .nav-search,
  input.nav-search,
  .navbar-search,
  .nav-search-wrap,
  .nav-search-container,
  .nav-search-button,
  .nav-search-btn,
  .nav-search-icon,
  .navbar-search-results,
  .navbar-search-results.open,
  .search-icon,
  .search-btn,
  .search-button,
  .mobile-search,
  .mobile-search-icon,
  input[aria-label="Search"],
  input[aria-label="Search Michot"],
  [data-navbar-search],
  [data-search],
  [aria-label="Search"],
  [aria-label="Search Michot"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    order: 2 !important;
    white-space: nowrap !important;
  }

  .nav-right .dropdown,
  .nav-right .signup-dropdown,
  .dropdown.signup-dropdown {
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
  }

  #signupBtn,
  .nav-right .nav-cta,
  .signup-dropdown .nav-cta,
  .dropdown .nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  #signupMenu,
  #signupMenu.signup-menu,
  .dropdown-menu.signup-menu {
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    min-width: 210px !important;
    max-width: calc(100vw - 28px) !important;
    z-index: 11010 !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    max-height: calc(100dvh - 64px) !important;
    overflow-y: auto !important;
    background: #0f5fc9 !important;
    color: #ffffff !important;
    z-index: 10001 !important;
    padding: 8px 18px 18px !important;
    display: none !important;
    flex-direction: column !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18) !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .mobile-menu a,
  .mobile-menu .menu-cta {
    display: block !important;
    background: transparent !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 14px 2px !important;
    text-align: left !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
    min-height: auto !important;
  }

  .mobile-menu a:hover,
  .mobile-menu .menu-cta:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    padding-left: 10px !important;
  }

  .mobile-menu a:last-child {
    border-bottom: none !important;
  }
}

@media (min-width: 769px) {
  #hamburgerBtn,
  .hamburger,
  .nav-left .hamburger,
  button.hamburger {
    display: none !important;
  }

  .nav-center {
    display: flex !important;
  }

  .nav-search {
    display: block !important;
  }

  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

/* =====================================================
   MICHOT — DRIVER BACK BUTTON TOP-LEFT FIX
   Add this block to the VERY BOTTOM of:
   public/css/styles.css

   PURPOSE:
   - Shows a bold back arrow at the far top-left of driver/account pages.
   - Displays the arrow and BACK text on the same line.
   - Keeps it below the blue Michot header.
===================================================== */

.driver-page-back-top-left {
  position: fixed !important;
  top: 76px !important;
  left: 22px !important;
  z-index: 1200 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;

  border: 0 !important;
  background: transparent !important;
  color: #000000 !important;

  font-size: 16px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;

  cursor: pointer !important;
  padding: 10px 12px !important;
  margin: 0 !important;
}

.driver-page-back-top-left .back-arrow {
  font-size: 28px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  display: inline-block !important;
  transform: translateY(-1px) !important;
}

.driver-page-back-top-left .back-text {
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.driver-page-back-top-left:hover {
  color: #0f5fc9 !important;
}

@media (max-width: 768px) {
  .driver-page-back-top-left {
    top: 72px !important;
    left: 12px !important;
    font-size: 15px !important;
    padding: 9px 10px !important;
  }

  .driver-page-back-top-left .back-arrow {
    font-size: 26px !important;
  }

  .driver-page-back-top-left .back-text {
    font-size: 14px !important;
  }
}


/* =====================================================
   DRIVER PROFILE REVIEW LOCK + PHONE UPDATE PATCH
   Added by Michot driver review-lock package
===================================================== */
.driver-step-panel .driver-back-link {
  margin-bottom: 28px;
}

.driver-step-panel .auth-context-label {
  display: block;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.45;
  clear: both;
  position: relative;
  z-index: 1;
}

.driver-profile-phone-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.driver-profile-link-button {
  border: none;
  background: transparent;
  color: #0f5fc9;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 2px;
}

.driver-submitted-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  line-height: 1.55;
  font-weight: 800;
}

.driver-submitted-panel h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  color: #065f46;
}

.driver-review-section-title {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 950;
}

.onboarding-item.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.92;
}

.driver-phone-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.56);
  z-index: 9999;
}

.driver-phone-card {
  width: min(100%, 430px);
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.driver-phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
