/* =====================================================
   DHARANI AUTO STORES — ABOUT PAGE CSS
   Matches home.css: pill nav | white bg | navy #0a213d | gold #ffcd34
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy        : #0a213d;
  --navy-mid    : #0d2a4f;
  --navy-soft   : #0f2d52;
  --gold        : #ffcd34;
  --gold-dk     : #e6b800;
  --gold-glow   : rgba(255,205,52,0.15);
  --gold-border : rgba(255,205,52,0.38);
  --bg          : #ffffff;
  --bg-soft     : #f4f6fb;
  --bg-card     : #ffffff;
  --text-head   : #0a213d;
  --text-body   : #374151;
  --text-muted  : #64748b;
  --border      : #e2e8f0;
  --sh-sm       : 0 2px  8px  rgba(10,33,61,0.07);
  --sh-md       : 0 8px  24px rgba(10,33,61,0.10);
  --sh-lg       : 0 20px 48px rgba(10,33,61,0.13);
  --sh-xl       : 0 32px 72px rgba(10,33,61,0.16);
  --font-d      : 'Barlow Condensed', sans-serif;
  --font-b      : 'DM Sans', sans-serif;
  --ease        : cubic-bezier(0.22, 1, 0.36, 1);
  --spring      : cubic-bezier(0.34, 1.56, 0.64, 1);
  --r           : 16px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text-body); overflow-x: hidden; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ─── HEADER — matching home page ─── */
.header {
  position: fixed;
  top: 22px;
  left: 6%;
  right: 6%;
  z-index: 9999;
  width: auto;
  isolation: isolate;
  /* No transform — breaks Chrome position:fixed */
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 26px;
  gap: 26px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 999px;
  border: 1.5px solid rgba(255,205,52,0.55);
  box-shadow: 0 10px 35px rgba(10,33,61,0.12), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.nav-left { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-wrap { display: flex; align-items: center; padding: 0; }
.brand-logo-wrap { padding: 0; }
.logo-wrap img { height: 34px; width: auto; display: block; transition: transform 0.3s ease, filter 0.3s ease; }
.brand-logo-wrap img { height: 34px; }
.logo-wrap img:hover { transform: scale(1.05); filter: drop-shadow(0 4px 14px rgba(255,205,52,0.6)); }
.nav-divider { width: 1px; height: 28px; background: rgba(10,33,61,0.18); margin: 0 16px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-links a {
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  text-decoration: none; color: var(--navy);
  padding: 8px 20px; border-radius: 999px; transition: all 0.25s ease;
}
.nav-links a.active { background: var(--gold); color: var(--navy); box-shadow: 0 5px 16px rgba(255,205,52,0.4); }
.nav-links a:not(.active):hover { color: var(--gold-dk); }

/* ─── BUTTONS ─── */
.btn-grad {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px; border-radius: 11px; cursor: pointer;
  text-decoration: none; font-family: var(--font-b); font-size: 14px;
  font-weight: 700; letter-spacing: 0.02em; background: var(--navy); color: #fff;
  border: 2px solid transparent; box-shadow: 0 4px 14px rgba(10,33,61,0.22);
  transition: transform 0.25s var(--spring), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn-grad:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10,33,61,0.32); border-color: var(--gold); }
.btn-grad.large { padding: 14px 36px; font-size: 15px; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 54px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 14px; font-family: var(--font-b); font-size: 11.5px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dk); background: var(--gold-glow); border: 1px solid var(--gold-border);
  padding: 6px 16px 6px 12px; border-radius: 999px;
}
.ey-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-dk);
  flex-shrink: 0; animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(230,184,0,0.70); }
  50%     { box-shadow: 0 0 0 8px rgba(230,184,0,0);    }
}
.section-title { font-family: var(--font-d); font-size: 42px; font-weight: 700; color: var(--text-head); letter-spacing: 0.01em; margin-bottom: 10px; }
.section-subtitle { font-size: 15px; color: var(--text-muted); }

