

:root {
  --bg: #0a1428;
  --card: rgba(255, 255, 255, 0.04);
  --muted: #a2bade;
  --text: #f0f5ff;
  --accent: #ffd37a;
  --accent2: #5eead4;
  --danger: #ff5a6a;
  --ok: #3ee27b;

  --radius: 24px;
  --shadow: 0 16px 40px rgba(0, 0, 0, .25);
  --max: 1120px;
  --font: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text)
}

html {
  scroll-behavior: smooth
}

/* Subtle premium background */
body {
  background:
    radial-gradient(100vw 100vh at 15% 10%, rgba(94, 234, 212, 0.12), transparent 60%),
    radial-gradient(100vw 100vh at 85% 5%, rgba(255, 211, 122, 0.15), transparent 60%),
    radial-gradient(80vw 100vh at 50% 90%, rgba(0, 102, 255, 0.15), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image:
    radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 24px 24px;
  mix-blend-mode: overlay;
  z-index: -1;
}

::selection {
  background: rgba(255, 211, 122, .30);
  color: var(--text)
}

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

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

button,
input,
select,
textarea {
  font-family: inherit
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px
}

.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: calc(100% - 32px);
  z-index: 20;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: var(--max);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  min-width: 200px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  opacity: .85;
  padding: 8px 16px;
  border-radius: 999px;
  transition: .15s all;
  font-weight: 600;
  font-size: .95rem;
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .10);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 200px;
  justify-content: flex-end;
}

.btn {
  border: 1px solid rgba(255, 255, 255, .05);
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-weight: 600;
  transition: .2s all;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 211, 122, .25), 0 0 0 1px rgba(255, 255, 255, .18) inset;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffb259);
  color: #111;
  font-weight: 800;
  border: none;
}

.btn.primary:hover {
  opacity: .95;
  box-shadow: 0 8px 25px rgba(255, 211, 122, .3);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25)
}

.btn.small {
  padding: 9px 16px;
  font-size: .92rem
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  margin: 4px 6px;
  border-radius: 999px;
  background: rgba(94, 234, 212, .12);
  border: 1px solid rgba(94, 234, 212, .25);
  color: var(--accent2);
  font-weight: 800;
  font-size: .85rem;
  vertical-align: middle;
}

.nav+* {
  margin-top: 130px;
}

.nav+.hero {
  margin-top: 0;
  padding-top: 130px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 211, 122, .22), transparent 45%),
    linear-gradient(to bottom, rgba(11, 18, 32, .35), rgba(11, 18, 32, .78));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 46px 0;
}

.hero-logo {
  width: 110px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .10));
}

.hero-title {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  margin: 0 0 10px;
  font-weight: 1000;
  letter-spacing: .6px;
  text-shadow: 0 10px 25px rgba(0, 0, 0, .45);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero-sub {
  color: rgba(234, 240, 255, .88);
  margin: 0 auto 18px;
  max-width: 780px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px
}

.section {
  padding: 54px 0
}

.section h2 {
  margin: 0 0 12px;
  font-size: 1.9rem
}

.section p {
  color: rgba(234, 240, 255, .82);
  line-height: 1.6
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .45);
  border-color: rgba(255, 255, 255, .25);
}

.card.soft {
  box-shadow: none
}

.card h3 {
  margin: 0 0 8px
}

.muted {
  color: rgba(234, 240, 255, .72)
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.kv:last-child {
  border-bottom: 0
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(234, 240, 255, .70);
  font-size: .95rem;
}

.footer a {
  opacity: .9
}

.footer a:hover {
  opacity: 1
}

/* ORDER PAGE */
.order-wrap {
  padding: 24px 0 62px
}

.stepper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.step {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(234, 240, 255, .85);
  font-weight: 900;
  font-size: .92rem;
}

.step.active {
  background: rgba(255, 211, 122, .18);
  border-color: rgba(255, 211, 122, .30);
  color: var(--accent);
}

.step.done {
  background: rgba(62, 226, 123, .14);
  border-color: rgba(62, 226, 123, .22);
  color: var(--ok);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

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

.field label {
  display: block;
  font-weight: 900;
  margin: 0 0 7px
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
  color: var(--text);
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(255, 255, 255, .20)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 211, 122, .40);
  box-shadow: 0 0 0 3px rgba(255, 211, 122, .16);
  background: rgba(0, 0, 0, .22);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto
  }

  .btn,
  .card.hover,
  .hero video {
    transition: none !important;
    animation: none !important
  }
}

