:root {
  --green: #5fbd22;
  --green-dark: #237b18;
  --mint: #eefbf3;
  --mint-soft: #f8fffb;
  --blue: #0877dd;
  --blue-bright: #07a7ea;
  --blue-deep: #073b99;
  --orange: #ffa400;
  --orange-deep: #f25a24;
  --ink: #082b5c;
  --muted: #596f86;
  --line: rgba(8, 119, 221, 0.18);
  --card: rgba(255, 255, 255, 0.9);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --shadow: 0 22px 64px rgba(6, 59, 153, 0.16);
  --soft-shadow: 0 14px 34px rgba(8, 43, 92, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 18% 6%, rgba(95, 189, 34, 0.10), transparent 26rem),
    radial-gradient(circle at 52% 0%, rgba(255, 164, 0, 0.10), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(7, 167, 234, 0.10), transparent 30rem),
    url("/philippine-beach-bg.png");
  background-color: #eaf6fc;
  background-blend-mode: normal;
  background-position:
    center,
    18% 6%,
    52% 0%,
    90% 8%,
    center top;
  background-repeat: no-repeat;
  background-size:
    cover,
    auto,
    auto,
    auto,
    cover;
  background-attachment: fixed;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(255, 164, 0, 0.28);
}

body::before,
body::after {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border: 0.28rem dashed rgba(95, 189, 34, 0.3);
  border-color: rgba(95, 189, 34, 0.3) transparent transparent transparent;
  border-radius: 50%;
  content: "";
}

body::before {
  right: -18rem;
  top: 18rem;
  width: 46rem;
  height: 18rem;
  transform: rotate(-16deg);
}

body::after {
  left: -20rem;
  bottom: 5rem;
  width: 52rem;
  height: 20rem;
  border-top-color: rgba(8, 119, 221, 0.22);
  transform: rotate(10deg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg, rgba(7, 59, 153, 0.96), rgba(8, 119, 221, 0.94), rgba(242, 90, 36, 0.94));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  overflow: hidden;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.utility-bar p,
.utility-bar a {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(8, 59, 153, 0.1);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 12px 34px rgba(8, 43, 92, 0.09);
}

main {
  position: relative;
  z-index: 1;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9rem) 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.65rem 0;
}

.brand {
  width: fit-content;
}

.brand img {
  width: auto;
  max-height: 4.35rem;
}

.nav-links,
.nav-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-links {
  justify-content: center;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 900;
}

.nav-links a {
  padding: 0.62rem 0.72rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(8, 119, 221, 0.1);
  color: var(--blue);
  outline: none;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-weight: 850;
  line-height: 1;
  min-width: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  background: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(242, 90, 36, 0.28);
}

.button-ghost {
  border-color: rgba(8, 59, 153, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-deep);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-section {
  position: relative;
  overflow: visible;
  padding: clamp(2.8rem, 5vw, 4.9rem) 1rem clamp(3rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(8, 119, 221, 0.04), rgba(7, 167, 234, 0.03) 42%, rgba(255, 164, 0, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(248, 255, 251, 0.14));
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: min(1080px, 100%);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.logo-lockup {
  display: none;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #05235b;
  font-size: clamp(2.25rem, 4.7vw, 3.85rem);
  line-height: 1.02;
  text-shadow: 0 3px 22px rgba(255, 255, 255, 0.8);
}

.hero-copy {
  max-width: 710px;
  margin: 0.95rem auto 0;
  color: #1d4567;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.6;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.78);
}

.benefit-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 920px;
  margin: 1.25rem auto 1.5rem;
}

.benefit-cloud span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(8, 43, 92, 0.09);
  backdrop-filter: blur(10px);
}

.booking-panel {
  width: min(980px, 100%);
  margin: 2.75rem auto 0;
  padding: clamp(1.05rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 255, 0.82)),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 74px rgba(8, 43, 92, 0.18);
  backdrop-filter: blur(16px) saturate(130%);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.stepper li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: #6b8295;
  font-size: 0.8rem;
  font-weight: 850;
}

.stepper li:not(:last-child)::after {
  position: absolute;
  top: 1rem;
  left: calc(50% + 1.25rem);
  width: calc(100% - 2.5rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 119, 221, 0.42), rgba(7, 167, 234, 0.34));
  content: "";
}

.step-button {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #dce8f4;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(8, 43, 92, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.step-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.step-button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(8, 43, 92, 0.16);
}