/* ─── ABOUT HERO ─── */
.about-hero {
  padding: 110px 24px 90px; text-align: center;
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
}
.about-hero-content { max-width: 680px; margin: 0 auto; }
.about-hero h1 {
  font-family: var(--font-d); font-size: 54px; font-weight: 800;
  letter-spacing: 0.01em; color: var(--text-head); margin-bottom: 18px;
  animation: fadeSlideDown 0.8s var(--ease) 0.2s both;
}
.about-hero p {
  font-family: var(--font-b); font-size: 17px; line-height: 1.75;
  color: var(--text-muted); font-weight: 400;
  animation: fadeSlideDown 0.8s var(--ease) 0.4s both;
}
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

/* ─── JOURNEY — Timeline ─── */
.journey-section {
  padding   : 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.journey-wrap { max-width: 960px; margin: 0 auto; }

.tl { position: relative; }

/* Vertical center line */
.tl::before {
  content   : '';
  position  : absolute;
  left      : 50%;
  top       : 26px;   /* start from center of first row's dot, not from top */
  bottom    : 26px;   /* end at center of last row's dot, not at bottom */
  width     : 2px;
  background: #e5e7eb;
  transform : translateX(-50%);
  z-index   : 0;
}

/* tl-top ornament removed — line starts from first row dot */

/* ── Each row = 3-column grid ── */
.tl-row {
  display              : grid;
  grid-template-columns: 1fr auto 1fr;
  align-items          : center;
  margin-bottom        : 52px;
  position             : relative;
  z-index              : 1;
}
.tl-row:last-child { margin-bottom: 0; }

.tl-col-l {
  display        : flex;
  justify-content: flex-end;
  padding-right  : 28px;
}
.tl-col-m {
  display        : flex;
  justify-content: center;
  position       : relative;
  z-index        : 5;
}
.tl-col-r {
  display        : flex;
  justify-content: flex-start;
  padding-left   : 28px;
}

/* ─────────────────────────────────
   ANIMATED DOT — center of line
───────────────────────────────── */
.tl-dot {
  position: relative;
  display : flex;
  align-items: center;
  justify-content: center;
}
.tl-dot span {
  display      : block;
  width        : 14px;
  height       : 14px;
  border-radius: 50%;
  background   : var(--gold-dk);
  border       : 3px solid #ffffff;
  box-shadow   : 0 0 0 2px var(--gold-dk);
  flex-shrink  : 0;
  animation    : dotPulse 2.4s ease-in-out infinite;
  position     : relative;
  z-index      : 5;
}

/* ─────────────────────────────────
   YEAR TAG / BADGE
───────────────────────────────── */
.tl-tag {
  position: relative;
  z-index : 4;
}
.tl-tag span {
  display       : inline-block;
  font-family   : var(--font-b);
  font-size     : 12.5px;
  font-weight   : 700;
  letter-spacing: 0.04em;
  color         : #fff;
  background    : linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 100%);
  padding       : 7px 22px;
  border-radius : 999px;
  white-space   : nowrap;
  box-shadow    : 0 3px 12px rgba(230,184,0,0.30);
  position      : relative;
}

/* Tag on LEFT side → nub points RIGHT toward line */
.tl-tag-l span::after {
  content   : '';
  position  : absolute;
  top       : 50%;
  right     : -6px;
  left      : auto;
  border    : 6px solid transparent;
  border-left-color: var(--gold-dk);
  border-left-width: 8px;
  transform : translateY(-50%);
}

/* Tag on RIGHT side → nub points LEFT toward line */
.tl-tag-r span::after {
  content   : '';
  position  : absolute;
  top       : 50%;
  left      : -6px;
  border    : 6px solid transparent;
  border-right-color: var(--gold-dk);
  border-right-width: 8px;
  transform : translateY(-50%);
}

/* Navy variant */
.tl-tag-dark span {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  box-shadow: 0 3px 12px rgba(10,33,61,0.25);
}
.tl-tag-dark.tl-tag-r span::after {
  border-right-color: var(--navy);
}

/* ─────────────────────────────────
   CARD
───────────────────────────────── */
.tl-card {
  background   : #fff;
  border       : 1px solid #ebeef2;
  border-radius: 16px;
  padding      : 28px 26px;
  max-width    : 380px;
  width        : 100%;
  box-shadow   : 0 1px 6px rgba(10,33,61,0.04), 0 4px 20px rgba(10,33,61,0.04);
  transition   : transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.35s ease;
}
.tl-row:hover .tl-card {
  transform   : translateY(-4px);
  box-shadow  : 0 8px 30px rgba(10,33,61,0.10);
  border-color: var(--gold-border);
}
.tl-card-flip { text-align: right; }

