.location-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(181, 225, 216, 0.55), transparent 34%),
    radial-gradient(circle at top right, rgba(34, 87, 122, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #eef4f2 48%, #ffffff 100%);
}


.location-page::before,
.location-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.7;
}


.location-page h1 {
    position: relative;
    z-index: 1;
    /* max-width: 11ch; */
    margin-bottom: 1rem;
    color: var(--locations-ink);
    font-size: clamp(2.4rem, 5vw, 2.35rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.location-page::before {
  top: 7rem;
  left: -7rem;
  width: 16rem;
  height: 16rem;
  background: rgba(72, 166, 44, 0.14);
}

.location-page::after {
  top: 12rem;
  right: -5rem;
  width: 14rem;
  height: 14rem;
  background: rgba(34, 87, 122, 0.14);
}

.location-page__hero,
.location-page__content-card,
.location-page__media-card,
.location-page__faq-card,
.location-booking-card {
  position: relative;
  z-index: 1;
}

.location-page__hero-main {
  padding: 2.25rem;
  height: 100%;
  border: 1px solid rgba(34, 87, 122, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(28, 51, 68, 0.08);
  backdrop-filter: blur(14px);
}

.location-page__eyebrow,
.location-page__card-heading span,
.location-booking-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 87, 122, 0.08);
  color: #22577a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-page__title {
  margin-bottom: 1rem;
  color: #173b52;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  font-weight: 900;
}

.location-page__intro,
.location-page__richtext,
.location-page__card-copy,
.location-booking-card__intro p {
  color: #476172;
  font-size: 1rem;
  line-height: 1.8;
}

.location-page__intro p:last-child,
.location-page__richtext p:last-child {
  margin-bottom: 0;
}

.location-page__stats {
  margin-top: 1.8rem;
}

.location-page__stat-card,
.location-page__highlight,
.location-booking-card__trust-item {
  height: 100%;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(34, 87, 122, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 250, 0.9) 100%);
  box-shadow: 0 16px 32px rgba(34, 87, 122, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.location-page__stat-card:hover,
.location-page__highlight:hover,
.location-booking-card__trust-item:hover,
.location-page__content-card:hover,
.location-page__media-card:hover,
.location-page__faq-card:hover,
.location-booking-card:hover,
.location-page__nearby-pill:hover,
.location-page__video-trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(34, 87, 122, 0.12);
}

.location-page__stat-value {
  display: block;
  margin-bottom: 0.45rem;
  color: #173b52;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.location-page__stat-label,
.location-page__highlight span,
.location-booking-card__trust-item span {
  display: block;
  color: #5f7685;
  font-size: 0.95rem;
  line-height: 1.55;
}

.location-page__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-page__highlight strong,
.location-booking-card__trust-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #173b52;
  font-size: 1.05rem;
  font-weight: 800;
}

.location-page__content-grid,
.location-page__sidebar {
  display: grid;
  gap: 1.5rem;
}

.location-page__content-card,
.location-page__media-card,
.location-page__faq-card,
.location-booking-card {
  padding: 1.75rem;
  border: 1px solid rgba(34, 87, 122, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(20, 51, 68, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.location-page__content-card--accent {
  background:
    linear-gradient(135deg, rgba(34, 87, 122, 0.06), transparent 48%),
    rgba(255, 255, 255, 0.95);
}

.location-page__card-heading h2,
.location-booking-card__intro h2 {
  margin-bottom: 1rem;
  color: #173b52;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.location-page__nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.location-page__nearby-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 87, 122, 0.14);
  background: rgba(247, 251, 253, 0.9);
  color: #22577a;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.location-page__nearby-pill:hover {
  border-color: rgba(72, 166, 44, 0.36);
  background: rgba(72, 166, 44, 0.08);
  color: #173b52;
}

.location-page__video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-page__video-trigger img,
.location-page__video-player {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.location-page__video-button {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(17, 39, 52, 0.88);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.location-page__accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.location-page__accordion-item {
  overflow: hidden;
  margin-bottom: 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(34, 87, 122, 0.1);
  background: rgba(249, 252, 253, 0.95);
}

.location-page__accordion-item .accordion-button {
  color: #173b52;
  font-weight: 800;
  line-height: 1.45;
}

.location-page__accordion-item .accordion-button:not(.collapsed) {
  color: #173b52;
}

.location-page__accordion-item .accordion-body {
  color: #5f7685;
  line-height: 1.7;
}

.location-booking-card {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(72, 166, 44, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 247, 0.96) 100%);
}

.location-booking-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.location-booking-card__chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 87, 122, 0.08);
  color: #22577a;
  font-size: 0.9rem;
  font-weight: 700;
}

.location-booking-card .add-to-cart-form .registration_nr,
.location-booking-card .add-to-cart-form #address,
.location-booking-card .add-to-cart-form .form-control {
  min-height: 56px;
  border-radius: 16px;
  border-color: rgba(34, 87, 122, 0.12);
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.location-booking-card .add-to-cart-form .registration_nr:focus,
.location-booking-card .add-to-cart-form #address:focus,
.location-booking-card .add-to-cart-form .form-control:focus {
  border-color: rgba(72, 166, 44, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(72, 166, 44, 0.12);
}

.location-booking-card .add-to-cart-form label {
  color: #173b52;
  font-weight: 800;
}

.location-booking-card .alert-danger,
.location-booking-card .alert-danger span,
.location-booking-card .alert-danger li {
  color: #dc3545;
  font-weight: 400;
}

.location-booking-card .alert-danger ul {
  margin-bottom: 0;
}

.location-booking-card .open_no_reg {
  border-radius: 16px;
  border-color: rgba(34, 87, 122, 0.18);
  background: #fff;
  color: #173b52;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.location-booking-card .open_no_reg:hover,
.location-booking-card .add-to-cart:hover {
  transform: translateY(-2px);
}

.location-booking-card .add-to-cart-form .pre-price {
  align-items: center;
}

.location-booking-card .add-to-cart-form .pre-price .text-2xl:first-child {
  color: #173b52;
}

.location-booking-card .add-to-cart-form .add-to-cart {
  min-height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #48a62c 0%, #2f7f1a 100%);
  border-color: #48a62c;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 24px rgba(72, 166, 44, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.location-booking-card .add-to-cart-form .add-to-cart:hover {
  filter: saturate(1.05);
  box-shadow: 0 20px 30px rgba(72, 166, 44, 0.26);
}

.location-booking-card__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 1199.98px) {
  .location-page__booking.sticky-warranty-area {
    position: static;
  }
}

@media (max-width: 991.98px) {
  .location-page__hero-main,
  .location-page__content-card,
  .location-page__media-card,
  .location-page__faq-card,
  .location-booking-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .location-page__highlights,
  .location-booking-card__trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .location-page__title {
    font-size: 2.25rem;
  }

  .location-booking-card .add-to-cart-form .pre-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .location-booking-card .add-to-cart-form .add-to-cart {
    width: 100%;
    margin-left: 0 !important;
  }
}
