.bh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.bh-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.bh-chip svg {
  stroke: #c9a656;
  transition: transform 0.4s ease;
}


/* ===============================================================
   .bh-why - Why Choose Us, six horizontal cards in two columns
   =============================================================== */
.bh-why {
  position: relative;
  overflow: hidden;
  background: #F9F5F5;
  padding: 78px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

/* Diagonal lines pattern - same treatment as .vm-hero-wrap */
.bh-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(144, 25, 28, 0.03) 0px,
    rgba(144, 25, 28, 0.03) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}

.bh-why > * {
  position: relative;
  z-index: 1;
}

.bh-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.bh-why-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px 28px 28px 26px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Left accent bar that grows on hover */
.bh-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: #c9a656;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
}

.bh-why-num {
  flex: 0 0 auto;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #f0e2e2;
  transition: color 0.4s ease, transform 0.4s ease;
}

.bh-why-body {
  min-width: 0;
}

.bh-why-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.bh-why-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

.bh-why-text a {
  color: #90191c;
  text-decoration: none;
}

.bh-why-text a:hover {
  text-decoration: underline;
}


/* ===============================================================
   .bh-route - wide route banner above the Areas We Cover labels
   =============================================================== */
.bh-route {
  max-width: 1200px;
  margin: 0 auto 32px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #F9F5F5;
}

.bh-route img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s ease;
}


/* ===============================================================
   Hover animation - scoped to .eh-bahrain so shared-sections.css
   and every other page that loads it are untouched.
   =============================================================== */

/* Why cards: lift, accent bar grows, ghost number turns gold */
.eh-bahrain .bh-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(144, 25, 28, 0.22);
  box-shadow: 0 16px 36px rgba(144, 25, 28, 0.10);
}

.eh-bahrain .bh-why-card:hover::before {
  transform: scaleY(1);
}

.eh-bahrain .bh-why-card:hover .bh-why-num {
  color: #c9a656;
  transform: translateY(-2px);
}

.eh-bahrain .bh-why-card:hover .bh-why-name {
  color: #90191c;
}

/* Route banner: slow zoom */
.eh-bahrain .bh-route:hover img {
  transform: scale(1.03);
}

/* Freight chips */
.eh-bahrain .bh-chip:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.eh-bahrain .bh-chip:hover svg {
  transform: translateX(3px) rotate(-8deg);
}

/* Service cards (shared component, this page only) */
.eh-bahrain .vm-service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.eh-bahrain .vm-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(144, 25, 28, 0.22);
  box-shadow: 0 16px 36px rgba(144, 25, 28, 0.10);
}

.eh-bahrain .vm-service-card .vm-service-icon,
.eh-bahrain .vm-service-card .vm-service-num {
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.eh-bahrain .vm-service-card:hover .vm-service-icon {
  transform: translateY(-3px) scale(1.06);
}

.eh-bahrain .vm-service-card:hover .vm-service-num {
  color: #c9a656;
}

/* City labels in Areas We Cover */
.eh-bahrain .eh-mode-card--label {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.eh-bahrain .eh-mode-card--label:hover {
  transform: translateY(-4px);
  border-color: rgba(144, 25, 28, 0.25);
  box-shadow: 0 12px 28px rgba(144, 25, 28, 0.10);
}

.eh-bahrain .eh-mode-card--label .eh-mode-name {
  transition: color 0.3s ease;
}

.eh-bahrain .eh-mode-card--label:hover .eh-mode-name {
  color: #90191c;
}

/* Respect users who ask for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .eh-bahrain .bh-why-card,
  .eh-bahrain .bh-why-card::before,
  .eh-bahrain .bh-why-num,
  .eh-bahrain .bh-route img,
  .eh-bahrain .bh-chip,
  .eh-bahrain .bh-chip svg,
  .eh-bahrain .vm-service-card,
  .eh-bahrain .vm-service-card .vm-service-icon,
  .eh-bahrain .eh-mode-card--label {
    transition: none !important;
  }
  .eh-bahrain .bh-why-card:hover,
  .eh-bahrain .bh-why-card:hover .bh-why-num,
  .eh-bahrain .bh-route:hover img,
  .eh-bahrain .bh-chip:hover,
  .eh-bahrain .bh-chip:hover svg,
  .eh-bahrain .vm-service-card:hover,
  .eh-bahrain .vm-service-card:hover .vm-service-icon,
  .eh-bahrain .eh-mode-card--label:hover {
    transform: none !important;
  }
}


/* ===============================================================
   Responsive
   =============================================================== */
@media (max-width: 960px) {
  .bh-why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .bh-why { padding: 56px 16px; }
  .bh-why-card {
    padding: 24px 22px;
    gap: 16px;
  }
  .bh-why-num { font-size: 28px; }
  .bh-route { margin-bottom: 26px; }
}

@media (max-width: 480px) {
  .bh-why-card {
    flex-direction: column;
    gap: 12px;
  }
}