.tl-card h3 {
  font-family  : var(--font-d);
  font-size    : 21px;
  font-weight  : 700;
  color        : var(--text-head);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.tl-card p {
  font-family: var(--font-b);
  font-size  : 13.5px;
  line-height: 1.78;
  color      : var(--text-body);
}

/* ─────────────────────────────────
   ROW 4 GROUP — year + brand logo stacked
───────────────────────────────── */
.tl-col-group {
  display       : flex;
  flex-direction: column;
  align-items   : flex-start;
  gap           : 18px;
}

/* Brand logo circle */
.tl-circle-brand {
  width          : 150px;
  height         : 150px;
  border-radius  : 50%;
  background     : #fff;
  border         : 1.5px solid var(--gold-border);
  box-shadow     : 0 0 0 4px var(--gold-glow), 0 4px 16px rgba(10,33,61,0.06);
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 28px;
  flex-shrink    : 0;
  overflow       : hidden;
  transition     : transform 0.4s var(--spring), box-shadow 0.4s ease, border-color 0.4s ease;
}
.tl-circle-brand img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
}
.tl-row:hover .tl-circle-brand {
  transform   : scale(1.05);
  box-shadow  : 0 0 0 6px rgba(255,205,52,0.20), 0 10px 28px rgba(10,33,61,0.10);
  border-color: var(--gold);
}

/* ─── ABOUT INFO ─── */
.about-info { padding: 100px 24px; background: var(--bg-soft); border-top: 1px solid var(--border); }
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
.who-cube {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 36px 32px; box-shadow: var(--sh-md);
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.35s ease;
}
.who-cube:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--gold-border); }
.who-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--gold-glow);
  border: 1px solid var(--gold-border); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.who-cube h2 { font-family: var(--font-d); font-size: 30px; font-weight: 700; color: var(--text-head); margin-bottom: 16px; letter-spacing: 0.02em; }
.who-cube p { font-family: var(--font-b); font-size: 14.5px; line-height: 1.8; color: var(--text-body); font-weight: 400; margin-bottom: 12px; }
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--bg-card); padding: 22px; border-radius: var(--r);
  font-family: var(--font-b); font-weight: 600; font-size: 15px; color: var(--text-head);
  box-shadow: var(--sh-sm); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
}
.info-card:hover { transform: translateX(5px); box-shadow: var(--sh-md); }
.info-card span { display: block; font-weight: 400; color: var(--text-muted); margin-top: 6px; font-size: 14px; }

/* ─── TESTIMONIALS ─── */
.about-testimonials { padding: 100px 24px; text-align: center; background: var(--bg); border-top: 1px solid var(--border); }
.testimonials-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 24px; box-shadow: var(--sh-md); text-align: left;
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--gold-border); }
.stars { color: var(--gold-dk); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-b); color: var(--text-body); font-size: 14.5px; line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { font-family: var(--font-b); font-weight: 700; font-size: 14px; color: var(--text-head); }
.testimonial-author span { display: block; font-weight: 400; font-size: 13px; color: var(--text-muted); margin-top: 3px; }

