:root {
  --blue: #0B3A82;
  --blue2: #1463D6;
  --bg: #ffffff;
  --alt: #F4F8FF;
  --text: #0F172A;
  --muted: #475569;
  --border: #D9E2F2;
  --shadow: 0 10px 30px rgba(2, 15, 40, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.topbar {
  background: var(--alt);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.topbar__item {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: block;
  object-fit: contain;
  padding: 4px;
  box-shadow: var(--shadow);
}

.brand__text {
  font-weight: 600;
}

.brand__text strong {
  display: block;
}

.brand__text small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav__link:hover {
  background: var(--alt);
  color: var(--text);
}

.nav__cta {
  background: var(--blue);
  color: #fff !important;
}

.nav__cta:hover {
  background: var(--blue2);
}

.navToggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sectionTitle {
  margin-bottom: 22px;
}

.sectionTitle h2 {
  margin: 0 0 6px;
  font-size: 32px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.hero {
  padding-top: 56px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.pill {
  display: inline-block;
  background: var(--alt);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.hero h1 {
  margin: 10px 0 8px;
  font-size: 42px;
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 55ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.trust__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero__card h3 {
  margin-top: 0;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 6px 0;
}

.miniCard {
  margin-top: 16px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 14px;
  background: var(--alt);
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li {
  margin: 10px 0;
}

.priceCard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.priceCard h3 {
  margin: 0 0 6px;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  margin: 8px 0 10px;
}

.price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.shopBar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 18px;
  flex-wrap: wrap;
}

.label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 700;
  font-size: 14px;
}

.input,
.select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
  outline: none;
}

.input:focus,
.select:focus,
textarea:focus {
  border-color: rgba(20, 99, 214, 0.6);
  box-shadow: 0 0 0 4px rgba(20, 99, 214, 0.12);
}

textarea {
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}

.btn--primary:hover {
  background: var(--blue2);
}

.btn--ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--alt);
}

.btn--small {
  padding: 10px 12px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.steps {
  color: var(--muted);
}

.steps li {
  margin: 10px 0;
}

.footer {
  background: #0B1F3D;
  color: #fff;
  padding: 26px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: #dbeafe;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .navToggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 34px;
  }

  .grid4 {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   BOOKING FORM STYLES
   ================================================ */

/* Honeypot field - visually hidden but accessible to bots */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Required and optional field indicators */
.required {
  color: #dc2626;
  font-weight: 600;
}

.optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

/* Error messages */
.error-message {
  display: none;
  color: #dc2626;
  font-size: 13px;
  margin-top: 4px;
  padding-left: 2px;
}

.input:invalid:not(:placeholder-shown) + .error-message,
.select:invalid:not([value=""]) + .error-message {
  display: block;
}

/* Show error when form submitted with invalid fields */
.booking-form.submitted .input:invalid,
.booking-form.submitted .select:invalid,
.booking-form.submitted textarea:invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.booking-form.submitted .input:invalid + .error-message,
.booking-form.submitted .select:invalid + .error-message,
.booking-form.submitted textarea:invalid + .error-message {
  display: block;
}

/* Fieldset styling */
.fieldset {
  border: none;
  padding: 0;
  margin: 12px 0 0;
}

.fieldset legend.label {
  padding: 0;
  margin-bottom: 8px;
}

/* Checkbox group styling */
.checkbox-group {
  display: grid;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s ease;
  background: #fff;
}

.checkbox-label:hover {
  border-color: var(--blue2);
  background: var(--alt);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 14px;
  color: var(--text);
}

/* Selected checkbox styling */
.checkbox-label:has(input:checked) {
  border-color: var(--blue);
  background: rgba(20, 99, 214, 0.05);
}

/* Consent checkbox specific styling */
.consent-fieldset {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.consent-label {
  background: var(--alt);
}

.consent-label span {
  font-size: 13px;
  line-height: 1.4;
}

/* Availability error styling */
.booking-form.submitted .checkbox-group:has(input:not(:checked)):has(input:not(:checked)):has(input:not(:checked)):has(input:not(:checked)) + .error-message {
  display: block;
}

/* When at least one checkbox is checked, hide the error */
.checkbox-group:has(input:checked) + .error-message {
  display: none !important;
}

/* Form note */
.form-note {
  margin-top: 12px;
  text-align: center;
}

/* Input focus states for form */
.booking-form .input:focus,
.booking-form .select:focus,
.booking-form textarea:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 4px rgba(20, 99, 214, 0.12);
}

/* Valid input styling */
.booking-form .input:valid:not(:placeholder-shown),
.booking-form .select:valid:not([value=""]),
.booking-form textarea:valid:not(:placeholder-shown) {
  border-color: #16a34a;
}

/* Phone input pattern validation feedback */
.booking-form #phone:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}

.booking-form #phone:invalid:not(:placeholder-shown) + .error-message {
  display: block;
}

.booking-form #phone:valid {
  border-color: #16a34a;
}

.booking-form #phone:valid + .error-message {
  display: none;
}
