/* ============================================
   BOOK PAGE — Premium Styles
   ============================================ */

/* ============== HERO (NAVY BG) ============== */
.book-hero {
  position: relative;
  background: linear-gradient(135deg, #042B57 0%, #0A5BB0 50%, #1BAFC4 100%);
  color: #fff;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.book-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.bh-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(125, 221, 240, 0.4);
  top: -150px;
  left: -100px;
}
.bh-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -120px;
  right: -80px;
}
.bh-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.book-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* Light breadcrumb override */
.breadcrumb-light {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-light a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-light a:hover { color: #fff; }
.breadcrumb-light .breadcrumb-current { color: #7DDDF0; }

.bh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}
.bh-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7DDDF0;
  box-shadow: 0 0 0 4px rgba(125, 221, 240, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.bh-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: #fff !important;
}
.bh-title-accent {
  background: linear-gradient(135deg, #B8EEF7 0%, #fff 50%, #7DDDF0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.bh-subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.bh-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.bh-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.bh-trust-item svg { color: #7DDDF0; }


/* ============== FORM SECTION ============== */
.book-form-section {
  padding: 4rem 0 6rem;
  background: #F7FAFE;
}

/* Progress steps */
.book-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.book-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 1 auto;
}
.book-step-num {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E5EDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #94a3b8;
  transition: all 0.3s;
  flex-shrink: 0;
}
.book-step.active .book-step-num {
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 91, 176, 0.3);
}
.book-step.completed .book-step-num {
  background: #10b981;
  border-color: transparent;
  color: #fff;
}
.book-step.completed .book-step-num span { display: none; }
.book-step .book-step-check { display: none; color: #fff; }
.book-step.completed .book-step-check { display: block; }

.book-step-label {
  display: none;
  flex-direction: column;
  gap: 1px;
}
.book-step-label strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0B1E33;
  letter-spacing: -0.005em;
}
.book-step.active .book-step-label strong { color: #0A5BB0; }
.book-step-label span {
  font-size: 0.6875rem;
  color: #5C6F85;
  font-weight: 500;
}

.book-step-line {
  width: 60px;
  height: 2px;
  background: #E5EDF5;
  border-radius: 999px;
}
.book-step.completed + .book-step-line {
  background: #10b981;
}

@media (min-width: 768px) {
  .book-step-label { display: flex; }
}

/* Form card */
.book-form-card {
  background: #fff;
  border: 1px solid #E5EDF5;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px -8px rgba(10, 91, 176, 0.1);
  max-width: 960px;
  margin: 0 auto;
}

/* Panels */
.book-panel { display: none; }
.book-panel.active { display: block; }

.book-panel-head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E5EDF5;
}
.book-panel-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0B1E33;
  margin: 0 0 0.375rem;
}
.book-panel-head p {
  font-size: 0.9375rem;
  color: #5C6F85;
  margin: 0;
}

/* ============== STEP 1: SERVICE OPTIONS ============== */
.service-options {
  display: grid;
  gap: 0.75rem;
}
.service-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.125rem 1.25rem;
  background: #F7FAFE;
  border: 2px solid #E5EDF5;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.service-option:hover {
  background: #fff;
  border-color: rgba(27, 175, 196, 0.3);
}
.service-option.selected {
  background: linear-gradient(135deg, rgba(10, 91, 176, 0.04), rgba(27, 175, 196, 0.06));
  border-color: #1BAFC4;
  box-shadow: 0 0 0 4px rgba(27, 175, 196, 0.1);
}
.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.so-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 91, 176, 0.1);
  color: #0A5BB0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.service-option.selected .so-icon {
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  color: #fff;
}
.so-content { min-width: 0; }
.so-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1E33;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  letter-spacing: -0.01em;
}
.so-tag {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.so-desc {
  font-size: 0.8125rem;
  color: #5C6F85;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.so-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5C6F85;
}
.so-meta span { display: inline-flex; align-items: center; gap: 4px; }
.so-price {
  color: #0A5BB0 !important;
  font-weight: 800 !important;
  font-size: 0.875rem !important;
  letter-spacing: -0.01em;
}
.so-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #E5EDF5;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.service-option.selected .so-radio {
  border-color: #1BAFC4;
  background: #1BAFC4;
}
.service-option.selected .so-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