.step-button:focus-visible {
  outline: 3px solid rgba(255, 164, 0, 0.32);
  outline-offset: 3px;
}

.stepper .is-active .step-button {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.stepper .is-active {
  color: var(--blue-deep);
}

.stepper .is-complete .step-button {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.stepper .is-complete {
  color: var(--blue);
}

.destination-control label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--blue-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid #71828c;
  border-bottom: 2px solid #71828c;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  content: "";
}

.destination-control input {
  width: 100%;
  min-height: 3.85rem;
  padding: 1rem 2.75rem 1rem 1.05rem;
  border: 1px solid rgba(8, 43, 92, 0.16);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(8, 43, 92, 0.08);
}

.destination-control input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 107, 216, 0.14);
}

.destination-control p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-plan-panel[hidden] {
  display: none !important;
}

.inline-plan-panel,
.delivery-panel,
.final-panel {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(8, 119, 221, 0.12);
}

.delivery-panel[hidden],
.final-panel[hidden] {
  display: none !important;
}

.inline-plan-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  text-align: center;
}

.inline-plan-heading h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.inline-plan-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.inline-plan-option {
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.inline-plan-option:hover,
.inline-plan-option:focus-within {
  border-color: rgba(8, 119, 221, 0.42);
  box-shadow: 0 20px 44px rgba(6, 59, 153, 0.13);
  outline: none;
  transform: translateY(-1px);
}

.inline-plan-option.is-selected-plan {
  border-color: var(--orange);
  box-shadow: 0 22px 54px rgba(242, 90, 36, 0.18);
}

.plan-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
}

.booking-summary {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(8, 119, 221, 0.14);
  background: rgba(235, 247, 255, 0.82);
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.delivery-form {
  display: grid;
  gap: 1.05rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-grid label,
.choice-fieldset label {
  min-width: 0;
}

.form-grid span,
.choice-fieldset legend {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(8, 43, 92, 0.15);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 119, 221, 0.13);
}

.full-span {
  grid-column: 1 / -1;
}

.choice-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.choice-fieldset legend {
  margin-bottom: 0.65rem;
}

.form-error {
  margin: 0.55rem 0 0;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 850;
}

.other-contact-field[hidden] {
  display: none !important;
}

.other-contact-field {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.7rem;
  text-align: left;
}

.other-contact-field span {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.other-contact-field input {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(8, 43, 92, 0.15);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
}

.other-contact-field input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 119, 221, 0.13);
}

.choice-grid,
.payment-grid {
  display: grid;
  gap: 0.75rem;
}

