/* ══════ BOOKING PAGE ══════ */
#booking-hero {
  min-height: 38vh; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 140px 48px 56px; text-align: center; position: relative;
}
.booking-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.03) 0%, transparent 55%);
}
#booking-main { padding: 0 48px 120px; }
.booking-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  max-width: 1200px; margin: 0 auto;
}
.booking-info {
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
  padding: 56px 48px;
  clip-path: polygon(0 0,calc(100% - 20px) 0,100% 20px,100% 100%,0 100%);
}
.booking-info-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 3px;
  line-height: .9; margin-bottom: 24px;
}
.booking-info-sub { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 48px; }
.process-list { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.process-item { display: flex; gap: 20px; align-items: flex-start; }
.process-step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px;
  background: var(--chrome-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height: 1; min-width: 44px;
}
.process-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.time-badge {
  font-size: 9px; letter-spacing: 2px; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.35);
  font-weight: 400;
  clip-path: polygon(0 0,calc(100% - 4px) 0,100% 4px,100% 100%,4px 100%,0 calc(100% - 4px));
}
.process-item p { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; }

.booking-faq { border-top: 1px solid rgba(255,255,255,.06); padding-top: 32px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.05); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; background: none; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px;
  color: rgba(255,255,255,.6); text-align: left; transition: color .25s;
}
.faq-q:hover { color: var(--white); }
.faq-icon {
  font-size: 20px; color: rgba(255,255,255,.3);
  transition: transform .3s var(--easing);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height .4s var(--easing), padding .3s;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 120px; padding-bottom: 16px; }

.booking-form-panel {
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
  clip-path: polygon(20px 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%,0 20px);
}

/* Calendar */
.cal-wrap {
  padding: 40px 40px 32px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.cal-month-label {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 4px;
}
.cal-nav-btn {
  width: 36px; height: 36px; background: transparent;
  border: 1px solid rgba(255,255,255,.1); color: var(--white); font-size: 18px;
  transition: all .25s; display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.cal-days-row {
  display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 8px;
}
.cal-days-row span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.2); text-align: center; padding: 6px 0;
}
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 1px;
  color: rgba(255,255,255,.25); transition: all .2s;
  border: 1px solid transparent;
}
.cal-day.available { color: var(--white); }
.cal-day.available:hover {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2);
}
.cal-day.today { border-color: rgba(255,255,255,.25); }
.cal-day.selected { background: var(--white); color: var(--black); border-color: var(--white); font-weight: 700; }
.cal-day.past { color: rgba(255,255,255,.12); }

.time-slots { padding: 24px 0 0; }
.time-slots-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.25); display: block; margin-bottom: 12px;
}
.time-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.time-btn {
  padding: 10px 0; background: transparent;
  border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.5);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 1px;
  transition: all .25s;
  clip-path: polygon(0 0,calc(100% - 4px) 0,100% 4px,100% 100%,4px 100%,0 calc(100% - 4px));
}
.time-btn:hover { border-color: rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.04); }
.time-btn.selected { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; }

/* Form */
.book-form { padding: 32px 40px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.booking-summary {
  display: flex; gap: 20px; padding: 16px 20px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  margin-bottom: 16px; flex-wrap: wrap;
}
.booking-summary span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,.5);
}
.form-submit { width: 100%; justify-content: center; margin-bottom: 0; }
.booking-success {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.success-icon {
  width: 56px; height: 56px; background: var(--white); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
}
.booking-success h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 4px;
}
.booking-success p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.7; }
.success-sub { font-size: 11px; color: rgba(255,255,255,.3); }

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  #booking-main { padding: 0 24px 80px; }
  .booking-info { clip-path: none; }
  .booking-form-panel { clip-path: none; }
  .time-grid { grid-template-columns: repeat(3,1fr); }
  .form-row { grid-template-columns: 1fr; }
}