/* ============== STEP 2: SCHEDULE ============== */
.schedule-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
.schedule-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.schedule-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2D3F54;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Date picker */
.date-picker {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}
.date-cell {
  background: #F7FAFE;
  border: 1.5px solid #E5EDF5;
  border-radius: 12px;
  padding: 0.875rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: inherit;
}
.date-cell:hover {
  background: #fff;
  border-color: rgba(27, 175, 196, 0.4);
}
.date-cell.selected {
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 91, 176, 0.25);
}
.date-day {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5C6F85;
}
.date-cell.selected .date-day { color: rgba(255, 255, 255, 0.85); }
.date-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B1E33;
  letter-spacing: -0.025em;
  line-height: 1;
}
.date-cell.selected .date-num { color: #fff; }
.date-month {
  font-size: 0.625rem;
  font-weight: 600;
  color: #5C6F85;
}
.date-cell.selected .date-month { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 768px) {
  .date-picker { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .date-picker { grid-template-columns: repeat(3, 1fr); }
}

/* Time picker */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.time-cell {
  background: #F7FAFE;
  border: 1.5px solid #E5EDF5;
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0B1E33;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.time-cell:hover:not(.unavailable) {
  background: #fff;
  border-color: rgba(27, 175, 196, 0.4);
  color: #0B1E33 !important;
}
.time-cell.selected {
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 91, 176, 0.25);
}
.time-cell.unavailable {
  background: #F7FAFE;
  color: #cbd5e1;
  cursor: not-allowed;
  text-decoration: line-through;
}
@media (max-width: 480px) {
  .time-grid { grid-template-columns: repeat(2, 1fr); }
}

.time-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #5C6F85;
  margin-top: 0.5rem;
}
.time-legend span { display: inline-flex; align-items: center; gap: 5px; }
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.legend-dot.avail { background: #1BAFC4; }
.legend-dot.unavail { background: #cbd5e1; }

/* Schedule summary card */
.schedule-summary {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(10, 91, 176, 0.04), rgba(27, 175, 196, 0.06));
  border: 1px solid rgba(27, 175, 196, 0.2);
  border-radius: 12px;
}
.schedule-summary-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.schedule-summary > div { display: flex; flex-direction: column; gap: 2px; }
.schedule-summary strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0B1E33;
  letter-spacing: -0.005em;
}
.schedule-summary span {
  font-size: 0.8125rem;
  color: #5C6F85;
}

/* ============== STEP 3: DETAILS ============== */
.details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
.details-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 900px) {
  .details-grid { grid-template-columns: 1fr; }
}

/* Order summary card */
.order-summary {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, #F7FAFE 0%, #fff 100%);
  border: 1px solid #E5EDF5;
  border-radius: 16px;
  padding: 1.5rem;
}
.os-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #E5EDF5;
}
.os-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1E33;
  margin: 0;
  letter-spacing: -0.01em;
}
.os-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.os-rows { display: flex; flex-direction: column; gap: 0.625rem; }
.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.os-row > span { color: #5C6F85; }
.os-row > strong, .os-row > span:last-child {
  color: #0B1E33;
  font-weight: 600;
  text-align: right;
}
.os-divider {
  height: 1px;
  background: #E5EDF5;
  margin: 1rem 0;
}
.os-pricing { display: flex; flex-direction: column; gap: 0.625rem; }
.os-total {
  padding-top: 0.75rem;
  border-top: 1px solid #E5EDF5;
  font-size: 1rem;
}
.os-total strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.os-deposit {
  padding: 0.625rem 0.875rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  border-radius: 10px;
  color: #fff !important;
}
.os-deposit > span, .os-deposit > strong { color: #fff !important; }
.os-deposit strong {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.os-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid #E5EDF5;
  font-size: 0.75rem;
  color: #5C6F85;
}
.os-trust svg { color: #10b981; flex-shrink: 0; }


/* ============== ACTIONS ============== */
.book-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E5EDF5;
  gap: 1rem;
}
.book-actions-spacer { flex: 1; }

.btn-book-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: 1.5px solid #E5EDF5;
  border-radius: 10px;
  color: #5C6F85;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.btn-book-back:hover {
  border-color: #cbd5e1;
  color: #0B1E33;
  background: #F7FAFE;
}

.btn-book-next, .btn-book-confirm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(10, 91, 176, 0.25);
  letter-spacing: -0.005em;
}
.btn-book-next:hover, .btn-book-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 91, 176, 0.35);
}

/* ============== HELP CARDS ============== */
.book-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
}
.book-help-card {
  background: #fff;
  border: 1px solid #E5EDF5;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s;
}
.book-help-card:hover {
  border-color: rgba(10, 91, 176, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(10, 91, 176, 0.1);
}
.book-help-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(27, 175, 196, 0.12);
  color: #1BAFC4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.book-help-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0B1E33;
  margin-bottom: 0.375rem;
  letter-spacing: -0.005em;
}
.book-help-card p {
  font-size: 0.8125rem;
  color: #5C6F85;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .book-help-grid { grid-template-columns: 1fr; }
  .book-form-card { padding: 1.75rem 1.25rem; }
}

/* ============== Form fields (booking) ============== */
.details-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.details-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.details-form .form-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2D3F54;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.details-form .form-optional {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.details-form .form-field input,
.details-form .form-field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid #E5EDF5;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #0B1E33;
  background: #fff;
  transition: all 0.15s;
}
.details-form .form-field input::placeholder,
.details-form .form-field textarea::placeholder {
  color: #94a3b8;
}
.details-form .form-field input:focus,
.details-form .form-field textarea:focus {
  outline: none;
  border-color: #1BAFC4;
  box-shadow: 0 0 0 4px rgba(27, 175, 196, 0.12);
}
.details-form .form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.details-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem;
  background: #F7FAFE;
  border-radius: 10px;
  border: 1px solid #E5EDF5;
  margin-top: 0.25rem;
}
.details-form .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #1BAFC4;
  flex-shrink: 0;
  cursor: pointer;
}
.details-form .form-consent label {
  font-size: 0.8125rem;
  color: #5C6F85;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  cursor: pointer;
}
.details-form .consent-link {
  color: #0A5BB0;
  text-decoration: none;
  font-weight: 600;
}
.details-form .consent-link:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .details-form .form-row { grid-template-columns: 1fr; }
}
