.contact-form-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.meeting-booking {
  width: 100%;
  margin-top: 24px;
  padding: 20px 22px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.meeting-booking-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.meeting-booking-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 133, 202, .92), rgba(16, 6, 159, .94));
  font-size: 23px;
  box-shadow: 0 7px 20px rgba(0, 133, 202, 0.25);
}

.meeting-booking-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.meeting-booking-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.meeting-booking-text small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

.meeting-booking-action {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 133, 202, .92), rgba(16, 6, 159, .94));
    --shine-x: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.meeting-booking-button:hover .meeting-booking-action {
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(0, 133, 202, 0.3);
}

.meeting-booking-button:focus-visible {
  outline: 2px solid #30b9ef;
  outline-offset: 6px;
  border-radius: 18px;
}

@media (max-width: 700px) {
  .meeting-booking {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
  }

.meeting-booking-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

  .meeting-booking-text {
    flex-basis: calc(100% - 70px);
  }

  .meeting-booking-action {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}