/* Booking page + staff dashboard */

.page-hero--booking {
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.88), rgba(26, 35, 50, 0.72)),
    url('../images/corporate.jpg') center/cover no-repeat;
  margin-bottom: 0;
}

.booking-full {
  background: #f3f0ea;
  padding: 0 0 3rem;
  width: 100%;
}

.booking-full__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.booking-full__layout {
  background: #fff;
  border: none;
  border-top: 1px solid #e4ddd0;
  border-bottom: 1px solid #e4ddd0;
  box-shadow: 0 18px 40px rgba(26, 35, 50, 0.08);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
}

.booking-full__aside {
  background: linear-gradient(165deg, #1a2332 0%, #243447 100%);
  color: #fff;
  min-height: 100%;
}

.booking-aside-inner {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  height: 100%;
}

.booking-aside__eyebrow {
  font-family: var(--font-sans, Montserrat, sans-serif);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--prestige-gold, #c9a227);
  margin-bottom: 0.75rem;
}

.booking-full__aside h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.booking-aside__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.booking-aside__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.15rem;
}

.booking-aside__list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.booking-aside__list i {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  color: var(--prestige-gold, #c9a227);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.booking-aside__list strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.booking-aside__list span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.booking-full__main {
  background: #fff;
}

.booking-full__form-wrap {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  width: 100%;
}

.booking-page {
  max-width: 820px;
  margin: 0 auto;
  background: #faf9f7;
  border: 1px solid #e8e2d6;
  padding: 2rem;
}

.booking-page__intro h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  color: var(--prestige-dark, #1a2332);
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.booking-page__intro p {
  color: #666;
  margin-bottom: 1.75rem;
}

.booking-page__form .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--prestige-dark, #1a2332);
}

.booking-page__form .form-control,
.booking-page__form .form-select,
.staff-panel .form-control,
.staff-panel .form-select {
  border-radius: 0;
  border-color: #d5d0c8;
  padding: 0.75rem 0.9rem;
  min-height: 48px;
  background: #faf9f7;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.booking-page__form textarea.form-control {
  min-height: 120px;
}

.booking-page__form .form-control:focus,
.booking-page__form .form-select:focus,
.staff-panel .form-control:focus,
.staff-panel .form-select:focus {
  border-color: var(--prestige-gold, #c9a227);
  background: #fff;
  box-shadow: 0 0 0 0.15rem rgba(201, 162, 39, 0.25);
}

.booking-page__form .errorlist {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  color: #b02a37;
  font-size: 0.8rem;
}

.booking-page__actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ece7dc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.booking-page__submit {
  border-radius: 0;
  border: none;
  background: var(--prestige-gold, #c9a227);
  color: var(--prestige-dark, #1a2332);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
}

.booking-page__submit--lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.85rem;
  width: 100%;
  max-width: 420px;
}

.booking-page__submit:hover {
  background: var(--prestige-gold-light, #dbb84a);
  color: var(--prestige-dark, #1a2332);
}

.booking-page__submit-loading {
  display: none;
  align-items: center;
  justify-content: center;
}

.booking-page__submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
  cursor: wait;
}

.booking-page__submit.is-loading .booking-page__submit-text {
  display: none;
}

.booking-page__submit.is-loading .booking-page__submit-loading {
  display: inline-flex;
}

.booking-page__hint {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.booking-page__secondary {
  border-radius: 0;
  border: 1px solid #ccc;
  background: transparent;
  color: #555;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
}

.booking-page__secondary:hover {
  background: #f0f0f0;
  color: #333;
}

.booking-success-page {
  max-width: 640px;
  margin: 0 auto 3rem;
  background: #fff;
  border: 1px solid #e8e2d6;
  box-shadow: 0 18px 40px rgba(26, 35, 50, 0.08);
  padding: 2.75rem 2rem;
}

.booking-success-page__icon {
  font-size: 3rem;
  color: #25d366;
}

.booking-success-page__ticket {
  font-family: var(--font-sans, Montserrat, sans-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--prestige-dark, #1a2332);
  background: rgba(201, 162, 39, 0.15);
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--prestige-gold, #c9a227);
}

.booking-success-page__whatsapp-note {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: #25d366;
  font-weight: 500;
}

.booking-success-page__whatsapp-hint {
  margin: 1.25rem 0 0.75rem;
  font-size: 0.9rem;
}

.booking-success-page__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.booking-success-page__whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .booking-full__layout {
    margin-top: -1.25rem;
  }

  .booking-page__submit--lg {
    max-width: none;
  }
}

/* Staff */
.staff-hero {
  background: var(--prestige-dark, #1a2332);
  color: #fff;
  padding: 2rem 0 1.75rem;
}

.staff-hero__title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.staff-back {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
}

.staff-back:hover {
  color: var(--prestige-gold, #c9a227);
}

.staff-stat {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e8e2d6;
  padding: 1rem 0.75rem;
  text-align: center;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.staff-stat:hover,
.staff-stat.is-active {
  border-color: var(--prestige-gold, #c9a227);
  color: inherit;
  transform: translateY(-2px);
}

.staff-stat__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--prestige-dark, #1a2332);
}

.staff-stat__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #777;
}

.staff-table-wrap {
  background: #fff;
  border: 1px solid #e8e2d6;
}

.staff-table thead {
  background: var(--prestige-dark, #1a2332);
  color: #fff;
}

.staff-table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  border: none;
  padding: 0.85rem 1rem;
}

.staff-panel {
  background: #fff;
  border: 1px solid #e8e2d6;
  padding: 1.25rem 1.35rem;
}

.staff-panel__title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--prestige-dark, #1a2332);
}

.staff-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin: 0;
}

.staff-dl--full {
  grid-column: 1 / -1;
}

.staff-dl dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 0.15rem;
}

.staff-dl dd {
  margin: 0;
  color: #222;
}

.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 0;
}

.status-badge--lg {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
}

.status-badge--pending { background: #fff3cd; color: #856404; }
.status-badge--quoted { background: #cfe2ff; color: #084298; }
.status-badge--confirmed { background: #d1e7dd; color: #0f5132; }
.status-badge--invoiced { background: #e2d9f3; color: #432874; }
.status-badge--paid { background: #198754; color: #fff; }
.status-badge--completed { background: #212529; color: #fff; }
.status-badge--cancelled,
.status-badge--cancelled { background: #f8d7da; color: #842029; }
.status-badge--sent { background: #cfe2ff; color: #084298; }
.status-badge--draft { background: #e9ecef; color: #495057; }

.staff-hub-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8e2d6;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.staff-hub-card:hover {
  border-color: var(--prestige-gold, #c9a227);
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.staff-hub-card i {
  font-size: 1.6rem;
  color: var(--prestige-gold, #c9a227);
  margin-bottom: 0.75rem;
}

.staff-hub-card h6 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--prestige-dark, #1a2332);
}

.staff-hub-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.invoice-sheet {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 10px;
  padding: 2rem 2.25rem;
  width: 100%;
  max-width: none;
}

.invoice-sheet__table {
  width: 100%;
}

.invoice-sheet__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid var(--prestige-gold, #c9a227);
  padding-bottom: 1rem;
}

.invoice-sheet__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.invoice-sheet__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.invoice-sheet__table thead {
  background: #f5f2eb;
}

.invoice-sheet__notes {
  background: #faf9f7;
  border-left: 3px solid var(--prestige-gold, #c9a227);
  padding: 1rem;
}

.invoice-view {
  width: 100%;
}

@media print {
  .no-print,
  .top-navbar,
  #main-navbar,
  footer,
  .whatsapp-chat-container,
  .chatbot-container,
  #back-to-top,
  #loading-spinner,
  .messages-container,
  .job-notification-simple {
    display: none !important;
  }

  .invoice-sheet {
    border: none;
    padding: 0;
    max-width: none;
    width: 100%;
    border-radius: 0;
  }

  .invoice-view {
    width: 100%;
  }

  .toast-messages-container {
    display: none !important;
  }

  body {
    background: #fff;
  }
}

@media (max-width: 767px) {
  .booking-page {
    padding: 1.25rem;
  }

  .staff-dl {
    grid-template-columns: 1fr;
  }

  .invoice-sheet__header {
    flex-direction: column;
  }

  .invoice-sheet__logo {
    width: 56px;
    height: 56px;
  }
}
