.enquire-button {
  position: fixed;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  background-color: #7c5e19;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  width: 50px;
  min-height: 65px;
  overflow: hidden;
  transition: width 0.5s ease;
  z-index: 9999;
}

/* Individual button positions (desktop) */
.botbroch { top: 180px; }
.botenq   { top: 260px; }
.botcall  { top: 340px; }

.icon-wrapper {
	display:block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.enquire-button .icon {
  width: 30px;
  height: 26px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.enquire-button .text {
  display: inline-block;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: pre;
  width: 100%;
  text-align: center;
}

.enquire-button:hover {
  width: 140px;
}

.enquire-button:hover .icon {
  transform: translateX(100px);
  opacity: 0;
}

.enquire-button:hover .text {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {
  .enquire-button {
    position: fixed;
    bottom: 0;
    top: auto;
    width: 33.33%;
    min-height: auto;
    border-radius: 10px 10px 0 0;
    justify-content: center;
    flex-direction: column;
    transition: none; /* Disable hover expansion */
	padding: 5px;
  }

  /* Arrange inline */
  .botbroch { left: 0; right: auto; }
  .botenq   { left: 33.33%; right: auto; }
  .botcall  { left: 66.66%; right: auto; }
  .icon-wrapper {display:none}

  /* Simplify appearance for mobile */
  .enquire-button .icon-wrapper {
    position: static;
    transform: none;
    margin-bottom: 5px;
  }

  .enquire-button .text {
    opacity: 1;
    transform: none;
    font-size: 13px;
  }

  .enquire-button:hover {
    width: 33.33%; /* Keep same width */
  }

  .enquire-button:hover .icon {
    transform: none;
    opacity: 1;
  }

  .enquire-button:hover .text {
    opacity: 1;
    transform: none;
  }
}

@media screen and (min-width: 480px) {
.enquire-button .text {
  white-space: nowrap;
  min-height:24px;
}  
.enquire-button {
    min-height: 38px;
}
}

@media screen and (min-width: 768px) {
.enquire-button .text {
  white-space: pre;
}
}