.choice-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.choice-grid label,
.payment-grid label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid rgba(8, 43, 92, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8, 43, 92, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.choice-grid label:hover,
.payment-grid label:hover {
  border-color: rgba(8, 119, 221, 0.28);
  box-shadow: 0 12px 26px rgba(8, 43, 92, 0.1);
  transform: translateY(-1px);
}

.choice-grid input,
.payment-grid input {
  flex: 0 0 auto;
  margin-top: 0.12rem;
  accent-color: var(--orange);
}

.payment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-grid span {
  display: grid;
  gap: 0.25rem;
}

.payment-copy {
  min-width: 0;
}

.payment-badges {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.3rem !important;
  margin-bottom: 0.22rem;
}

.payment-badge {
  display: inline-grid;
  place-items: center;
  min-width: 2.45rem;
  height: 1.45rem;
  padding: 0 0.42rem;
  border-radius: 0.32rem;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
}

.cod-logo {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.visa-logo {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  letter-spacing: 0;
}

.mc-logo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 50%, #eb001b 0 38%, transparent 39%),
    radial-gradient(circle at 64% 50%, #f79e1b 0 38%, transparent 39%),
    #fffbf0;
  color: #1f2f46;
}

.card-logo {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.payment-grid strong {
  color: var(--blue-deep);
  line-height: 1.2;
}

.payment-grid small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.35;
}

.payment-grid label:has(input:disabled) {
  opacity: 0.58;
}

.delivery-submit {
  justify-self: center;
  min-width: min(100%, 16rem);
}

.final-summary {
  display: grid;
  gap: 0.7rem;
  padding: 1.05rem;
  border: 1px solid rgba(8, 119, 221, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(8, 43, 92, 0.08);
}

.final-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.final-summary strong {
  color: var(--blue-deep);
}

.final-reopen {
  margin-top: 0.9rem;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.modal-open {
  overflow: hidden;
}

.confirmation-modal[hidden] {
  display: none !important;
}

.confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.confirmation-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 24, 54, 0.48);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.confirmation-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: min(90vh, 46rem);
  overflow: auto;
  padding: clamp(1.2rem, 4vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 82px rgba(3, 27, 68, 0.28);
  color: var(--ink);
  outline: none;
}

.confirmation-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(8, 43, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.confirmation-dialog h2 {
  margin: 0;
  padding-right: 2rem;
  color: var(--blue-deep);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.06;
}

.confirmation-reference {
  width: fit-content;
  margin: 0.65rem 0 0;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(8, 119, 221, 0.08);
  color: var(--blue-deep) !important;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
}

.confirmation-dialog p {
  color: var(--muted);
  line-height: 1.6;
}

.confirmation-summary {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(8, 119, 221, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.confirmation-summary p {
  margin: 0;
}

.confirmation-summary strong {
  color: var(--blue-deep);
}

.confirmation-note {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.route {
  position: absolute;
  border: 0.34rem dashed rgba(8, 119, 221, 0.42);
  border-color: rgba(8, 119, 221, 0.42) transparent transparent transparent;
  pointer-events: none;
}

.route-one {
  right: -8rem;
  top: -5rem;
  width: 36rem;
  height: 16rem;
  border-radius: 50%;
  transform: rotate(-4deg);
  border-top-color: rgba(255, 164, 0, 0.55);
}

.route-two {
  left: -12rem;
  bottom: -6rem;
  width: 50rem;
  height: 20rem;
  border-radius: 50%;
  transform: rotate(13deg);
  border-top-color: rgba(95, 189, 34, 0.45);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.7rem, 7vw, 5.8rem) 0;
}

.section[hidden] {
  display: none !important;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.15rem;
  text-align: center;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.section-heading p:last-child,
.contact-band p {
  color: var(--muted);
  line-height: 1.65;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  padding: 1.4rem;
  border: 1px solid rgba(8, 43, 92, 0.12);
  border-radius: 0.5rem;
  background: var(--card);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(10px);
}

.plan-card.featured {
  border-color: rgba(255, 138, 0, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(255, 255, 255, 0.95)),
    #fff;
  box-shadow: 0 22px 52px rgba(255, 138, 0, 0.16);
}

.plan-card.featured::before {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.14);
  color: #a64e00;
  font-size: 0.74rem;
  font-weight: 900;
  content: "Popular";
}

.plan-card.is-selected-detail {
  border-color: var(--orange);
  box-shadow: 0 22px 54px rgba(242, 90, 36, 0.18);
}

.plan-label {
  margin: 0 0 0.8rem;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  min-height: 3.8rem;
  margin: 0;
  padding-right: 4.5rem;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.price {
  margin-top: 1rem;
  color: var(--blue-deep);
  font-size: 3.05rem;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  margin: 0.4rem 0 1rem;
  color: var(--green-dark);
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 0 0 1.3rem;
  padding: 0;
  color: #425869;
  line-height: 1.4;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 1.25rem;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  top: 0.43rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--blue-bright));
  content: "";
}

.button-card {
  width: 100%;
  margin-top: auto;
  border-color: rgba(8, 107, 216, 0.18);
  background: rgba(249, 252, 255, 0.92);
  color: var(--blue-deep);
}

.button-featured {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
}

.booking-plan-card {
  min-height: 24rem;
  color: var(--ink);
  user-select: none;
}

.booking-plan-card .plan-select-indicator {
  pointer-events: none;
}

.booking-plan-card.is-selected-plan .plan-select-indicator {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-grid article {
  padding: 1.35rem;
  border: 1px solid rgba(8, 119, 221, 0.1);
  border-left: 4px solid var(--blue);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.work-grid span {
  color: var(--orange);
  font-weight: 900;
}

.work-grid h3 {
  margin: 0.55rem 0 0.45rem;
  font-size: 1.35rem;
}

.work-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2.2rem);
  padding: clamp(1.8rem, 4vw, 2.65rem);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(7, 59, 153, 0.34), rgba(7, 167, 234, 0.18) 58%, rgba(242, 90, 36, 0.24)),
    rgba(7, 59, 153, 0.12);
  color: #fff;
  box-shadow: 0 20px 56px rgba(6, 59, 153, 0.16);
  backdrop-filter: blur(8px) saturate(130%);
  position: relative;
  z-index: 0;
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(3, 27, 68, 0.34);
}

.contact-band h2,
.contact-details {
  text-shadow: 0 2px 14px rgba(3, 27, 68, 0.42);
}

.contact-band p {
  margin-bottom: 0;
}

.contact-logo {
  width: min(14rem, 48vw);
  max-width: 100%;
}

.contact-actions {
  flex-direction: column;
  align-items: flex-end;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.contact-buttons .button {
  min-width: 8.7rem;
}

.contact-details {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  font-style: normal;
  line-height: 1.45;
}

.contact-details {
  color: rgba(255, 255, 255, 0.9);
}

.contact-details a {
  width: fit-content;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-details small {
  font-size: 0.78em;
  font-weight: 750;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-page-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}

.faq-category {
  display: grid;
  gap: 0.9rem;
}

.faq-category + .faq-category {
  margin-top: 1.2rem;
}

.faq-category h2 {
  margin: 1.2rem 0 0.1rem;
  color: var(--blue-deep);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

details {
  border: 1px solid rgba(8, 43, 92, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

summary {
  cursor: pointer;
  padding: 1.12rem;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  line-height: 1.62;
}

.faq-grid details ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0 1.1rem 1.1rem 2.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-grid details p + ul,
.faq-grid details p + p {
  margin-top: -0.45rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid rgba(8, 43, 92, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.policy-summary img {
  width: min(13rem, 100%);
}

.policy-summary p {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 900;
}

.policy-summary a,
.policy-summary address,
.policy-list a {
  color: var(--blue-deep);
}

.policy-summary a,
.policy-list a {
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.policy-summary address {
  margin: 0;
  font-style: normal;
  line-height: 1.5;
}

.policy-list {
  display: grid;
  gap: 0.85rem;
}

.policy-list details {
  background: rgba(255, 255, 255, 0.88);
}

.policy-list ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0 1.1rem 1.1rem 2.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.policy-list details p + ul,
.policy-list details p + p {
  margin-top: -0.45rem;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .plan-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }
}

/* Hamburger hidden on desktop; shown inside the mobile media query below */
.nav-hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 700px) {
  body {
    background-attachment: scroll;
  }

  /* ── Utility bar ── */
  .utility-bar {
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: center;
  }

  /* ── Nav: minimalist hamburger ── */
  .nav-shell {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 0;
  }

  .brand {
    width: fit-content;
    margin: 0;
  }

  .brand img {
    max-height: 3rem;
  }

  /* Hide desktop links and action buttons on mobile */
  .nav-links,
  .nav-actions {
    display: none !important;
  }

  /* Show hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.4rem;
    transition: background 0.2s;
  }

  .nav-hamburger:hover {
    background: rgba(8, 119, 221, 0.1);
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile drawer menu */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(8, 59, 153, 0.1);
    backdrop-filter: blur(12px);
    gap: 0;
  }

  .mobile-menu[hidden] {
    display: none !important;
  }

  .mobile-menu a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-deep);
    border-bottom: 1px solid rgba(8, 59, 153, 0.08);
  }

  .mobile-menu a:last-of-type {
    border-bottom: none;
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--blue);
  }

  .mobile-menu-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .mobile-menu-actions .button {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.88rem;
  }

  /* ── Hero ── */
  .hero-section {
    min-height: auto;
    padding: 1.5rem 1rem 2rem;
  }

  .hero-inner {
    gap: 1rem;
  }

  h1 {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-inline: auto;
  }

  .hero-copy {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* ── Benefit chips: compact, 3 per row ── */
  .benefit-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    max-width: 100%;
  }

  .benefit-cloud span {
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  /* ── Booking panel ── */
  .booking-panel {
    padding: 1.25rem 1rem;
  }

  /* ── Stepper: 4 steps in a single row, compact ── */
  .stepper {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
  }

  .stepper li {
    flex: 1;
    font-size: 0.65rem;
    padding-top: 0.5rem;
  }

  .stepper li:not(:last-child)::after {
    display: block;
    top: 1.1rem;
    width: calc(100% - 1.5rem);
    left: calc(50% + 0.75rem);
  }

  /* ── Plan cards, work grid, faq ── */
  .plan-grid,
  .work-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-card h3 {
    min-height: 0;
  }

  /* ── Booking flow ── */
  .booking-panel,
  .section,
  .contact-band {
    max-width: 100%;
    overflow: visible;
  }

  .destination-control input {
    font-size: 0.92rem;
  }

  .inline-plan-grid {
    grid-template-columns: 1fr;
  }

  .booking-plan-card {
    min-height: 0;
    padding: 1rem;
    text-align: left;
  }

  .form-grid,
  .choice-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* ── Contact band ── */
  .contact-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
  }

  .contact-band h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .contact-logo {
    justify-self: center;
    width: min(10rem, 55vw);
  }

  .contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .contact-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
  }

  .contact-buttons .button {
    flex: 1;
    max-width: 10rem;
    min-width: 0;
    text-align: center;
  }

  .contact-details {
    text-align: left;
  }
}

/* Custom autocomplete dropdown */
.destination-wrap {
  position: relative;
}

.destination-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 9999;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(8, 43, 92, 0.18);
  border-radius: 0.5rem;
  box-shadow: 0 12px 36px rgba(8, 43, 92, 0.15);
  max-height: 240px;
  overflow-y: auto;
}

.destination-suggestions[hidden] {
  display: none !important;
}

.destination-suggestions li {
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.3;
  border-bottom: 1px solid rgba(8, 43, 92, 0.06);
}

.destination-suggestions li:last-child {
  border-bottom: none;
}

.destination-suggestions li:hover,
.destination-suggestions li.is-active-suggestion {
  background: rgba(8, 119, 221, 0.08);
  color: var(--blue-deep);
}

.destination-suggestions li mark {
  background: none;
  color: var(--blue);
  font-weight: 700;
}

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

/* ─────────────────────────────────────────
   CONTAINER UTILITY
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ─────────────────────────────────────────
   SCREEN READER ONLY
───────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─────────────────────────────────────────
   PAGE HERO (shared by Reviews & Blog)
───────────────────────────────────────── */
.page-hero {
  padding: 7rem 0 3.5rem;
  background: transparent;
  text-align: center;
}

.page-hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero .page-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   BLOG HERO (existing blog listing page)
───────────────────────────────────────── */
.blog-hero {
  padding: 7rem 1.5rem 3.5rem;
  background: transparent;
  text-align: center;
}

.blog-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.blog-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.875rem;
}

.blog-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.blog-section {
  padding: 3rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   REVIEWS PAGE
───────────────────────────────────────── */
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.reviews-score-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.reviews-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.reviews-count {
  font-size: 0.875rem;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
}

.review-location {
  font-size: 0.775rem;
  color: var(--muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

.reviews-cta-wrap {
  text-align: center;
  padding: 2rem 0 1rem;
}

.reviews-cta-wrap p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────
   BLOG LISTING PAGE
───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

/* stale wrapper — no longer used in HTML but kept harmless */
.blog-card-body {
  display: contents;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.blog-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(8, 119, 221, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  display: inline-block;
}

.blog-read-time {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-title {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 auto;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--blue);
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.blog-card-author {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-link,
.blog-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: block;
  padding-top: 0.875rem;
  text-align: center;
}

.blog-card-link:hover,
.blog-read-more:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────
   BLOG POST PAGE
───────────────────────────────────────── */
.blog-post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}

.blog-post-header {
  margin-bottom: 2.5rem;
}

.blog-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.blog-back:hover {
  text-decoration: underline;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-post-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.blog-post-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
  line-height: 1.3;
}

.blog-post-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.125rem;
}

.blog-post-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.blog-post-cta p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 700px) {
  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 5.5rem 0 2.5rem;
  }

  .blog-post-wrap {
    padding: 5rem 1rem 3.5rem;
  }
}

/* ─────────────────────────────────────────
   SUBMISSION LOADING OVERLAY
───────────────────────────────────────── */
.submission-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.submission-overlay[hidden] {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.submission-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(8, 119, 221, 0.15);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.submission-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* ─── Rental dates fieldset ─── */
.rental-dates-fieldset {
  margin-bottom: 1.25rem;
}

.rental-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .rental-dates-grid {
    grid-template-columns: 1fr;
  }
}

.rental-dates-fieldset label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.rental-dates-fieldset input[type="date"] {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-size: 0.925rem;
  color: var(--ink);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.rental-dates-fieldset input[type="date"]:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.faq-privacy-link {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.faq-privacy-link p {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-privacy-link a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
