/* ============================================================
   KHUMO — Global Design System
   Colors: Black · Yellow · White
   Font: Poppins
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --black:        #0D0D0D;
  --dark:         #1A1A1A;
  --dark-2:       #242424;
  --dark-3:       #2E2E2E;
  --yellow:       #F5C518;
  --yellow-dark:  #D4A800;
  --yellow-light: #FFF4B8;
  --white:        #FFFFFF;
  --off-white:    #F8F8F8;
  --gray:         #9A9A9A;
  --gray-dark:    #555555;
  --gray-light:   #E8E8E8;
  --success:      #27AE60;
  --danger:       #E74C3C;
  --info:         #2980B9;
  --warning:      #F39C12;

  /* Ndebele-inspired accent palette (from logo) */
  --ndebele-red:  #C0392B;
  --ndebele-teal: #1B7F8A;
  --ndebele-blue: #2C6FBF;

  --font-main: 'Poppins', sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 24px rgba(245,197,24,0.3);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: var(--font-main);
  outline: none;
}

ul {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────────── */
.text-xs    { font-size: 0.7rem; }
.text-sm    { font-size: 0.8rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }
.text-4xl   { font-size: 2.25rem; }

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.text-yellow  { color: var(--yellow); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-dark {
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid var(--dark-3);
}
.btn-dark:hover {
  background: var(--dark-3);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-full { width: 100%; }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(245,197,24,0.3);
}

.card-elevated {
  box-shadow: var(--shadow-md);
}

/* ── Form Elements ──────────────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--yellow);
  background: var(--dark);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}

.form-input::placeholder {
  color: var(--gray-dark);
}

.form-input option {
  background: var(--dark);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* ── Badges / Status Pills ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.badge-yellow   { background: rgba(245,197,24,0.15); color: var(--yellow); }
.badge-success  { background: rgba(39,174,96,0.15);  color: var(--success); }
.badge-danger   { background: rgba(231,76,60,0.15);  color: var(--danger); }
.badge-info     { background: rgba(41,128,185,0.15); color: var(--info); }
.badge-gray     { background: rgba(154,154,154,0.15); color: var(--gray); }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--dark-3);
  margin: 20px 0;
}

/* ── Ndebele Pattern Strip ──────────────────────────────────── */
.ndebele-strip {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow)       0px,
    var(--yellow)       12px,
    var(--ndebele-red)  12px,
    var(--ndebele-red)  24px,
    var(--white)        24px,
    var(--white)        36px,
    var(--ndebele-teal) 36px,
    var(--ndebele-teal) 48px,
    var(--ndebele-blue) 48px,
    var(--ndebele-blue) 60px,
    var(--black)        60px,
    var(--black)        72px
  );
}

/* ── Loader / Spinner ───────────────────────────────────────── */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(245,197,24,0.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ── Toast Notifications ────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 400px;
}

.toast {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease;
  box-shadow: var(--shadow-md);
}

.toast.toast-success { border-left-color: var(--success); }
.toast.toast-danger  { border-left-color: var(--danger); }
.toast.toast-info    { border-left-color: var(--info); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 28px 24px 40px;
  width: 100%;
  max-width: 480px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--dark-3);
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.animate-fadeInUp   { animation: fadeInUp 0.5s ease forwards; }
.animate-fadeIn     { animation: fadeIn 0.4s ease forwards; }
.animate-slideRight { animation: slideInRight 0.4s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Utility ────────────────────────────────────────────────── */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-4   { gap: 4px; }
.gap-8   { gap: 8px; }
.gap-12  { gap: 12px; }
.gap-16  { gap: 16px; }
.gap-20  { gap: 20px; }
.w-full  { width: 100%; }
.hidden  { display: none !important; }
.mt-4    { margin-top: 4px; }
.mt-8    { margin-top: 8px; }
.mt-12   { margin-top: 12px; }
.mt-16   { margin-top: 16px; }
.mt-20   { margin-top: 20px; }
.mb-8    { margin-bottom: 8px; }
.mb-12   { margin-bottom: 12px; }
.mb-16   { margin-bottom: 16px; }
.mb-20   { margin-bottom: 20px; }

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

.opacity-0 { opacity: 0; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-dark); }

/* ── Responsive Breakpoints ─────────────────────────────────── */
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.85rem; }
}

/* ============================================================
   KHUMO v2 Additions — Font Awesome + Maps + Gemini
   ============================================================ */

/* ── Font Awesome icon sizing in nav / UI ────────────────────── */
.nav-icon.fa-solid,
.nav-icon.fa-regular,
i.nav-icon {
  font-size: 1.15rem;
  line-height: 1;
  display: block;
}

/* ── Sidebar nav icon ────────────────────────────────────────── */
.sidebar-link i.nav-icon {
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

/* ── Menu icon wrapper (profile page) ───────────────────────── */
.menu-icon i {
  font-size: 0.9rem;
}

/* ── KPI card icon ───────────────────────────────────────────── */
.kpi-icon i {
  font-size: 1.1rem;
}

/* ── API status bar ──────────────────────────────────────────── */
.api-status-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-3);
  padding: 5px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.64rem;
  color: var(--gray-dark);
  flex-wrap: wrap;
}

.api-status-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.api-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.api-dot.live  { background: var(--success); }
.api-dot.demo  { background: var(--yellow); }

/* ── Map placeholder (when API key not set) ──────────────────── */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  background: var(--dark-2);
  padding: 16px;
  text-align: center;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--yellow);
  opacity: 0.55;
}