.field textarea {
  min-height: 92px;
  resize: vertical
}

.help {
  font-size: .92rem;
  color: rgba(234, 240, 255, .70);
  margin-top: 6px
}

.error {
  color: var(--danger);
  font-weight: 900;
  margin-top: 8px
}

.qty {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qty button {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
}

.qty span {
  min-width: 40px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 1000;
}

.pricebox {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

.price-big {
  font-size: 1.6rem;
  font-weight: 1000
}

.split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
}

@media (max-width:980px) {
  .split {
    grid-template-columns: 1fr
  }
}

.notice {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(94, 234, 212, .08);
  color: rgba(234, 240, 255, .92);
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media (max-width:760px) {
  .pay-grid {
    grid-template-columns: 1fr
  }
}

.pay-btn {
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.pay-btn:hover {
  background: rgba(255, 255, 255, .10)
}

.hr {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 14px 0
}



.pay-btn .muted {
  color: rgba(234, 240, 255, .72);
}

/* Date range picker (flatpickr) */
.date-range-input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
  color: var(--text);
  font-weight: 800;
}

.flatpickr-calendar {
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  background: rgba(16, 26, 46, .98) !important;
  box-shadow: var(--shadow) !important;
}

.flatpickr-day,
.flatpickr-weekday,
.flatpickr-current-month {
  color: var(--text) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
  background: rgba(255, 211, 122, .25) !important;
  border-color: rgba(255, 211, 122, .35) !important;
  color: var(--text) !important;
}

.flatpickr-day.today {
  border-color: rgba(94, 234, 212, .55) !important;
}

.flatpickr-day:hover {
  background: rgba(255, 255, 255, .10) !important;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
}

#accessMap {
  height: 360px;
  width: 100%;
}

.map-legend {
  margin-top: 10px;
  color: rgba(234, 240, 255, .72);
  font-size: .95rem;
}

/* Access point legend */
.legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
  color: rgba(234, 240, 255, .80);
  font-size: .95rem;
}

.legend .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, .25);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .25);
}

.legend .dot.yellow {
  background: rgba(255, 211, 122, .95);
}

.legend .dot.red {
  background: rgba(255, 90, 106, .95);
}

.legend .dot.blue {
  background: rgba(86, 156, 255, .95);
}

.nav-links a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* FAQ + bullets */
.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
}

.bullets li {
  margin: 10px 0;
  color: rgba(234, 240, 255, .88);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .14);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  margin-top: 10px;
  color: rgba(234, 240, 255, .84);
  line-height: 1.5;
}

/* Vimeo hero background */
.hero-video.vimeo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video.vimeo-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-aspect-ratio: 16/9) {
  .hero-video.vimeo-bg iframe {
    width: 160vw;
    height: 120vh;
  }
}

