/* ══════════════════════════════════════════════════════════
   BOOKING SECTION + ANIMATED AVATAR
   assets/css/booking.css
══════════════════════════════════════════════════════════ */

.booking {
  background: var(--iv-bg);
  position: relative;
  overflow: hidden;
}
.booking-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(123,47,255,.11) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.booking-inner {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

/* ── Trust side ───────────────────────────────────────── */
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(123,47,255,.09);
  border: 1px solid rgba(123,47,255,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--iv-purple);
}
.trust-point-text {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--iv-text);
}

/* ── Testimonial card ─────────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123,47,255,.11);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 4px 22px rgba(123,47,255,.08);
}
.stars              { font-size: 15px; margin-bottom: 12px; }
.testimonial-quote  { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--iv-text); line-height: 1.72; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--iv-text-muted); font-weight: 600; }

/* ══ ANIMATED AVATAR ══════════════════════════════════════ */
.avatar-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Orbit wrapper */
.avatar-orbit-wrapper {
  position: relative;
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinning text rings */
.orbit-text-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: orbitSpin 12s linear infinite;
}
.orbit-text-svg-reverse {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: orbitSpinRev 16s linear infinite;
  opacity: .6;
}

/* Avatar face circle */
.avatar-face {
  position: relative;
  z-index: 2;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #f0eeff 100%);
  border: 3px solid rgba(123,47,255,.25);
  box-shadow:
    0 8px 32px rgba(123,47,255,.2),
    0 0 0 8px rgba(123,47,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  transition: background .4s, border-color .4s;
}

/* Eye groups */
.avatar-svg    { width: 90px; height: 90px; position: relative; }
.eye-group     { transition: transform .08s linear; }
.eye-white     { fill: #fff; }
.eye-pupil     { fill: #1a0a3c; }
.eye-shine     { fill: #fff; opacity: .7; }

/* Booking CTA card */
.avatar-cta-card {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123,47,255,.14);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 6px 28px rgba(123,47,255,.1);
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.avatar-cta-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--iv-text); margin-bottom: 7px; }
.avatar-cta-sub   { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--iv-text-secondary); margin-bottom: 18px; }

.cal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--iv-purple);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(123,47,255,.32);
}
.cal-btn:hover {
  box-shadow: 0 8px 30px rgba(123,47,255,.52);
  transform: scale(1.04);
}

/* Calendar slots */
.cal-slots { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.cal-slot {
  border: 1px solid rgba(123,47,255,.14);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--iv-text);
  cursor: pointer;
  transition: all .2s;
}
.cal-slot:hover {
  border-color: var(--iv-purple);
  background: rgba(123,47,255,.05);
}
.cal-slot-time  { font-weight: 600; }
.cal-slot-badge {
  font-size: 10px;
  background: rgba(123,47,255,.1);
  color: var(--iv-purple);
  padding: 2px 9px;
  border-radius: 100px;
  font-weight: 500;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ── Centered booking (avatar removed from section) ── */
.booking-content-centered {
  max-width: 640px;
  margin: 0 auto;
}
