.booking-page {
  min-height: 100vh;
  background: var(--rk-light);
}

.booking-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 70px;
  background:
    radial-gradient(circle at 82% 8%, rgba(31, 143, 46, .28), transparent 34%),
    linear-gradient(135deg, #090d0b 0%, #11180f 55%, #0b1110 100%);
  color: var(--rk-white);
}

.booking-hero-glow {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 194, 58, .22) 0%, rgba(92, 194, 58, 0) 68%);
}

.booking-hero-inner {
  position: relative;
  animation: rkHeroIn .8s cubic-bezier(.22, .61, .36, 1) .12s both;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .64);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.booking-back:hover {
  color: var(--rk-white);
}

.booking-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 8vw, 86px);
}

.booking-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 600;
  line-height: 1.55;
}

.booking-content {
  padding: 72px 0 96px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.booking-service-panel,
.booking-calendly-card {
  border: 1px solid rgba(13, 15, 12, .1);
  border-radius: 24px;
  background: var(--rk-white);
  box-shadow: 0 18px 44px rgba(13, 15, 12, .08);
}

.booking-service-panel {
  position: sticky;
  top: 112px;
  padding: 30px;
}

.booking-panel-head h2,
.booking-calendly-head h2 {
  font-size: clamp(32px, 4.2vw, 48px);
}

.booking-panel-head p {
  margin: 16px 0 28px;
  color: var(--rk-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.booking-service-list {
  display: grid;
  gap: 12px;
}

.booking-service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  width: 100%;
  padding: 17px 18px;
  border: 1.5px solid var(--rk-line);
  border-radius: 17px;
  background: #faf9f6;
  color: var(--rk-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.22, .61, .36, 1), border-color .2s, background .2s, box-shadow .2s;
}

.booking-service-card:hover,
.booking-service-card:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(31, 143, 46, .4);
  background: var(--rk-white);
  box-shadow: 0 12px 28px rgba(13, 15, 12, .08);
}

.booking-service-card.is-active {
  border-color: rgba(31, 143, 46, .88);
  background: #f0f8ed;
  box-shadow: inset 0 0 0 1px rgba(31, 143, 46, .14);
}

.booking-service-card span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rk-dark);
  color: var(--rk-white);
  font-size: 12px;
  font-weight: 900;
}

.booking-service-card.is-active span {
  background: var(--rk-green);
}

.booking-service-card strong {
  font-size: 16px;
  line-height: 1.15;
}

.booking-service-card small {
  color: var(--rk-muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.booking-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #dfe7da;
  border-radius: var(--rk-radius-pill);
  background: #f5f9f2;
  color: #33412d;
  font-size: 12.5px;
  font-weight: 800;
}

.booking-trust-points span::before {
  content: "✓";
  color: var(--rk-green);
  font-weight: 900;
}

.booking-calendly-card {
  overflow: hidden;
  overflow-anchor: none;
  background:
    radial-gradient(circle at right top, rgba(31, 143, 46, .12), transparent 38%),
    var(--rk-dark-soft);
  color: var(--rk-white);
}

.booking-calendly-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px 24px;
}

.booking-phone-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--rk-radius-pill);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.booking-service-reminder {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 16px 14px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 143, 46, .28);
  border-radius: 18px;
  background: #f0f8ed;
  color: var(--rk-text);
  box-shadow: 0 10px 24px rgba(31, 143, 46, .12);
}

.booking-service-check {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--rk-green);
  color: var(--rk-white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.booking-service-reminder div > span {
  display: block;
  color: var(--rk-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.booking-service-reminder strong {
  display: block;
  margin-top: 3px;
  color: var(--rk-text);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.15;
}

.booking-service-reminder strong span {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.booking-service-reminder p {
  margin: 5px 0 0;
  color: var(--rk-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.booking-calendly-shell {
  position: relative;
  height: min(860px, 86vh);
  min-height: 720px;
  margin: 0 16px 16px;
  overflow: hidden;
  overflow-anchor: none;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: #0a0d0b;
}

.booking-calendly-embed {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: var(--rk-white);
}

.booking-calendly-embed:empty {
  display: none;
}

.booking-calendly-embed iframe,
.booking-calendly-embed .calendly-inline-widget {
  width: 100% !important;
  height: 100%;
  min-height: inherit !important;
  border: 0;
}

@media (min-width: 701px) {
  .booking-calendly-shell {
    overflow: hidden;
  }

  .booking-calendly-embed iframe {
    overflow: auto !important;
    overscroll-behavior: contain;
  }
}

.booking-calendly-loader,
.booking-calendly-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at center, rgba(31, 143, 46, .14), transparent 42%),
    #0a0d0b;
  text-align: center;
}

.booking-calendly-loader.is-hidden {
  display: none;
}

.booking-calendly-loader span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 4px solid rgba(255, 255, 255, .18);
  border-top-color: var(--rk-green-bright);
  border-radius: 50%;
  animation: bookingSpin .9s linear infinite;
}

.booking-calendly-loader strong,
.booking-calendly-fallback h3 {
  margin: 0;
  font-size: 22px;
}

.booking-calendly-loader p,
.booking-calendly-fallback p {
  max-width: 460px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
  line-height: 1.5;
}

.booking-calendly-fallback[hidden] {
  display: none;
}

.booking-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@keyframes bookingSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-service-panel {
    position: relative;
    top: auto;
  }

  .booking-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .booking-hero {
    padding: 118px 0 56px;
  }

  .booking-content {
    padding: 44px 0 72px;
  }

  .booking-service-panel,
  .booking-calendly-head {
    padding: 24px;
  }

  .booking-service-list {
    grid-template-columns: 1fr;
  }

  .booking-calendly-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-phone-link {
    width: 100%;
  }

  .booking-calendly-shell {
    height: auto;
    min-height: 780px;
    overflow: visible;
  }

  .booking-calendly-embed {
    height: auto;
    min-height: 780px;
  }

  .booking-calendly-embed iframe,
  .booking-calendly-embed .calendly-inline-widget {
    height: 780px;
    min-height: 780px !important;
  }
}
