#booking-hero {
  padding: 13rem 2rem 3rem;
  text-align: center;
}
@media (min-width: 768px) { #booking-hero { padding: 14rem 4rem 3.5rem; } }

.booking-hero-content {
  max-width: 620px;
  margin: 0 auto;
}

.booking-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-ghost);
  margin: 1.25rem 0 1.25rem;
}
.booking-hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--color-cyan);
  display: block;
}

.booking-hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(240,239,244,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

#booking-main {
  padding: 3rem 1.5rem 6rem;
}

.booking-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.booking-calendar {
  padding: 1.5rem;
  overflow: hidden;
}

/* Fixed-height container — reserves space immediately so nothing
   below ever shifts regardless of iframe load or GHL resize events */
.booking-calendar-wrap {
  position: relative;
  height: 900px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .booking-calendar-wrap { height: 1300px; }
}
@media (max-width: 480px) {
  .booking-calendar-wrap { height: 1500px; }
}

.booking-skeleton {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.booking-skeleton-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.03) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-sweep 1.6s ease-in-out infinite;
}

@keyframes skeleton-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.booking-skeleton-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.booking-skeleton-spinner svg {
  color: rgba(0,229,192,0.6);
  animation: spin 1.2s linear infinite;
}

.booking-skeleton-spinner span {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(240,239,244,0.35);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Iframe is always position:absolute — never enters document flow,
   so GHL's postMessage resize calls cannot cause layout shift */
.booking-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  filter: invert(1) hue-rotate(180deg);
}

.booking-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 600px) {
  .booking-trust { grid-template-columns: repeat(4, 1fr); }
}

.booking-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.25rem 1rem;
}

.booking-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,229,192,0.08);
  border: 1px solid rgba(0,229,192,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.booking-trust-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ghost);
}

.booking-trust-item p {
  font-size: 0.78rem;
  color: rgba(240,239,244,0.5);
  line-height: 1.5;
  margin: 0;
}

.booking-contact {
  text-align: center;
  padding: 1.5rem;
}

.booking-contact p {
  font-size: 0.875rem;
  color: rgba(240,239,244,0.55);
  line-height: 1.6;
  margin: 0;
}

.booking-contact a {
  color: var(--color-cyan);
  text-decoration: none;
}
.booking-contact a:hover { text-decoration: underline; }
