/* ================================================================
   BOOK A MEETING PAGE — public/frontend_assets/css/booking.css
   Same dark + gold visual language as blog.css / service.css.
   ================================================================ */

/* ---- Hero ---- */
.ls-booking-banner {
  position: relative;
  padding: 90px 0 50px;
  background-color: #14120c;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,168,76,0.20), transparent 42%),
    radial-gradient(circle at 88% 85%, rgba(201,168,76,0.12), transparent 46%),
    url('../img/more/texture-2.webp');
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: cover, cover, 420px auto;
  background-position: center, center, center;
}
.ls-booking-banner-inner { max-width: 720px; }
.ls-booking-banner-tag {
  display: inline-block;
  background: #C9A84C;
  color: #000;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.ls-booking-banner-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.ls-booking-banner-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ---- Layout ---- */
.ls-booking-section { padding: 56px 0 80px; }
.ls-booking-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ---- Left: trust panel ---- */
.ls-booking-side {
  flex: 1 1 320px;
  min-width: 300px;
  background: linear-gradient(160deg, rgba(201,168,76,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 36px 30px;
  position: sticky;
  top: 100px;
}
.ls-booking-side-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C9A84C;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.ls-booking-side-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.ls-booking-side-text { font-size: 14px; color: #aaa; line-height: 1.6; margin-bottom: 22px; }
.ls-booking-side-list { list-style: none; padding: 0; margin: 0 0 28px; }
.ls-booking-side-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 14px;
  line-height: 1.5;
}
.ls-booking-side-list li i { color: #C9A84C; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.ls-booking-side-contact {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.ls-booking-side-contact-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.ls-booking-side-contact-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none !important;
}
.ls-booking-side-contact-number i { color: #16a34a; }
.ls-booking-side-contact-number:hover { color: #C9A84C !important; }

/* ---- Right: form card ---- */
.ls-booking-form-card {
  flex: 2 1 480px;
  min-width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
}
.ls-booking-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 8px;
}
.ls-booking-label-hint { color: #888; font-weight: 400; font-size: 12px; text-transform: none; letter-spacing: 0; }
.ls-booking-form .form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
}
.ls-booking-form .form-control:focus {
  background: rgba(255,255,255,0.06);
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  color: #fff;
}
.ls-booking-form .form-control::placeholder { color: #777; }
.ls-booking-form .form-control[readonly] { cursor: pointer; }

/* ---- Time slot pills ---- */
.ls-booking-time-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.ls-booking-time-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ccc;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ls-booking-time-pill:hover { border-color: rgba(201,168,76,0.5); color: #fff; }
.ls-booking-time-pill--active {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #000;
}

/* ---- Submit button ---- */
.ls-booking-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C9A84C;
  color: #000;
  border: none;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.ls-booking-submit-btn:hover { background: #d4b265; transform: translateY(-2px); }
.ls-booking-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---- Flatpickr dark/gold reskin ---- */
.flatpickr-calendar {
  background: #1a1710 !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
}
.flatpickr-months, .flatpickr-weekdays { background: #1a1710 !important; }
.flatpickr-current-month, .flatpickr-weekday { color: #fff !important; }
.flatpickr-month svg path { fill: #C9A84C !important; }
.flatpickr-day { color: #ddd !important; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255,255,255,0.2) !important;
  text-decoration: line-through;
}
.flatpickr-day.today { border-color: #C9A84C !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: #C9A84C !important;
  border-color: #C9A84C !important;
  color: #000 !important;
}
.flatpickr-day:hover { background: rgba(201,168,76,0.2) !important; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .ls-booking-side { position: static; }
}
@media (max-width: 767px) {
  .ls-booking-banner { padding: 76px 0 40px; }
  .ls-booking-form-card, .ls-booking-side { padding: 26px 20px; }
}