/* ─── FOOTER ─── */
.site-footer {
  padding: 28px 0; text-align: center; font-family: var(--font-b);
  font-size: 13px; background: #ffffff; color: rgba(10,33,61,0.52);
  border-top: 2px solid var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Timeline single-column */
  /* ── Vertical line: left edge, from first dot to last dot ── */
  .tl::before {
    left      : 20px;          /* aligns to dot center (dot is 14px wide at left:13px) */
    top       : 10px;          /* start at first dot */
    bottom    : 10px;          /* end at last dot */
    width     : 2px;
    transform : none;
  }
  .tl-top { display: none; }
  .tl-top-line { display: none; }

  /* Each row: vertical stack with left-rail dot */
  .tl-row {
    display       : flex;
    flex-direction: column;
    gap           : 10px;
    padding-left  : 48px;      /* content clears the dot+line on the left */
    margin-bottom : 36px;
    position      : relative;
    align-items   : flex-start;
  }
  .tl-row:last-child { margin-bottom: 0; }

  /* Dot column — absolute, pinned to left rail */
  .tl-col-m {
    position : absolute;
    left     : 13px;           /* center of 2px line at left:20px → 20-14/2=13 */
    top      : 9px;            /* vertically aligns to year badge center */
    z-index  : 5;
    display  : flex;
    align-items: center;
    justify-content: center;
  }

  /* Normal rows (1,3): year tag in col-l renders above card in col-r */
  .tl-col-l { padding: 0; justify-content: flex-start; order: 1; }
  .tl-col-r { padding: 0; justify-content: flex-start; order: 2; width: 100%; }

  /* Flip rows (2,4): swap so year (col-r) renders above card (col-l) */
  .tl-row-flip .tl-col-l { order: 2; width: 100%; }
  .tl-row-flip .tl-col-r { order: 1; }

  /* Remove sideways arrow nubs */
  .tl-tag-l span::after,
  .tl-tag-r span::after { display: none; }

  /* Year tag */
  .tl-tag span {
    font-size  : 11.5px;
    padding    : 6px 16px;
    white-space: nowrap;
  }

  /* Cards — full width, left-aligned */
  .tl-card,
  .tl-card-flip {
    text-align : left;
    max-width  : 100%;
    width      : 100%;
  }

  /* Col-group (year + brand logo stacked) */
  .tl-col-group   { align-items: flex-start; gap: 12px; flex-direction: column; }
  .tl-circle-brand { width: 100px; height: 100px; padding: 18px; }

  .about-hero h1 { font-size: 40px; }
  .section-title { font-size: 34px; }
}
@media (max-width: 860px) {
  .header { top: 12px; left: 3%; right: 3%; }
  .nav-pill { padding: 7px 8px 7px 14px; gap: 16px; }
  .logo-wrap img { height: 30px; }
  .brand-logo-wrap img { height: 26px; }
  .nav-links a { font-size: 13px; padding: 8px 14px; }
}
@media (max-width: 600px) {
  .nav-divider { display: none !important; }
  .about-hero { padding-top: 130px; }
  .about-hero h1 { font-size: 34px; }
  .section-title { font-size: 30px; }
}
/* ================================================================
   MOBILE-FIRST IMPROVEMENTS
   ================================================================ */

/* ── HAMBURGER ── */

.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .header { top: 12px; left: 3%; right: 3%; }
  .nav-pill { padding: 7px 10px 7px 16px; gap: 12px; }
  .logo-wrap img { height: 28px; }
  .nav-divider { margin: 0 10px; ; display: none !important; }
  .brand-logo-wrap img { height: 22px; }

  .nav-links,
  .nav-links a {
    display: none !important;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a {
    font-size: 24px; font-weight: 700;
    padding: 14px 36px; color: rgba(255,255,255,0.85);
    border-radius: 14px; min-height: 56px;
    display: flex; align-items: center;
    width: 220px; justify-content: center;
  }
  .nav-links a.active { background: var(--gold); color: var(--navy); box-shadow: 0 6px 24px rgba(255,205,52,0.45); }
  .nav-links a:not(.active) { color: rgba(255,255,255,0.80); }

  /* About hero */
  .about-hero { padding: 90px 16px 56px; }
  .about-hero h1 { font-size: clamp(28px, 8vw, 46px); }
  .about-hero p { font-size: 15px; }

  /* Section typography */
  .section-title { font-size: clamp(26px, 7vw, 42px); }
  .section-subtitle { font-size: 14px; }
  .section-header { margin-bottom: 36px; padding: 0 4px; }

  /* Journey */
  .journey-section { padding: 64px 16px; }
  .journey-wrap { max-width: 100%; }
  .tl-card { padding: 20px 18px; }
  .tl-card h3 { font-size: 18px; }
  .tl-card p { font-size: 13px; }

  /* About info */
  .about-info { padding: 64px 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .who-cube { padding: 24px 20px; }
  .who-cube h2 { font-size: 26px; }
  .info-card { padding: 18px; font-size: 14px; }

  /* Testimonials */
  .about-testimonials { padding: 64px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .testimonial-card { padding: 22px 18px; }

  /* Footer */
  .site-footer { font-size: 12px; padding: 22px 16px; }
}

@media (max-width: 480px) {
  .about-hero { padding-top: 86px; }
  .about-hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .tl-circle-brand { width: 80px; height: 80px; padding: 14px; }
}


/* ══════════════════════════════════════════
   MOBILE NAV OVERLAY — clean implementation
   Always hidden; only .open makes it visible
   Works on ALL screen sizes correctly
   ══════════════════════════════════════════ */

/* iOS Safari fix */
.nav-pill.nav-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(255,255,255,0.95);
}

/* ── Mobile nav: compact glassmorphism dropdown ── */
.mobile-nav-overlay {
  display: none !important;
  position: fixed;
  top: 78px;
  left: 16px;
  right: 16px;
  width: auto;
  max-width: 340px;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: rgba(8, 28, 54, 0.97);
  border-radius: 20px;
  border: 1px solid rgba(255, 205, 52, 0.25);
  box-shadow:
    0 8px 32px rgba(10, 33, 61, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 99999;
}

.mobile-nav-overlay.open {
  display: flex !important;
  animation: navDropIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-6px) scaleY(0.92); }
  to   { opacity: 1; transform: translateY(0)    scaleY(1); }
}

