/* ── Appointment Page ── */
.appointment-page {
  min-height: 100vh;
  padding: 100px 24px 60px;
  background: transparent;
  position: relative;
}

.appointment-page .section-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.calendly-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.06) 60%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(18px) saturate(140%) brightness(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(140%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

/* glass sheen */
.calendly-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.04) 35%,
      rgba(255, 255, 255, 0.01) 55%,
      rgba(255, 255, 255, 0.10) 100%
    );
  animation: waterSheen 6s ease-in-out infinite alternate;
  z-index: 1;
}

.calendly-inline-widget {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .calendly-box {
    padding: 12px;
  }

  .calendly-inline-widget {
    height: 600px !important;
  }
}

@media (max-width: 480px) {
  .appointment-page {
    padding: 80px 16px 40px;
  }

  .calendly-inline-widget {
    height: 540px !important;
  }
}