@media (min-aspect-ratio: 16/9) {
  .hero-video.vimeo-bg iframe {
    width: 120vw;
    height: 160vh;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}


/* ------------------------------------------------------------
   Responsive improvements (mobile + tablet)
   ------------------------------------------------------------ */

/* Tablets */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    border-radius: 20px;
    top: 10px;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .nav-inner {
    padding: 12px 16px;
    display: block;
    position: relative;
  }

  .brand {
    gap: 10px;
    min-width: auto;
    justify-content: center;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 20px;
  }

  .nav-links {
    width: 100%;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav-cta {
    width: 100%;
    flex: none;
    justify-content: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav.nav-open .nav-links {
    max-height: 400px;
    opacity: 1;
    padding-top: 14px;
    padding-bottom: 6px;
  }

  .nav.nav-open .nav-cta {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 8px;
  }

  .hero {
    min-height: 70vh;
  }

  /* Stack card grids on tablets for easier reading */
  .grid {
    grid-template-columns: 1fr;
  }

  .grid>* {
    grid-column: 1 / -1 !important;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split>* {
    grid-column: 1 / -1 !important;
  }

  .pay-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 16px;
  }
}

/* Phones */
@media (max-width: 640px) {
  body {
    font-size: 15px;
    text-align: center;
  }

  .container {
    padding: 0 14px;
  }

  .nav-inner {
    padding: 12px 10px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    position: absolute;
    left: 18px;
    top: 14px;
    width: 44px;
    height: 44px;
  }

  .mobile-toggle {
    right: 18px;
    top: 18px;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn.small {
    padding: 10px 14px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .card {
    padding: 14px;
  }

  /* One column layouts + make the "How it works" rows easy to read */
  .grid {
    grid-template-columns: 1fr;
  }

  .kv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
  }

  .kv>div:last-child {
    text-align: center;
    opacity: .95;
  }

  .stepper {
    gap: 8px;
  }

  .blog-hero-content {
    display: flex !important;
    flex-direction: column;
  }

  .blog-hero-content img {
    height: 220px !important;
  }

  .blog-hero-text {
    padding: 24px 16px 20px !important;
  }

  .step {
    font-size: .95rem;
    padding: 8px 10px;
  }

  .price-big {
    font-size: 2.1rem;
  }

  .qty {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .date-range-input {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .map-wrap {
    border-radius: 14px;
  }

  #map {
    height: 320px !important;
  }

  .footer .container {
    padding: 18px 14px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.8rem;
  }

  #map {
    height: 280px !important;
  }

  .nav-links {
    font-size: .9rem;
  }
}



/* --- Stay type page --- */
.stay-card {
  max-width: 900px;
  margin: 48px auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .20));
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.stay-badge {
  display: inline-block;
  margin: 6px auto 10px auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .9;
}

.stay-title {
  text-align: center;
  margin: 10px 0 8px 0;
  font-size: 34px;
  letter-spacing: .3px;
}

.stay-lead {
  text-align: center;
  opacity: .85;
  margin: 0 0 18px 0;
}

.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stay-option {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  text-align: left;
}

.stay-option:hover {
  background: rgba(255, 255, 255, .10);
}

.stay-icon {
  font-size: 56px;
  line-height: 1;
}

.stay-label {
  font-size: 18px;
  font-weight: 700;
}

.stay-sub {
  font-size: 14px;
  opacity: .85;
  margin-top: 4px;
}

.stay-note {
  text-align: center;
  opacity: .85;
  margin-top: 18px;
}

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

  .stay-title {
    font-size: 28px;
  }
}

/* Ensure the stay page text is crisp/white */
.order-page .stay-card,
.order-page .stay-title,
.order-page .stay-lead,
.order-page .stay-label,
.order-page .stay-sub,
.order-page .stay-note,
.order-page .stay-badge {
  color: #fff;
}

.order-page .stay-lead,
.order-page .stay-sub,
.order-page .stay-note {
  opacity: .9;
}


/* Stay selection icons */
.stay-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
}

/* ------------------------------------------------------------
   Map markers
------------------------------------------------------------ */

/* Distinct marker for the user's entered address */
.bb-address-marker {
  position: relative;
  width: 22px;
  height: 22px;
  background: #ff3b30;
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.bb-address-marker::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 6px;
  left: 6px;
}

/* --- Order Stay Page polish (legacy / unused v2 layout) --- */
.stay-hero2 {
  margin: 28px auto 18px;
  max-width: 1100px;
  padding: 18px 18px 0;
}

.stay-hero2 h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 10px;
}

.stay-hero2 p {
  opacity: 0.9;
  margin: 0;
  max-width: 820px;
}

.stay-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 0 18px 24px;
}

@media (max-width: 820px) {
  .stay-grid2 {
    grid-template-columns: 1fr;
  }
}

.stay-card2 {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(1200px 500px at 30% 0%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stay-card2:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.stay-card2 .stay-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.stay-card2 .stay-content {
  padding: 16px 16px 18px;
}

.stay-card2 h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.stay-card2 p {
  margin: 0 0 14px;
  opacity: 0.9;
}

.stay-card2 .stay-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}


/* ------------------------------------------------------------
   Condo page (order-condo.html)
------------------------------------------------------------ */

.order-modal-overlay {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 14px;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(120, 255, 230, .18), rgba(0, 0, 0, 0)),
    radial-gradient(900px 420px at 82% 18%, rgba(120, 190, 255, .16), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(4, 14, 32, .95), rgba(2, 8, 18, .98));
}

