/* Fixed contact rail — Elite orange boxes, white icons */
.elite-contact-rail {
  position: fixed;
  z-index: 1200;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  pointer-events: none;
  transform: translateY(-50%);
  filter: drop-shadow(2px 0 10px rgba(0, 0, 0, 0.14));
}

.elite-contact-rail a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  height: 52px;
  max-width: 52px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: #e7791b;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    max-width 220ms ease,
    background-color 180ms ease;
}

.elite-contact-rail a:last-child {
  border-bottom: 0;
}

.elite-contact-rail .elite-contact-rail-icon {
  display: flex;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
}

.elite-contact-rail .elite-contact-rail-label {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px 0 4px;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 160ms ease;
}

.elite-contact-rail svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.elite-contact-rail a:hover,
.elite-contact-rail a:focus-visible {
  max-width: 280px;
  background: #cf6208;
  color: #fff;
  outline: none;
}

.elite-contact-rail .elite-contact-rail-email:hover,
.elite-contact-rail .elite-contact-rail-email:focus-visible {
  max-width: min(390px, calc(100vw - 16px));
}

.elite-contact-rail a:hover .elite-contact-rail-label,
.elite-contact-rail a:focus-visible .elite-contact-rail-label {
  opacity: 1;
}

/* Hide the older circular floating buttons if still present */
.elite-floating-contact {
  display: none !important;
}

@media (max-width: 767px) {
  .elite-contact-rail a {
    height: 46px;
    max-width: 46px;
  }

  .elite-contact-rail .elite-contact-rail-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .elite-contact-rail .elite-contact-rail-label {
    padding-right: 14px;
    font-size: 13px;
  }

  .elite-contact-rail a:hover,
  .elite-contact-rail a:focus-visible {
    max-width: 240px;
  }

  .elite-contact-rail .elite-contact-rail-email:hover,
  .elite-contact-rail .elite-contact-rail-email:focus-visible {
    max-width: min(360px, calc(100vw - 12px));
  }

  .elite-contact-rail svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elite-contact-rail a,
  .elite-contact-rail .elite-contact-rail-label {
    transition: none;
  }
}
