/* ══════════════════════════════════════════════════════
   Bold Auto Transport – New Header / Nav / Drawer
   ══════════════════════════════════════════════════════ */

/* ── ANNOUNCEMENT BAR ──────────────────────────────── */
.bn-bar{
  background:#0f172a;color:#fff;
  font-size:12px;font-weight:500;
  padding:6px 16px;text-align:center;
  letter-spacing:.3px;
}
.bn-inner{
  display:flex;align-items:center;justify-content:center;
  gap:8px;flex-wrap:nowrap;overflow:hidden;
  max-width:1200px;margin:0 auto;
}
.bn-icon{color:#facc15;font-size:14px}
.bn-sep{color:rgba(255,255,255,.3);font-size:10px}
.bn-phone{color:#5eead4;font-weight:700;text-decoration:none;white-space:nowrap}
.bn-phone:hover{color:#fff}

/* ── HEADER ────────────────────────────────────────── */
.bh{
  position:sticky;top:0;z-index:200;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
  box-shadow:0 1px 8px rgba(0,0,0,.04);
}
.bh-inner{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;
  padding:0 24px;height:64px;gap:32px;
}
.bh-logo{flex-shrink:0;display:flex;align-items:center}
.bh-logo img{height:38px;width:auto}

/* ── DESKTOP NAV ───────────────────────────────────── */
.bh-nav{
  display:flex;align-items:center;gap:4px;
  flex:1;
}
.bh-link{
  font-size:14px;font-weight:600;color:#334155;
  text-decoration:none;padding:8px 14px;border-radius:8px;
  transition:all .15s;background:none;border:none;
  cursor:pointer;font-family:inherit;
  display:flex;align-items:center;gap:5px;
}
.bh-link:hover{background:#f1f5f9;color:#0b7dda}
.bh-link svg{transition:transform .2s}

/* ── DROPDOWN ──────────────────────────────────────── */
.bh-drop{position:relative}
.bh-panel{
  display:none;position:absolute;top:100%;left:0;
  min-width:240px;padding:8px 0;margin-top:4px;
  background:#fff;border-radius:12px;
  box-shadow:0 12px 40px rgba(0,0,0,.12);
  border:1px solid #e2e8f0;z-index:50;
}
.bh-drop.open .bh-panel{display:block}
.bh-drop.open .bh-link svg{transform:rotate(180deg)}
.bh-panel a{
  display:block;padding:10px 18px;
  font-size:13px;font-weight:500;color:#334155;
  text-decoration:none;transition:all .1s;
}
.bh-panel a:hover{background:#f1f5f9;color:#0b7dda}

/* ── RIGHT CTA AREA ───────────────────────────────── */
.bh-right{
  display:flex;align-items:center;gap:12px;
  margin-left:auto;flex-shrink:0;
}
.bh-phone{
  display:flex;align-items:center;gap:6px;
  font-size:14px;font-weight:600;color:#0b7dda;
  text-decoration:none;padding:6px 12px;border-radius:8px;
  transition:all .15s;
}
.bh-phone:hover{background:#e8f4fd}
.bh-cta{
  display:inline-flex;align-items:center;
  padding:10px 22px;border-radius:10px;
  background:#0b7dda;color:#fff;
  font-size:14px;font-weight:700;
  text-decoration:none;transition:all .2s;
  box-shadow:0 2px 10px rgba(11,125,218,.25);
}
.bh-cta:hover{background:#0970c4;color:#fff;transform:translateY(-1px)}

/* ── HAMBURGER ─────────────────────────────────────── */
.bh-burger{
  display:none;
  flex-direction:column;justify-content:center;
  gap:5px;width:28px;height:28px;
  background:none;border:none;cursor:pointer;padding:0;
}
.bh-burger span{
  display:block;width:100%;height:2px;
  background:#0f172a;border-radius:2px;
  transition:all .25s;
}
.bh-burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.bh-burger.active span:nth-child(2){opacity:0}
.bh-burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ═══════════════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════════════ */
.md-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.4);
  z-index:299;opacity:0;pointer-events:none;
  transition:opacity .3s;
}
.md-overlay.open{opacity:1;pointer-events:auto}

.md{
  position:fixed;top:0;right:-320px;bottom:0;
  width:320px;max-width:85vw;
  background:#fff;z-index:300;
  display:flex;flex-direction:column;
  transition:right .3s cubic-bezier(.4,0,.2,1);
  box-shadow:-8px 0 30px rgba(0,0,0,.1);
  overflow-y:auto;-webkit-overflow-scrolling:touch;
}
.md.open{right:0}

.md-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;border-bottom:1px solid #e2e8f0;
  flex-shrink:0;
}
.md-logo img{height:28px}
.md-close{
  width:32px;height:32px;border-radius:8px;
  border:1px solid #e2e8f0;background:#fff;
  font-size:22px;color:#64748b;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .15s;line-height:1;
}
.md-close:hover{background:#f1f5f9;color:#0f172a}

/* ── Drawer CTA ────────────────────────────────────── */
.md-quote-btn{
  display:block;margin:16px 20px;padding:14px;
  background:#0b7dda;color:#fff;border-radius:12px;
  font-size:15px;font-weight:700;text-align:center;
  text-decoration:none;transition:all .2s;
  box-shadow:0 4px 14px rgba(11,125,218,.28);
}
.md-quote-btn:hover{background:#0970c4;color:#fff}

/* ── Drawer Nav ────────────────────────────────────── */
.md-nav{
  flex:1;padding:8px 0;
}
.md-link{
  display:block;padding:14px 20px;
  font-size:15px;font-weight:600;color:#0f172a;
  text-decoration:none;border-bottom:1px solid #f1f5f9;
  transition:all .1s;
}
.md-link:hover{background:#f8fafc;color:#0b7dda}
.md-acc{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;padding:14px 20px;
  font-size:15px;font-weight:600;color:#0f172a;
  text-decoration:none;border:none;background:none;
  border-bottom:1px solid #f1f5f9;
  cursor:pointer;font-family:inherit;transition:all .15s;
}
.md-acc:hover{background:#f8fafc;color:#0b7dda}
.md-acc svg{transition:transform .25s;color:#94a3b8}
.md-acc.open svg{transform:rotate(180deg)}
.md-acc-panel{
  display:none;background:#f8fafc;
  border-bottom:1px solid #f1f5f9;
}
.md-acc-panel.open{display:block}
.md-acc-panel a{
  display:block;padding:12px 20px 12px 36px;
  font-size:14px;font-weight:500;color:#334155;
  text-decoration:none;border-bottom:1px solid #f1f5f9;
  transition:all .1s;
}
.md-acc-panel a:last-child{border-bottom:none}
.md-acc-panel a:hover{color:#0b7dda;background:#e8f4fd}

/* ── Drawer Trust Footer ───────────────────────────── */
.md-trust{
  flex-shrink:0;padding:16px 20px;
  border-top:1px solid #e2e8f0;background:#f8fafc;
}
.md-trust-row{
  display:flex;align-items:center;justify-content:center;
  gap:8px;font-size:12px;font-weight:600;color:#64748b;
  margin-bottom:12px;
}
.md-call{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:12px;border-radius:10px;
  background:#16a34a;color:#fff;
  font-size:14px;font-weight:700;text-decoration:none;
  box-shadow:0 2px 10px rgba(22,163,74,.25);
  transition:all .2s;
}
.md-call:hover{background:#15803d;color:#fff}

/* ═══════════════════════════════════════════════════
   STICKY BOTTOM BAR
   ═══════════════════════════════════════════════════ */
.sb-bar{
  position:fixed;bottom:0;left:0;right:0;z-index:190;
  background:#fff;border-top:1px solid #e2e8f0;
  box-shadow:0 -4px 24px rgba(0,0,0,.12);
  padding:12px 16px;
  padding-bottom:calc(12px + env(safe-area-inset-bottom, 0px));
  transform:translateY(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.sb-bar.visible{transform:translateY(0)}
.sb-inner{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;gap:12px;
}
.sb-call{
  display:flex;align-items:center;gap:6px;
  padding:12px 18px;border-radius:12px;
  border:2px solid #16a34a;background:#fff;
  color:#16a34a;font-size:14px;font-weight:700;
  text-decoration:none;transition:all .2s;
  white-space:nowrap;
}
.sb-call svg{color:#16a34a}
.sb-call:hover{background:#16a34a;color:#fff}
.sb-call:hover svg{color:#fff}
.sb-quote-btn{
  flex:1;display:flex;align-items:center;justify-content:center;
  padding:14px 24px;border-radius:12px;
  background:linear-gradient(135deg, #f59e0b 0%, #ef6c00 100%);
  color:#fff;
  font-size:16px;font-weight:700;letter-spacing:.02em;
  text-decoration:none;transition:all .25s;
  box-shadow:0 4px 14px rgba(239,108,0,.35);
}
.sb-quote-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(239,108,0,.45);
  color:#fff;
}

/* ═══════════════════════════════════════════════════
   FLOATING SIDE CTA
   ═══════════════════════════════════════════════════ */
.float-cta{
  position:fixed;right:20px;bottom:90px;z-index:180;
  display:flex;align-items:center;gap:8px;
  padding:14px 20px;border-radius:30px;
  background:linear-gradient(135deg, #f59e0b 0%, #ef6c00 100%);
  color:#fff;font-size:14px;font-weight:700;
  text-decoration:none;letter-spacing:.02em;
  box-shadow:0 6px 24px rgba(239,108,0,.4);
  transition:all .3s cubic-bezier(.4,0,.2,1);
  opacity:0;transform:translateX(100px);
  pointer-events:none;
}
.float-cta.visible{opacity:1;transform:translateX(0);pointer-events:auto}
.float-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(239,108,0,.55);
  color:#fff;
}
.float-cta svg{flex-shrink:0}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet: hide some nav items, show burger */
@media(max-width:1024px){
  .bh-nav{gap:0}
  .bh-link{padding:8px 10px;font-size:13px}
}

@media(max-width:900px){
  .bh-nav{display:none}
  .bh-burger{display:flex}
  .bh-inner{height:56px;padding:0 16px;gap:16px}
  .bh-logo img{height:32px}
  .bh-phone-num{display:none}
  .bh-phone{padding:8px}
  .bh-cta{padding:8px 16px;font-size:13px;border-radius:8px}
}

@media(max-width:600px){
  .bn-bar{font-size:11px;padding:5px 12px}
  .bn-inner{gap:5px}
  .bh-inner{height:52px;padding:0 12px}
  .bh-logo img{height:28px}
  .bh-cta{display:none}
  .sb-call-text{display:none}
}

/* Desktop: hide sticky bottom bar, show floating CTA */
@media(min-width:1025px){
  .sb-bar{display:none}
  footer.bold-footer{margin-bottom:0}
}
/* Tablet/mobile: show sticky bar, hide floating side CTA */
@media(max-width:1024px){
  footer.bold-footer{margin-bottom:80px}
  .float-cta{display:none!important}
}