.order-modal {
  width: min(1100px, 96vw);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .25));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  backdrop-filter: blur(10px);
  /* Allow native <select> dropdowns to open outside the modal (prevents clipped option lists). */
  overflow: visible;
  position: relative;
}

.order-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.order-modal-close:hover {
  background: rgba(255, 255, 255, .10)
}

.order-modal-header {
  padding: 20px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.order-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

.order-title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: .2px;
}

.order-modal-body {
  padding: 16px 18px 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: start;
}

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

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  letter-spacing: .2px;
}

.help-text {
  margin-top: 2px;
  opacity: .86;
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
}

.customer-address-input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  padding: 12px 44px 12px 14px;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

select.customer-address-input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .85) 50%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, .0), rgba(255, 255, 255, .0));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    calc(100% - 44px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 28px;
  background-repeat: no-repeat;
}

/* Dropdown list items: browsers often use a white menu background;
   make sure option text stays readable (was white-on-white). */
select.customer-address-input option {
  color: #111;
  background: #fff;
}

.customer-address-input:focus {
  border-color: rgba(120, 255, 230, .55);
  box-shadow: 0 0 0 4px rgba(120, 255, 230, .12);
}

.selected-access-point {
  margin-top: 14px;
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
}

.condo-map {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
}

.map-wrap {
  position: relative;
  margin-top: 14px;
}

.map-wrap .condo-map {
  margin-top: 0;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(4, 14, 32, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 5;
}

.map-loading.is-hidden {
  display: none;
}

.map-loading-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(16, 34, 46, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.map-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 211, 122, 0.95);
  animation: bbspin 0.9s linear infinite;
}

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

.map-loading-title {
  font-weight: 900;
  letter-spacing: .2px;
}

.map-loading-sub {
  font-size: 13px;
  opacity: .9;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .condo-map {
    height: 340px;
  }
}

.condo-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.condo-actions--top {
  margin-top: 8px;
  margin-bottom: 6px;
}

/* Nicer CTA button for order-condo */
.bb-next-btn {
  width: min(520px, 100%);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, rgba(255, 211, 122, 0.95), rgba(255, 112, 89, 0.95));
  color: #0b1020;
  font-weight: 1000;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform .12s ease, filter .12s ease, opacity .12s ease;
}

.bb-next-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.bb-next-btn:active {
  transform: translateY(0px);
}

.bb-next-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(0.1);
  box-shadow: none;
}

/* Custom markers so we can change selected color */
.bb-marker {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.bb-marker.bb-condo {
  background: #E53935;
}

.bb-marker.bb-access {
  background: #2F6FED;
}

.bb-marker.bb-access.is-selected {
  background: #FFD84D;
  border-color: rgba(0, 0, 0, 0.55);
}

.condo-recommended {
  opacity: .92;
  color: rgba(255, 255, 255, .95);
}

.stay-card2 .stay-cta.primary {
  background: linear-gradient(90deg, rgba(255, 173, 105, 0.95), rgba(255, 112, 89, 0.95));
  color: #0b1020;
  border-color: rgba(255, 255, 255, 0.12);
}



/* Outline buttons */
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .18);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .10);
}

/* Popular options dropdown (no yellow outline on the control) */
.bb-dropdown {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.bb-dropdown-summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  list-style: none;
}

.bb-dropdown-summary::-webkit-details-marker {
  display: none;
}

.bb-dropdown-panel {
  padding: 12px 14px 14px;
}

.bb-select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  color: var(--text);
}

.bb-select option {
  background: #0b1020;
}

/* =============================
   Oceanfront modal
   ============================= */
.bb-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
}

.bb-modal-overlay.is-open {
  display: flex;
}

