/* ==========================================================================
   Bespoke Design System - dumpsterrentalpro.site
   Zero CSS Class Collapses - High-Converting Multi-Vertical Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Oswald:wght@500;600;700;800&display=swap');

:root {

  --font-family: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Oswald', sans-serif;
  
  --theme-primary: #0f172a;
  --theme-secondary: #1e293b;
  --theme-accent: #f59e0b;
  --theme-accent-hover: #d97706;
  --theme-badge-bg: #fffbeb;
  --theme-badge-text: #b45309;
  --theme-badge-border: #fde68a;
  --theme-btn: #f59e0b;
  --theme-btn-text: #0f172a;
  --theme-btn-hover: #d97706;
  --theme-hero-bg: linear-gradient(135deg, #0a1120 0%, #1e293b 100%);
  --theme-card-border: #e2e8f0;
  
  --bg-page: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-body: #334155;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12);

}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { vertical-align: middle; max-width: 100%; }

/* TOP ANNOUNCEMENT TICKER */
.top-ticker {
  background: var(--theme-primary);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.top-ticker a {
  color: var(--theme-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* NAVBAR (Supports both .navbar and .nav-bar) */
.navbar, .nav-bar {
  background: #ffffff;
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brand-logo, .logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--theme-primary);
}
.brand-text-block { display: flex; flex-direction: column; }
.brand-title {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--theme-primary);
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-title span { color: var(--theme-accent); }
.brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-links a { color: var(--text-body); transition: color 0.15s; }
.nav-links a:hover { color: var(--theme-accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  padding: 9px 18px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 1px solid var(--theme-badge-border);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.phone-badge:hover { background: var(--theme-badge-border); transform: translateY(-1px); }

.btn-primary {
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary:hover { background: var(--theme-btn-hover); transform: translateY(-1px); }

/* HERO SECTION */
.hero {
  background: var(--theme-hero-bg);
  color: #ffffff;
  padding: 56px 24px 68px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--theme-accent);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #ffffff;
}
.hero h1 span { color: var(--theme-accent); }
.hero p {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f1f5f9;
}
.hero-preview-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #0f172a;
}
.hero-preview-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.hero-preview-caption {
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #e2e8f0;
}

/* QUOTE / RESERVATION / INQUIRY CARD */
.quote-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--theme-card-border);
}
.quote-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--theme-primary);
}
.quote-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-body);
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #ffffff;
  color: var(--text-body);
}
.form-control:focus {
  outline: none;
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px var(--theme-badge-bg);
}
.btn-quote {
  width: 100%;
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.btn-quote:hover {
  background: var(--theme-btn-hover);
  transform: translateY(-1px);
}

/* TRUST BAR */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.trust-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--theme-primary);
  line-height: 1.25;
}
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

/* SECTIONS */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-subtle); }
.section-container { max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; max-width: 820px; margin: 0 auto 52px; }
.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--theme-accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--theme-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-description { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }

/* SERVICES GRID & CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--theme-accent);
}
.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--theme-primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}
.service-features-list {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-bottom: 20px;
}
.service-features-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--theme-accent);
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  transition: color 0.15s;
}
.service-btn:hover { color: var(--theme-accent-hover); text-decoration: underline; }

/* 4-STAGE PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.process-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--theme-primary);
  margin-bottom: 10px;
}
.process-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* MATRIX TABLE */
.matrix-wrap {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.matrix-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.9rem; }
.matrix-table th {
  background: var(--theme-primary);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.matrix-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}
.matrix-table tr:hover td { background: var(--bg-subtle); }
.matrix-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.badge-green { background: #dcfce7; color: #15803d; }
.badge-blue { background: #e0f2fe; color: #0369a1; }
.badge-amber { background: #fef3c7; color: #b45309; }

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--theme-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ ACCORDION */
.faq-container, .faq-list { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--theme-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* CTA BANNER */
.cta-banner {
  background: var(--theme-hero-bg);
  color: #ffffff;
  padding: 64px 24px;
  text-align: center;
  position: relative;
}
.cta-container { max-width: 820px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-banner p { font-size: 1.1rem; color: #e2e8f0; margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-urgent-phone {
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s, background 0.2s;
}
.btn-urgent-phone:hover { background: var(--theme-btn-hover); transform: translateY(-2px); }

/* FOOTER */
.site-footer {
  background: var(--theme-primary);
  color: #94a3b8;
  padding: 64px 24px 32px;
  border-top: 3px solid var(--theme-accent);
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }
.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.88rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--theme-accent); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* RESPONSIVE COMMON */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-container { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-ticker { flex-direction: column; text-align: center; gap: 4px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.15rem; }
  .hero-checklist { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-container { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}



/* Dumpster Homepage Sizing Guide Components */
.sizing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.sizing-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.sizing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--theme-accent);
}
.sizing-card.popular {
  border: 2px solid var(--theme-accent);
  background: #fffdfa;
}
.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--theme-accent);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}
.sizing-img-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #e2e8f0;
}
.sizing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sizing-card:hover .sizing-img-wrap img {
  transform: scale(1.05);
}
.sizing-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sizing-header {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}
.sizing-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--theme-primary);
}
.sizing-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--theme-accent);
  text-transform: uppercase;
}
.sizing-specs {
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sizing-uses-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sizing-uses-list {
  list-style: none;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}
.sizing-uses-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.sizing-dispatch-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  border: 1px solid var(--theme-badge-border);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 12px;
}
.sizing-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-sm);
}
.sizing-action-btn:hover {
  background: var(--theme-btn-hover);
  transform: translateY(-1px);
}
.stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* Dumpster Location Components */
.industrial-ticker {
  background: #000000;
  color: #f59e0b;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  padding: 8px 20px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #f59e0b;
  text-align: center;
}
.btn-dispatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f59e0b;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-dispatch:hover {
  background: #d97706;
  color: #ffffff;
  transform: translateY(-1px);
}
.bin-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bin-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}
.bin-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #eff6ff;
  color: #1e40af;
  padding: 4px 10px;
  border-radius: 4px;
}
.ticket-block {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

