/* ── Contact / Booking page – dark theme ─────────────────────── */
.contact-booking-page {
  background: #02060d;
  color: #e5edf8;
}

/* topbar: always solid on this static page */
.contact-booking-page .topbar {
  background: rgba(2, 6, 13, 0.96);
  border-bottom: 1px solid rgba(113, 144, 186, 0.18);
  backdrop-filter: blur(14px);
}

.contact-booking-page .navbar > a,
.contact-booking-page .navbar .nav-link {
  color: #c8d8ee;
}

.contact-booking-page .navbar > a:hover,
.contact-booking-page .navbar .nav-link:hover {
  color: #ffffff;
}

/* ── Page layout ─────────────────────────────────────────────── */
.booking-page {
  width: min(580px, calc(100% - 24px));
  margin: 0 auto;
  padding: 88px 0 48px;
}

/* ── Intro block ─────────────────────────────────────────────── */
.booking-intro {
  text-align: center;
  margin-bottom: 18px;
}

.booking-brand {
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.booking-intro h1 {
  margin: 10px 0 6px;
  font-size: 30px;
  font-weight: 800;
  color: #e8f1fb;
  letter-spacing: -0.5px;
}

.booking-intro p {
  margin: 0;
  color: #8fa3bf;
  font-size: 14px;
}

/* ── Main panel ──────────────────────────────────────────────── */
.booking-panel {
  background: #071020;
  border: 1px solid rgba(113, 144, 186, 0.18);
  border-radius: 8px;
  padding: 20px;
}

/* ── Section titles ──────────────────────────────────────────── */
.booking-block-title {
  margin: 16px 0 10px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8fa3bf;
  display: flex;
  align-items: center;
  gap: 7px;
}

.booking-block-title:first-child {
  margin-top: 2px;
}

.booking-block-title i {
  color: #f46400;
}

.booking-block-title small {
  font-size: 10px;
  color: #526275;
  text-transform: none;
}

/* ── Service cards ───────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-option {
  border: 1px solid rgba(113, 144, 186, 0.14);
  border-top: 2px solid #f46400;
  background: #040d1c;
  text-align: left;
  padding: 11px 12px;
  min-height: 66px;
  font-size: 13px;
  font-weight: 600;
  color: #c8d8ee;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.18s, box-shadow 0.18s;
}

.service-option:hover {
  background: #071828;
}

.service-option span {
  display: block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 400;
  color: #526890;
}

.service-option.active {
  background: #0b1e35;
  border-color: #f46400;
  box-shadow: 0 0 0 1px #f46400;
  color: #f0f6ff;
}

/* ── Selected label pill ─────────────────────────────────────── */
.booking-selected {
  margin: 10px 0 4px;
  text-align: center;
  font-size: 11px;
  color: #8fa3bf;
  background: #040d1c;
  border: 1px solid rgba(113, 144, 186, 0.16);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ── Two-column row (Date + Time) ────────────────────────────── */
.booking-grid-two {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Field label + input ─────────────────────────────────────── */
.booking-field {
  display: grid;
  gap: 5px;
}

.booking-field > span {
  font-size: 12px;
  color: #7a90a8;
  font-weight: 600;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(113, 144, 186, 0.2);
  background: #040d1c;
  border-radius: 3px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  color: #dce9f8;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  color-scheme: dark;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #3d526a;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: #f46400;
  box-shadow: 0 0 0 1px rgba(244, 100, 0, 0.45);
}

/* ── Time slot buttons ───────────────────────────────────────── */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.time-option {
  border: 1px solid rgba(113, 144, 186, 0.16);
  background: #040d1c;
  color: #8fa3bf;
  border-radius: 3px;
  padding: 7px 4px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}

.time-option:hover {
  background: #071828;
  color: #c8d8ee;
}

.time-option.active {
  border-color: #f46400;
  background: #0e1f34;
  color: #f46400;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(244, 100, 0, 0.35);
}

/* ── Details form grid ───────────────────────────────────────── */
.details-grid {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.full-width {
  grid-column: 1 / -1;
}

/* ── Submit button ───────────────────────────────────────────── */
.book-btn {
  border: 0;
  background: #f46400;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: filter 0.18s, box-shadow 0.18s;
}

.book-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 18px rgba(244, 100, 0, 0.35);
}

/* ── Status message ──────────────────────────────────────────── */
.booking-note {
  margin: 0;
  font-size: 12px;
  text-align: center;
  min-height: 18px;
  color: #3fcf76;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 760px) {
  .booking-page {
    width: calc(100% - 16px);
    padding-top: 76px;
  }

  .service-grid,
  .booking-grid-two,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ── Success Message Animation ─────────────────────────────────────────── */
@keyframes successPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.booking-note {
  margin-top: 20px;
  transition: all 0.3s ease;
}

/* ── Success Toast Notification ─────────────────────────────────────────── */
.success-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  max-width: 600px;
  width: calc(100% - 40px);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(16, 185, 129, 0.95));
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.success-toast i {
  font-size: 28px;
  flex-shrink: 0;
  animation: successPulse 0.6s ease-out;
}

.success-toast span {
  flex: 1;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .success-toast {
    top: 10px;
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .success-toast i {
    font-size: 24px;
  }
}