.bb-modal {
  width: min(640px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(20, 28, 44, .98), rgba(14, 18, 30, .96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
  padding: 22px 22px 18px;
  position: relative;
  transform: translateY(6px);
  animation: bbModalIn .14s ease-out both;
}

@keyframes bbModalIn {
  from {
    opacity: .0;
    transform: translateY(14px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bb-modal-title {
  margin: 2px 0 12px;
  font-size: 24px;
  letter-spacing: .2px;
}

.bb-modal-text {
  margin: 0 0 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
}

.bb-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.bb-modal-close:hover {
  background: rgba(255, 255, 255, .10);
}

.bb-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  min-height: 52px;
}

.bb-modal-btn:hover {
  background: rgba(255, 255, 255, .14);
}

.bb-modal-btn:active {
  transform: translateY(1px);
}

.bb-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 560px) {
  .bb-modal {
    padding: 18px 16px 14px;
  }

  .bb-modal-title {
    font-size: 22px;
  }

  .bb-modal-actions {
    grid-template-columns: 1fr;
  }
}

/* =============================
   Condo dropdown form
   ============================= */
.bb-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.bb-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .86);
}

.bb-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  color: var(--text);
  outline: none;
}

.bb-input:focus {
  border-color: rgba(255, 255, 255, .28);
}

.bb-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.bb-help {
  min-height: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

/* =============================
   Condo page (IOPBeachChair-style)
   ============================= */
body.condo-io {
  background: var(--bg);
  color: var(--text);
}

body.condo-io .order-header {
  display: none;
}

.condo-io-wrap {
  max-width: 1200px;
}

.condo-io-card {
  position: relative;
  background: rgba(16, 26, 46, .94);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 34px 36px 28px;
  box-shadow: var(--shadow);
}

.condo-io-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.condo-io-close:hover {
  background: rgba(255, 255, 255, .10);
}

.condo-io-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.condo-io-logo {
  height: 56px;
  width: auto;
}

.condo-io-title {
  font-family: var(--font);
  font-size: 44px;
  color: var(--text);
  text-align: center;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .2px;
}

.condo-io-form {
  max-width: 980px;
  margin: 0 auto 10px;
}

.condo-io-input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.condo-io-input::placeholder {
  color: rgba(234, 240, 255, .55);
}

.condo-io-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.condo-io-unit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.condo-io-unit-label {
  font-size: 15px;
  color: rgba(234, 240, 255, .72);
  text-transform: lowercase;
}

.condo-io-unit-controls {
  width: min(540px, 100%);
}

.condo-io-selected {
  text-align: center;
  margin: 14px 0 8px;
  color: rgba(234, 240, 255, .90);
}

.condo-io-selected strong {
  font-weight: 700;
}

.condo-io-map {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(11, 18, 32, .55);
}

.condo-io-mapbar {
  display: flex;
  gap: 8px;
  padding: 10px;
}

.condo-io-mapbtn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(11, 18, 32, .65);
  color: rgba(234, 240, 255, .92);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.condo-io-mapbtn.is-active {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .10);
}

.condo-io-mapframe {
  height: 360px;
  background: rgba(0, 0, 0, .15);
}

.condo-io-mapframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.condo-io-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.condo-io-btn {
  padding: 12px 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff9b8f);
  color: #1b1b1b;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.condo-io-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.condo-io-link {
  background: transparent;
  border: 0;
  color: rgba(234, 240, 255, .70);
  cursor: pointer;
  text-decoration: underline;
}

.condo-io-alt {
  width: min(540px, 100%);
}

.condo-io-status {
  min-height: 18px;
  color: rgba(234, 240, 255, .72);
  font-size: 14px;
  text-align: center;
  max-width: 760px;
}

@media (max-width: 720px) {
  .condo-io-card {
    padding: 24px 16px 18px;
  }

  .condo-io-title {
    font-size: 34px;
  }

  .condo-io-unit-row {
    flex-direction: column;
    gap: 8px;
  }

  .condo-io-close {
    top: 12px;
    right: 12px;
  }
}


/* --- Mobile modal fix (keeps popup fully on screen) --- */
* {
  box-sizing: border-box;
}