.map-placeholder p {
  font-size: 0.77rem;
  line-height: 1.55;
  max-width: 240px;
}

.map-placeholder strong {
  color: var(--white);
}

/* ── Chat typing indicator ───────────────────────────────────── */
.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--gray);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-5px); }
}

/* ── chat send button update for FA icon ─────────────────────── */
.chat-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.chat-send-btn:hover { background: var(--yellow-dark); }

/* ── Toggle switch (settings modal) ─────────────────────────── */
.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--dark-3);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle input:checked + .toggle-slider            { background: var(--yellow); }
.toggle input:checked + .toggle-slider::before    { transform: translateX(20px); background: var(--black); }

/* ── Form row (two-column) ───────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   AUTHENTICATION PAGES
══════════════════════════════════════════════════════════════ */

/* ── 4-language toggle ───────────────────────────────────────── */
.lang-toggle-4 {
  display: inline-flex;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-toggle-4 .lang-btn {
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--gray);
  transition: var(--transition);
}

.lang-toggle-4 .lang-btn.active,
.lang-toggle-4 .lang-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ── API status indicators (compact inline) ──────────────────── */
.api-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-3);
  font-size: 0.68rem;
  min-height: 30px;
}

.api-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.api-label { color: var(--gray); }

.api-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.api-dot.live  { background: var(--success); box-shadow: 0 0 4px var(--success); }
.api-dot.demo  { background: var(--warning); }

/* ── Spinner (used in auth buttons) ─────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ── Profile: email line ─────────────────────────────────────── */
#profile-email {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ── Auth page password requirements checklist ───────────────── */
.pw-reqs li.pass { color: var(--success); }
.pw-reqs li.pass i { color: var(--success); }

/* ── Secure proxy badge ──────────────────────────────────────── */
.badge-proxy {
  background: rgba(39,174,96,0.15);
  color: var(--success);
  border: 1px solid rgba(39,174,96,0.3);
}

/* ── Register page — keep form-row single column on mobile ───── */
@media (max-width: 400px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   MARKETING BANNER — Marquee with Logo
═══════════════════════════════════════════════ */

.mkt-banner-wrap {
  margin: 0 0 4px;
  overflow: hidden;
  background: linear-gradient(90deg, #111 0%, #1a1a00 50%, #111 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.2);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  position: relative;
  cursor: pointer;
}


.mkt-banner-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 10s linear infinite;
  padding: 9px 0;
  will-change: transform;
}

/* Pause on hover / tap */
.mkt-banner-wrap:hover .mkt-banner-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.mkt-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.mkt-banner-logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
  border-radius: 5px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  flex-shrink: 0;
}

/* Fallback icon if no logo image */
.mkt-banner-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.mkt-banner-label {
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(245, 197, 24, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.mkt-banner-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.4);
  display: inline-block;
  margin: 0 8px;
  flex-shrink: 0;
}

/* ============================================================
   KHUMO — Light Mode
   Override CSS variables when data-theme="light" is set on <html>.
   Dark mode is the default (no attribute required).
   ============================================================ */

[data-theme="light"] {
  --black:       #FFFFFF;
  --dark:        #F4F4F4;
  --dark-2:      #EBEBEB;
  --dark-3:      #D8D8D8;
  --white:       #111111;
  --off-white:   #1A1A1A;
  --gray:        #606060;
  --gray-dark:   #909090;
  --gray-light:  #1A1A1A;
  --yellow-light: #6B5500;

  --shadow-sm:   0 2px 8px  rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 24px   rgba(245,197,24,0.25);
}

/* Body background / text need an explicit colour reset
   because body has a hardcoded background in the reset */
[data-theme="light"] body {
  background: #FFFFFF;
  color: #111111;
}

/* Scrollbar for light mode */
[data-theme="light"] ::-webkit-scrollbar-track { background: #F4F4F4; }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #D8D8D8; }

/* ── Theme toggle button ────────────────────────────────────── */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  border: 1.5px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--yellow);
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle-btn:hover,
.theme-toggle-btn:active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* When inside the white logo header the button should look dark */
.page-header-logo .theme-toggle-btn {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.15);
  color: #444444;
}

.page-header-logo .theme-toggle-btn:hover,
.page-header-logo .theme-toggle-btn:active {
  background: #111111;
  border-color: #111111;
  color: #FFFFFF;
}

/* In light mode, the logo header stays white regardless */
[data-theme="light"] .page-header {
  background: #F4F4F4;
  border-bottom-color: #D8D8D8;
}

[data-theme="light"] .page-header.page-header-logo {
  background: #FFFFFF;
  border-bottom-color: #E0E0E0;
}

/* Notification / info banners in light mode need readable contrast */
[data-theme="light"] .notification-banner {
  background: rgba(245,197,24,0.12);
  border-color: rgba(200,150,0,0.35);
  color: #6B5500;
}

[data-theme="light"] .notification-banner .notif-icon {
  color: #C89500;
}

/* OTP digit inputs */
[data-theme="light"] .otp-digit {
  color: #111111;
}

/* Form inputs */
[data-theme="light"] .form-input {
  color: #111111;
}

/* Station search input */
[data-theme="light"] .station-input-field {
  color: #111111;
}

/* Marketing banner */
[data-theme="light"] .mkt-banner-wrap {
  background: #EBEBEB;
  border-color: #D8D8D8;
}

/* Date input in home hero */
[data-theme="light"] #travel-date {
  color: #111111;
}
