.header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #303238;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-contact a:hover {
  color: #b48a00;
}

.header-contact i {
  color: #d3a900;
  font-size: 15px;
}

.header-contact .header-phone {
  color: #1d2d50;
  font-size: 17px;
  font-weight: 700;
}

.header-contact .header-booking {
  padding: 10px 15px;
  border-radius: 4px;
  color: #111;
  background: #f5c518;
  font-weight: 700;
}

.header-contact .header-booking i {
  color: #111;
}

.header-contact .header-booking:hover {
  color: #111;
  background: #e1b400;
}

.header-contact .header-request {
  padding: 8px 13px;
  border: 2px solid #1d2d50;
  border-radius: 4px;
  color: #1d2d50;
  font-weight: 700;
}

.header-contact .header-request:hover {
  color: #fff;
  background: #1d2d50;
}

@media (max-width: 780px) {
  .header-contact {
    justify-content: center;
    gap: 8px;
    font-size: 13px;
  }

  .header-contact .header-email,
  .header-contact .header-directions {
    display: none;
  }

  .header-contact .header-phone {
    font-size: 15px;
  }

  .header-contact .header-booking,
  .header-contact .header-request {
    padding: 8px 10px;
  }
}