.modal-overlay,
.popup-overlay,
.dialog-overlay {
  position: fixed;
  inset: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal,
.popup,
.dialog,
.modal-content {
  width: min(520px, calc(100vw - 32px));
  max-width: 520px;
  margin: 0 auto;
}

.modal-actions,
.popup-actions,
.dialog-actions,
.modal-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.modal-actions button,
.popup-actions button,
.dialog-actions button,
.modal-buttons button {
  flex: 1 1 160px;
  min-width: 0;
}


/* --- How It Works polish --- */
.kv {
  padding: 10px 0;
}

.kv>div:first-child {
  font-weight: 600;
}

.kv .muted {
  text-transform: none;
}



/* =============================
   Cleaner phone layout for access selection
   ============================= */
#selectedAccessCard {
  margin-bottom: 10px;
}

.selected-access-emphasis {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.selected-access-emphasis .selected-access-label,
.selected-access-emphasis strong {
  font-size: 1.08em;
  font-weight: 900;
  letter-spacing: .2px;
  white-space: nowrap;
}

.selected-access-emphasis #selectedName {
  font-weight: 800;
  text-align: right;
}

#mapPriorityBlock .map-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
}

@media (max-width: 740px) {
  .order-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .order-wrap > h1,
  .order-wrap > p {
    text-align: center;
  }

  body.is-day-flow .order-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.is-day-flow .order-wrap > h1 {
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 6px 0 8px !important;
  }

  body.is-day-flow #pageSubtitle {
    margin: 0 auto 12px !important;
    font-size: .98rem;
    line-height: 1.32;
    max-width: 330px;
    color: rgba(236,242,255,.9);
  }

  body.is-day-flow .split {
    gap: 8px;
  }

  body.is-day-flow .day-flow-actions {
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
  }

  body.is-day-flow .address-actions {
    margin-top: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px !important;
  }

  body.is-day-flow .day-flow-actions .btn {
    min-height: 58px;
    padding: 14px 16px;
    justify-content: center;
    font-size: 1.03rem;
    font-weight: 800;
    letter-spacing: -.01em;
    box-shadow: none;
  }

  body.is-day-flow .day-flow-actions #backBtn {
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.08);
  }

  body.is-day-flow .day-flow-actions #nextBtn {
    box-shadow: 0 10px 26px rgba(255, 191, 87, .22);
  }

  body.is-day-flow #resultsWrap {
    margin-top: 8px !important;
  }

  #selectedAccessCard {
    margin-bottom: 10px !important;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .selected-access-emphasis {
    font-size: 1.08rem;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(88, 154, 194, 0.18), rgba(64, 113, 151, 0.14));
    border: 1px solid rgba(146, 213, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 20px rgba(0,0,0,.14);
    gap: 10px;
  }

  .selected-access-emphasis .selected-access-label,
  .selected-access-emphasis strong {
    font-size: 1.1em;
  }

  .selected-access-emphasis #selectedName {
    font-size: 1.08em;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #mapPriorityBlock .map-title {
    font-size: 1.24rem;
    text-align: center;
    margin: 0 0 8px !important;
  }

  .map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
  }

  #accessMap {
    height: 330px;
  }

  .map-legend {
    margin-top: 8px;
    font-size: .96rem;
    text-align: center;
    color: rgba(236,242,255,.82);
  }

  #quickNotesCard {
    margin-top: 10px !important;
    margin-bottom: 8px !important;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  }

  #quickNotesCard h3 {
    font-size: 1.02rem;
    margin-bottom: 8px !important;
    text-align: center;
  }

  #quickNotesCard .notice {
    margin-bottom: 8px !important;
    padding: 12px 13px;
    border-radius: 16px;
  }

  #quickNotesCard .legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-top: 10px;
  }

  #quickNotesCard .legend .item:last-child {
    grid-column: 1 / -1;
  }

  #quickNotesCard .muted,
  .map-legend,
  .legend {
    font-size: .95rem;
  }

  .mobile-priority-layout .hr {
    display: none;
  }

  #oceanfront-note {
    margin-top: 6px !important;
  }

  body.is-day-flow #quickNotesCard {
    order: 4;
  }

  body.is-day-flow #suggestedTitle {
    margin: 8px 0 8px !important;
    text-align: center;
    font-weight: 800;
    font-size: .98rem;
    color: rgba(236,242,255,.9);
  }

