/* ==========================================================
   BOOKING.CSS — Booking / Schedule a Call Page
   ========================================================== */

/* ── Calendar Embed Section ── */
#booking { padding: 7rem 0; background: var(--white); border-bottom: 1px solid var(--border) }
.booking-g { display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start }
.booking-intro-eye {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent2);
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
}
.booking-intro-eye::before {
  content: ''; display: block; width: 22px; height: 2px; background: var(--accent);
}
.booking-intro-h {
  font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400; line-height: 1.2; letter-spacing: -.015em; margin-bottom: 1.5rem;
}
.booking-intro-p {
  font-size: 1rem; font-weight: 300; color: #444; line-height: 1.8; margin-bottom: 2rem;
}

/* Calendar embed container */
.calendar-embed {
  min-height: 700px; width: 100%;
  border: 1px solid var(--border); border-radius: 2px;
  background: var(--white); overflow: hidden;
}
.calendar-embed iframe {
  width: 100%; min-height: 700px; display: block;
}

/* ── What to Expect sidebar ── */
.booking-sidebar-h {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: var(--black); margin-bottom: 2rem;
}
.expect-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.expect-item:first-child { padding-top: 0 }
.expect-item:last-child { border-bottom: none }
.expect-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: #C2D4E4; line-height: 1; flex-shrink: 0; width: 28px;
}
.expect-title {
  font-family: var(--serif); font-size: .95rem; font-weight: 400;
  color: var(--black); margin-bottom: .35rem; line-height: 1.3;
}
.expect-desc {
  font-size: .82rem; font-weight: 300; color: #555; line-height: 1.6;
}

/* ── Trust Signals ── */
#trust { padding: 5.5rem 0; background: var(--navy); border-bottom: 3px solid var(--accent) }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 }
.trust-item {
  text-align: center; padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-item:last-child { border-right: none }
.trust-icon {
  width: 40px; height: 40px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; stroke: var(--accent-light); fill: none; stroke-width: 1.5 }
.trust-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  color: var(--white); margin-bottom: .5rem;
}
.trust-desc {
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.6;
}

/* ── Direct Contact ── */
#direct { padding: 7rem 0; background: var(--off); border-bottom: 1px solid var(--border) }
.direct-g { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border) }
.direct-card {
  padding: 3rem; background: var(--white); position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
}
.direct-card:last-child { border-right: none }
.direct-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.direct-card:hover::after { transform: scaleX(1) }
.direct-card-icon { margin-bottom: 1.5rem }
.direct-card-icon svg { width: 28px; height: 28px; stroke: var(--accent2); fill: none; stroke-width: 1.5 }
.direct-card h4 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: var(--black); margin-bottom: .75rem;
}
.direct-card p { font-size: .9rem; font-weight: 300; color: #555; line-height: 1.7 }
.direct-card a { color: var(--accent2); font-weight: 500; transition: color .15s }
.direct-card a:hover { color: var(--accent) }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .booking-g { grid-template-columns: 1fr }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 0 }
  .trust-item { border-right: none; padding: 1.5rem 2rem }
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: 1fr }
  .direct-g { grid-template-columns: 1fr }
  .direct-card { border-right: none; border-bottom: 1px solid var(--border) }
  .direct-card:last-child { border-bottom: none }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
  #booking, #trust, #direct { padding: 4rem 0 }
  .booking-g { gap: 3rem }
  .booking-intro-h { font-size: clamp(1.4rem, 5vw, 1.8rem) }
  .booking-intro-p { font-size: 16px }
  .calendar-embed { min-height: 800px }
  .calendar-embed iframe { min-height: 800px }

  .trust-item { padding: 1.5rem 1rem; text-align: left }
  .trust-icon { margin: 0 0 1rem }
  .trust-title { font-size: 1rem }
  .trust-desc { font-size: 14px }

  .direct-card { padding: 2rem }
  .direct-card h4 { font-size: 1.05rem }
  .direct-card p { font-size: 14px }

  .expect-title { font-size: 1rem }
  .expect-desc { font-size: 14px }
}
