:root {
  --voice-blue: #1899d6;
  --voice-blue-dark: #0879b7;
  --voice-ink: #172536;
  --voice-muted: #617083;
  --voice-line: #dce7ef;
  --voice-soft: #f3f9fc;
  --voice-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body.voice-booking-page {
  min-height: 100vh;
  margin: 0;
  color: var(--voice-ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(24, 153, 214, 0.18), transparent 32rem),
    linear-gradient(145deg, #eef8fc 0%, #ffffff 52%, #edf5fa 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.voice-header {
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(23, 37, 54, 0.08);
  box-shadow: 0 5px 24px rgba(23, 37, 54, 0.05);
}

.voice-header a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--voice-ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.voice-header img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.voice-main {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(32px, 6vw, 80px) 18px;
}

.voice-card {
  width: min(100%, 760px);
  padding: clamp(26px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(24, 153, 214, 0.15);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(25, 74, 104, 0.16);
}

.voice-eyebrow {
  margin: 0 0 10px;
  color: var(--voice-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.voice-card h1 {
  margin: 0;
  color: var(--voice-ink);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.voice-intro {
  max-width: 620px;
  margin: 20px 0 12px;
  color: var(--voice-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.voice-example,
.voice-time-note {
  margin: 14px 0 0;
  padding: 15px 17px;
  color: #405268;
  background: var(--voice-soft);
  border-left: 4px solid var(--voice-blue);
  border-radius: 10px;
  line-height: 1.6;
}

.voice-example {
  font-style: italic;
}

.voice-time-note {
  border-left-color: #f1aa27;
  background: #fff9ed;
  font-style: normal;
}

.voice-button,
.review-button,
.confirm-button {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  padding: 14px 22px;
  color: var(--voice-white);
  background: linear-gradient(135deg, var(--voice-blue), var(--voice-blue-dark));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(8, 121, 183, 0.25);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.voice-button:hover,
.review-button:hover,
.confirm-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8, 121, 183, 0.3);
}

.voice-button:focus-visible,
.review-button:focus-visible,
.confirm-button:focus-visible,
.booking-form input:focus,
.booking-form select:focus {
  outline: 3px solid rgba(24, 153, 214, 0.25);
  outline-offset: 2px;
}

.voice-button.is-listening {
  background: linear-gradient(135deg, #e24f57, #b62434);
  box-shadow: 0 12px 28px rgba(182, 36, 52, 0.24);
}

.voice-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.voice-status {
  min-height: 24px;
  margin: 14px 0;
  color: var(--voice-muted);
  text-align: center;
  line-height: 1.5;
}

.voice-transcript {
  margin: 20px 0;
  padding: 18px;
  background: #f7fbfd;
  border: 1px solid var(--voice-line);
  border-radius: 15px;
}

.voice-transcript p {
  margin: 8px 0 0;
  color: #405268;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #35475b;
  font-size: 0.9rem;
  font-weight: 750;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--voice-ink);
  background: var(--voice-white);
  border: 1px solid #cddbe5;
  border-radius: 12px;
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--voice-blue);
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-button {
  margin-top: 4px;
  color: var(--voice-blue-dark);
  background: #eaf7fd;
  border: 1px solid #a9daf1;
  box-shadow: none;
}

.review-button:hover {
  box-shadow: 0 10px 24px rgba(8, 121, 183, 0.14);
}

.booking-summary {
  margin-top: 28px;
  padding: 24px;
  background: #f3fbff;
  border: 1px solid #b9e2f5;
  border-radius: 18px;
}

.booking-summary h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
}

.booking-summary p {
  margin: 8px 0;
  color: #405268;
  line-height: 1.5;
}

.confirm-button {
  margin-top: 18px;
}

.regular-booking {
  display: block;
  margin-top: 24px;
  color: var(--voice-blue-dark);
  text-align: center;
  font-weight: 700;
  text-underline-offset: 3px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 620px) {
  .voice-header {
    padding: 14px 18px;
  }

  .voice-header img {
    width: 38px;
    height: 38px;
  }

  .voice-header span {
    font-size: 0.82rem;
  }

  .voice-main {
    padding: 22px 12px 40px;
  }

  .voice-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .booking-row {
    grid-template-columns: 1fr;
  }

  .voice-example,
  .voice-time-note {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