#lodgingModal .bb-modal {
    width: min(96vw, 430px);
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  #lodgingModal .bb-modal-title {
    font-size: 2rem;
    line-height: 1.1;
    margin: 2px 42px 16px 0;
  }

  #lodgingModal .bb-modal-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #lodgingModal .bb-modal-btn {
    min-height: 68px;
    padding: 18px 18px;
    border-radius: 18px;
    font-size: 1.26rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  }

  #lodgingModal .bb-modal-close {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}



/* Mobile: date picker polish for gear page */
.bb-date-card {
  border-radius: 22px;
}

.bb-date-title {
  letter-spacing: -.01em;
}

@media (max-width: 768px) {
  .bb-date-card {
    padding: 16px !important;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
  }

  .bb-date-title {
    font-size: 1.12rem;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }

  .bb-date-card .muted {
    font-size: .97rem;
    line-height: 1.35;
    margin-bottom: 12px !important;
  }

  .booqable-datepicker,
  .booqable-component-datepicker,
  .bb-airbnb-datepicker {
    border-radius: 20px;
    overflow: visible;
  }

  .booqable-datepicker input,
  .booqable-datepicker button,
  .booqable-datepicker [role="button"],
  .booqable-component-datepicker input,
  .booqable-component-datepicker button,
  .booqable-component-datepicker [role="button"] {
    font-size: 16px !important;
  }

  .booqable-datepicker [class*="calendar"],
  .booqable-datepicker [class*="picker"],
  .booqable-datepicker [class*="month"],
  .booqable-component-datepicker [class*="calendar"],
  .booqable-component-datepicker [class*="picker"],
  .booqable-component-datepicker [class*="month"] {
    border-radius: 20px !important;
  }

  .booqable-datepicker [class*="day"],
  .booqable-datepicker td button,
  .booqable-datepicker td [role="button"],
  .booqable-component-datepicker [class*="day"],
  .booqable-component-datepicker td button,
  .booqable-component-datepicker td [role="button"] {
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }

  .booqable-datepicker [class*="weekday"],
  .booqable-component-datepicker [class*="weekday"] {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .02em;
  }

  .booqable-datepicker [class*="footer"],
  .booqable-datepicker [class*="actions"],
  .booqable-datepicker [class*="buttons"],
  .booqable-component-datepicker [class*="footer"],
  .booqable-component-datepicker [class*="actions"],
  .booqable-component-datepicker [class*="buttons"],
  .bb-date-footer {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 16px !important;
  }

  .bb-apply-btn {
    min-width: 180px !important;
    min-height: 52px !important;
    padding: 14px 24px !important;
    border-radius: 16px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    margin: 0 auto !important;
  }
}


/* ------------------------------------------------------------
   2026 visual refresh
------------------------------------------------------------ */
.page-hero {
  padding: 18px 0 8px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(900px 320px at 0% 0%, rgba(94, 234, 212, .14), transparent 55%),
    radial-gradient(900px 320px at 100% 0%, rgba(255, 211, 122, .16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.page-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  filter: blur(10px);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.page-title {
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.page-sub {
  max-width: 760px;
  font-size: 1.03rem;
  color: rgba(234, 240, 255, .82);
}

.hero-trust,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: rgba(240,245,255,.96);
  font-weight: 700;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
}

.feature-card {
  height: 100%;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 14px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.cta-band {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(680px 240px at 0% 0%, rgba(94, 234, 212, .14), transparent 50%),
    radial-gradient(680px 240px at 100% 0%, rgba(255, 211, 122, .16), transparent 50%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-card {
  position: relative;
  height: 100%;
}

.price-card.popular {
  border-color: rgba(255, 211, 122, .32);
  box-shadow: 0 22px 54px rgba(255, 193, 91, .14);
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0 2px;
}

.price-card .checklist,
.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: rgba(234,240,255,.9);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent2);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}

.contact-method strong {
  display: block;
  margin-bottom: 4px;
}

.stay-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.stay-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.26));
}

.stay-option {
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.stay-option:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 20px 38px rgba(0,0,0,.24);
}

.stay-option:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 211, 122, .24);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .metric-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero-card,
  .cta-band {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-trust,
  .trust-row {
    justify-content: center;
  }

  .trust-pill {
    width: 100%;
    justify-content: center;
  }

  .metric {
    text-align: center;
  }
}