.mobile-nav-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,205,52,0.5), transparent);
}

.mobile-nav-overlay a {
  font-family: var(--font-b, 'DM Sans', sans-serif);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.80);
  border-radius: 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease;
  position: relative;
}
.mobile-nav-overlay a::before {
  content: '';
  position: absolute;
  left: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,205,52,0.4);
  transition: background 0.18s ease;
}
.mobile-nav-overlay a.active {
  background: rgba(255, 205, 52, 0.18);
  color: #ffcd34;
  font-weight: 700;
}
.mobile-nav-overlay a.active::before {
  background: #ffcd34;
}
.mobile-nav-overlay a:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* No separate close button — tapping hamburger again closes it */
.mobile-nav-close { display: none; }


/* ── Mobile breakpoint ── */

/* ══════════════════════════════════════════════════
   MOBILE TWO-PILL HEADER
   Desktop: hide mob-header-bar, show nav-pill
   Mobile:  hide nav-pill, show mob-header-bar
══════════════════════════════════════════════════ */

/* Always hidden on desktop */
.mob-header-bar {
  display: none;
}

@media (max-width: 768px) {

  /* Hide desktop nav-pill */
  .nav-pill { display: none !important; }

  /* Show mobile two-pill bar */
  .mob-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  /* ── Left pill: logos ── */
  .mob-logo-pill {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1.5px solid rgba(255, 205, 52, 0.65);
    box-shadow: 0 4px 20px rgba(10, 33, 61, 0.13);
    min-height: 50px;
  }
  .mob-logo-main {
    height: 30px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .mob-logo-div {
    display: block;
    width: 1.5px;
    height: 24px;
    background: rgba(10, 33, 61, 0.20);
    margin: 0 12px;
    flex-shrink: 0;
    border-radius: 2px;
  }
  .mob-logo-brand {
    height: 30px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  /* ── Right pill: hamburger ── */
  .mob-burger-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 54px;
    height: 50px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1.5px solid rgba(255, 205, 52, 0.65);
    box-shadow: 0 4px 20px rgba(10, 33, 61, 0.13);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .mob-burger-pill:hover {
    background: rgba(255, 205, 52, 0.18);
    border-color: rgba(255, 205, 52, 0.75);
  }
  .mob-burger-pill span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0a213d;
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.22s ease, width 0.22s ease;
    pointer-events: none;
  }
  /* Animate to X when open */
  .mob-burger-pill.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mob-burger-pill.open span:nth-child(2) { opacity: 0; width: 0; }
  .mob-burger-pill.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mob-burger-pill.open {
    background: rgba(10, 33, 61, 0.85);
    border-color: rgba(255, 205, 52, 0.60);
  }
  .mob-burger-pill.open span { background: #ffffff; }

  /* Header position on mobile */
  .header {
    top: 14px;
    left: 4%;
    right: 4%;
  }
}