.calendly-modal {
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: center;
  }
  .calendly-modal-backdrop {
    position: absolute; left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
  }
  .calendly-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .calendly-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #1A1A1A;
    color: #D4AF37;
  }
  .calendly-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 1rem;
    flex: 1;
  }
  .calendly-modal-close {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    cursor: pointer;
    margin-left: 1rem;
  }
  .calendly-modal-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    background: #fff;
  }
  @media (max-width: 600px) {
    .calendly-modal-dialog { max-width: 98vw; }
    .calendly-modal-body { padding: 0.5rem; }
  }