@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700;800&display=swap);
:root {
  --navy: #001F3F;
  --navy-dark: #001229;
  --navy-mid: #002D5A;
  --navy-light: #EAF0F8;
  --gold: #C7A052;
  --gold-dark: #9A7035;
  --gold-mid: #B8893D;
  --gold-light: #D9BC85;
  --gold-pale: #F7EDD8;
  --white: #FFFFFF;
  --off: #FAFAF8;
  --surface: #F3F1EB;
  --border: #DDD9D0;
  --border-lt: #EDEBE4;
  --text: #0D1B2A;
  --text-2: #3A4A5C;
  --text-3: #6B7A8D;
  --sh1: 0 1px 4px rgba(0,31,63,0.06);
  --sh2: 0 4px 16px rgba(0,31,63,0.10);
  --sh3: 0 10px 36px rgba(0,31,63,0.16);
  --shg: 0 4px 18px rgba(199,160,82,0.28);
  --imperium-navy: var(--navy);
  --imperium-gold: var(--gold);
  --imperium-light: var(--surface);
  --imperium-dark: var(--navy-dark);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --status-success: #1A6B4A;
  --status-success-bg: #E8F5EE;
  --status-warning: #8A5E00;
  --status-warning-bg: #FFF3CD;
  --status-danger: #7A1F1F;
  --status-danger-bg: #F9E5E5;
  --status-info: var(--navy-mid);
  --status-info-bg: var(--navy-light);
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: Poppins,'Segoe UI',Arial,sans-serif;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
a:hover {
  color: var(--gold-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ol,
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section {
  padding: 4rem 0;
}
.section--sm {
  padding: 2.5rem 0;
}
.section--lg {
  padding: 6rem 0;
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: .5rem;
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section__subtitle {
  font-size: .9375rem;
  color: var(--text-3);
  margin-top: .25rem;
}
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .8125rem;
  font-weight: 400;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar__info span {
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.topbar__info i {
  color: var(--gold-light);
  font-size: .8rem;
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.topbar__actions a {
  color: rgba(255,255,255,.75);
  font-size: .8125rem;
  transition: color .2s;
  white-space: nowrap;
}
.topbar__actions a:hover {
  color: var(--gold-light);
}
.topbar__divider {
  width: 1px;
  height: 1rem;
  background: rgba(255,255,255,.18);
}
.nav {
  position: sticky;
  top: 44px;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,31,63,.08);
  border-bottom: 2px solid var(--gold-pale);
  transition: box-shadow .3s;
}
.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0,31,63,.14);
}
/* Global required-field indicator */
.req { color: #dc2626; font-weight: 700; margin-left: 2px; }

.nav__container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav__tenant-logo {
  display: flex;
  align-items: center;
  max-width: 240px;
}
.nav__tenant-logo img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-fit: contain;
  display: block;
}
.nav__logo-text {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
  line-height: 1.15;
}
.nav__logo-text span {
  color: var(--gold);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color .2s,background .2s;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: .75rem;
  right: .75rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .25s;
}
.nav__link.active,
.nav__link:hover {
  color: var(--navy);
  background: var(--gold-pale);
}
.nav__link.active::after,
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link i.fa-chevron-down {
  font-size: .65rem;
  transition: transform .2s;
}
.nav__item:hover .nav__link i.fa-chevron-down {
  transform: rotate(180deg);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  box-shadow: var(--sh3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s,transform .2s,visibility .2s;
  z-index: 999;
  overflow: hidden;
}
.nav__item:focus-within .nav__dropdown,
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .875rem;
  color: var(--text-2);
  transition: background .15s,color .15s;
  border-left: 3px solid transparent;
}
.nav__dropdown a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  border-left-color: var(--gold);
}
.nav__mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(96vw,860px);
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--sh3);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s,transform .2s,visibility .2s;
  z-index: 999;
  padding: 1.5rem;
}
.nav__item:focus-within .nav__mega,
.nav__item:hover .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(120px,1fr));
  gap: .5rem;
}
.nav__mega a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .75rem;
  font-size: .8125rem;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: background .15s,color .15s;
}
.nav__mega a:hover {
  background: var(--gold-pale);
  color: var(--navy);
}
.nav__mega-title {
  font-family: Poppins,sans-serif;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-lt);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__toggle {
  display: none;
  background: 0 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  width: 40px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color .2s;
}
.nav__toggle:hover {
  border-color: var(--gold);
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s,opacity .2s;
}
.nav__toggle.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem 1.5rem;
  font-family: Poppins,sans-serif;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s,color .22s,border-color .22s,box-shadow .22s,transform .15s;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shg);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: var(--sh2);
}
.btn-outline {
  background: 0 0;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-gold {
  background: 0 0;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-sm {
  padding: .45rem 1rem;
  font-size: .8125rem;
  border-radius: var(--r-sm);
}
.btn-lg {
  padding: .9rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-md);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off);
  color: var(--navy);
}
.hero,
.hero--carousel {
  position: relative;
  overflow: hidden;
  /* 1900×500 images — 26.3vw is the native ratio; 32vw adds comfortable breathing room */
  height: clamp(280px, 32vw, 520px);
  background: var(--navy-dark);
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel__track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.hero-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,18,41,.65) 0,rgba(0,18,41,.1) 55%,transparent 100%);
}
.hero-carousel__caption {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: var(--white);
  width: min(90%,720px);
}
.hero-carousel__caption h2 {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  margin-bottom: .5rem;
}
.hero-carousel__caption p {
  font-size: clamp(.875rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
}
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s,border-color .2s;
  backdrop-filter: blur(6px);
}
.hero-carousel__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-carousel__btn--prev {
  left: 1.5rem;
}
.hero-carousel__btn--next {
  right: 1.5rem;
}
.hero-carousel__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-carousel__indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 5;
}
.hero-carousel__indicator {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background .2s,width .25s;
  padding: 0;
}
.hero-carousel__indicator.active {
  background: var(--gold);
  width: 44px;
}
.search-section {
  background: var(--white);
  box-shadow: var(--sh3);
  border-radius: var(--r-xl);
  margin: -3rem auto 0;
  position: relative;
  z-index: 10;
  max-width: 1100px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--border-lt);
}
.search-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.search-tab {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-3);
  background: 0 0;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s,border-color .2s;
}
.search-tab i {
  font-size: .8rem;
}
.search-tab--active,
.search-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 700;
}
.search-panel {
  display: none;
}
.search-panel.active {
  display: block;
}
.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: .75rem;
  align-items: end;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.search-field label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-3);
}
.search-field .field-inner {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off);
  transition: border-color .2s,box-shadow .2s;
  overflow: hidden;
}
.search-field .field-inner:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.15);
}
.search-field .field-inner i {
  padding: 0 .65rem;
  color: var(--text-3);
  font-size: .85rem;
  flex-shrink: 0;
}
.search-field input,
.search-field select {
  flex: 1;
  border: none;
  background: 0 0;
  padding: .65rem .5rem .65rem 0;
  font-size: .9rem;
  color: var(--text);
  outline: 0;
  min-width: 0;
}
.search-field select {
  cursor: pointer;
}
.search-btn {
  padding: .75rem 1.75rem;
  font-size: .9rem;
  align-self: flex-end;
}
.search-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 1.5rem;
}
.offer-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh1);
  border: 1px solid var(--border-lt);
  transition: box-shadow .25s,transform .25s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  box-shadow: var(--sh3);
  transform: translateY(-4px);
}
.offer-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
}
.offer-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.offer-card:hover .offer-card__image-wrap img {
  transform: scale(1.04);
}
.offer-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .2rem .6rem;
  border-radius: var(--r-sm);
  z-index: 1;
}
.offer-card__badge--navy {
  background: var(--navy);
}
.offer-card__content {
  padding: 1rem 1.1rem 1.25rem;
  border-top: 2px solid var(--gold-pale);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.offer-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--text-3);
}
.offer-card__meta i {
  color: var(--gold);
  font-size: .72rem;
}
.offer-card__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.offer-card__title a {
  color: inherit;
}
.offer-card__title a:hover {
  color: var(--gold-dark);
}
.offer-card__desc {
  font-size: .8375rem;
  color: var(--text-3);
  line-height: 1.5;
  flex: 1;
}
.offer-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border-lt);
}
.offer-card__price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.offer-card__price-label {
  font-size: .7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.offer-card__price-amount {
  font-family: Poppins,sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.offer-card__price-amount span {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-3);
}
.listing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh1);
  border: 1px solid var(--border-lt);
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: box-shadow .25s,transform .25s;
}
.listing-card:hover {
  box-shadow: var(--sh3);
  transform: translateY(-3px);
}
.listing-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--surface);
}
.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.listing-card:hover .listing-card__image img {
  transform: scale(1.05);
}
.listing-card__badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .15rem .55rem;
  border-radius: var(--r-sm);
}
.listing-card__body {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.listing-card__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.listing-card__title a {
  color: inherit;
}
.listing-card__title a:hover {
  color: var(--gold-dark);
}
.listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
  font-size: .8rem;
  color: var(--text-3);
}
.listing-card__meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.listing-card__meta i {
  color: var(--gold);
  font-size: .72rem;
}
.listing-card__desc {
  font-size: .8375rem;
  color: var(--text-2);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .6rem;
  border-top: 1px solid var(--border-lt);
  margin-top: auto;
}
.listing-card__price {
  font-family: Poppins,sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.listing-card__price small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-3);
}
.featured-section {
  background: var(--off);
  padding: 4.5rem 0;
}
.featured-section--white {
  background: var(--white);
}
.featured-section--navy {
  background: var(--navy);
}
.featured-section--surface {
  background: var(--surface);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 2rem;
}
.why-us__item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-lt);
  box-shadow: var(--sh1);
  transition: box-shadow .25s,transform .25s;
}
.why-us__item:hover {
  box-shadow: var(--sh2);
  transform: translateY(-4px);
}
.why-us__icon {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: background .2s;
}
.why-us__item:hover .why-us__icon {
  background: var(--gold);
  color: var(--white);
}
.why-us__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.why-us__text {
  font-size: .85rem;
  color: var(--text-3);
  line-height: 1.55;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 1rem;
}
.category-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.category-card:hover img {
  transform: scale(1.07);
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,18,41,.75) 0,transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.category-card__label {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.page-hero {
  position: relative;
  overflow: hidden;
  height: clamp(180px,22vw,320px);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,31,63,.7) 0,rgba(0,31,63,.4) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 1rem;
}
.page-hero__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  margin-bottom: .4rem;
}
.page-hero__breadcrumb {
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a {
  color: var(--gold-light);
}
.page-hero__breadcrumb a:hover {
  color: var(--white);
}
.page-hero__breadcrumb i {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
}
.detail-main {
  min-width: 0;
}
.detail-sidebar {
  position: sticky;
  top: 86px;
}
.detail-gallery {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.detail-gallery__main {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
}
.detail-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(80px,1fr));
  gap: .4rem;
  margin-top: .4rem;
}
.detail-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s;
}
.detail-gallery__thumb.active {
  border-color: var(--gold);
}
.detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.detail-gallery__thumb:hover img {
  transform: scale(1.08);
}
.detail-section {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--sh1);
}
.detail-section__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold-pale);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.detail-section__title i {
  color: var(--gold);
  font-size: 1rem;
}
.day-program {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.day-program__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
}
.day-program__num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.day-program__text {
  padding-top: .5rem;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.inc-exc__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.inc-exc__item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-2);
}
.inc-exc__item i {
  font-size: .8rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.inc-exc__item--inc i {
  color: var(--status-success);
}
.inc-exc__item--exc i {
  color: var(--status-danger);
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh2);
}
.booking-card__header {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
  color: var(--white);
}
.booking-card__price-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.65);
  margin-bottom: .2rem;
}
.booking-card__price {
  font-family: Poppins,sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.booking-card__price small {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
}
.booking-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-card__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.booking-card__field label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
}
.booking-card__field input,
.booking-card__field select {
  width: 100%;
  padding: .6rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .875rem;
  color: var(--text);
  background: var(--off);
  transition: border-color .2s;
  outline: 0;
}
.booking-card__field input:focus,
.booking-card__field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.12);
}
.booking-card__footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.carnet-section {
  max-width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
}
.badge-success {
  background: var(--status-success-bg);
  color: var(--status-success);
}
.badge-warning {
  background: var(--status-warning-bg);
  color: var(--status-warning);
}
.badge-danger {
  background: var(--status-danger-bg);
  color: var(--status-danger);
}
.badge-info {
  background: var(--status-info-bg);
  color: var(--status-info);
}
.badge-gold {
  background: var(--gold-pale);
  color: var(--gold-dark);
}
.badge-navy {
  background: var(--navy-light);
  color: var(--navy);
}
.footer,
footer.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  border-top: 3px solid var(--gold);
}
.footer__main {
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__logo-text {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-text span {
  color: var(--gold-light);
}
.footer__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 26ch;
}
.footer__social {
  display: flex;
  gap: .6rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: background .2s,color .2s,border-color .2s;
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer__col-title {
  font-family: Poppins,sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .15s,padding-left .15s;
}
.footer__links a:hover {
  color: var(--gold-light);
  padding-left: .3rem;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.footer__contact-item i {
  color: var(--gold);
  font-size: .85rem;
  margin-top: .15rem;
  flex-shrink: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom a {
  color: rgba(255,255,255,.4);
  transition: color .15s;
}
.footer__bottom a:hover {
  color: var(--gold-light);
}
.alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}
.alert i {
  font-size: 1rem;
  margin-top: .05rem;
  flex-shrink: 0;
}
.alert-success {
  background: var(--status-success-bg);
  color: var(--status-success);
  border-color: #b2dfcf;
}
.alert-warning {
  background: var(--status-warning-bg);
  color: var(--status-warning);
  border-color: #ffe0a0;
}
.alert-danger {
  background: var(--status-danger-bg);
  color: var(--status-danger);
  border-color: #f0c0c0;
}
.alert-info {
  background: var(--status-info-bg);
  color: var(--status-info);
  border-color: #b0ccec;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-2);
}
.form-control {
  width: 100%;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .9rem;
  color: var(--text);
  background: var(--off);
  transition: border-color .2s,box-shadow .2s;
  outline: 0;
  font-family: Poppins,sans-serif;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.15);
  background: var(--white);
}
.form-control.is-invalid {
  border-color: var(--status-danger);
}
.form-error {
  font-size: .78rem;
  color: var(--status-danger);
  margin-top: .15rem;
}
textarea.form-control {
  resize: vertical;
  min-height: 110px;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-lt);
  box-shadow: var(--sh1);
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.data-table thead th {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  padding: .8rem 1rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.data-table tbody tr {
  border-bottom: 1px solid var(--border-lt);
  transition: background .15s;
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table tbody tr:hover {
  background: var(--off);
}
.data-table td {
  padding: .75rem 1rem;
  color: var(--text-2);
  vertical-align: middle;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--sh1);
  overflow: hidden;
}
.card-header {
  padding: 1rem 1.25rem;
  background: var(--off);
  border-bottom: 1px solid var(--border-lt);
  font-weight: 600;
  color: var(--navy);
  font-size: .9375rem;
}
.card-body {
  padding: 1.25rem;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.pagination a,
.pagination button,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--text-2);
  text-decoration: none;
  background: var(--white);
  transition: background .15s,color .15s,border-color .15s;
}
.pagination a:hover,
.pagination button:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--navy);
}
.pagination .active,
.pagination span.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.pagination .disabled {
  opacity: .4;
  pointer-events: none;
}
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s,visibility .3s,transform .3s,background .2s;
  box-shadow: var(--shg);
  z-index: 900;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--gold-dark);
}
.bg-off {
  background: var(--off);
}
.bg-surface {
  background: var(--surface);
}
.bg-navy {
  background: var(--navy);
  color: var(--white);
}
.bg-navy-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.bg-white {
  background: var(--white);
}
.text-gold {
  color: var(--gold);
}
.text-navy {
  color: var(--navy);
}
.text-muted {
  color: var(--text-3);
}
.text-white {
  color: var(--white);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s,transform .6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s,transform .6s;
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s,transform .6s;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width:1024px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .nav__mega {
    width: min(96vw,640px);
  }
}
@media (max-width:768px) {
  .nav__toggle {
    display: flex;
  }
  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    overflow-y: auto;
    z-index: 9998;
  }
  .nav__menu.open {
    display: flex;
  }
  .nav__item {
    width: 100%;
  }
  .nav__link {
    width: 100%;
    padding: .85rem 1rem;
    font-size: 1rem;
    border-radius: var(--r-md);
  }
  .nav__link::after {
    display: none;
  }
  .nav__dropdown,
  .nav__mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gold-pale);
    border-radius: 0;
    padding: 0 0 0 1rem;
    margin-left: 1rem;
    margin-top: .25rem;
  }
  .nav__actions {
    margin-left: auto;
  }
  .topbar__info {
    display: none;
  }
  .hero,
  .hero--carousel {
    height: clamp(240px, 56vw, 380px);
  }
  .hero-carousel__btn {
    display: none;
  }
  .hero-carousel__caption h2 {
    font-size: clamp(1.15rem, 5vw, 1.75rem);
  }
  .hero-carousel__caption p {
    display: none;
  }
  .search-section {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }
  .listing-card,
  .search-row {
    grid-template-columns: 1fr;
  }
  .listing-card__image {
    height: 200px;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .page-hero {
    height: clamp(140px,30vw,200px);
  }
  .offers-grid {
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
  }
  .why-us__grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:480px) {
  .search-dates,
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .hero-carousel__indicators {
    bottom: .5rem;
  }
  .hero-carousel__indicator {
    width: 20px;
    height: 3px;
  }
  .hero-carousel__indicator.active {
    width: 32px;
  }
  .section {
    padding: 2.75rem 0;
  }
  .section__title {
    font-size: 1.5rem;
  }
  .booking-card__price {
    font-size: 1.4rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-resolution:1.5dppx) {
  .hero,
  .hero--carousel {
    height: clamp(220px,42vw,500px);
  }
}
@media print {
  #backToTop,
  .footer,
  .hero-carousel__btn,
  .nav,
  .topbar {
    display: none!important;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    display: none;
  }
  body {
    font-size: 12pt;
  }
}
.auth-page {
  min-height: calc(100vh - 6rem);
  background: linear-gradient(135deg,var(--imperium-light),#fff,var(--imperium-light));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}
.auth-page>.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.auth-page__bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.auth-page__bg-effect {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .15;
  animation: 3s infinite pulse;
}
.auth-page__bg-effect--navy {
  top: 2rem;
  left: 2rem;
  background: var(--imperium-navy);
}
.auth-page__bg-effect--gold {
  bottom: 2rem;
  right: 2rem;
  background: var(--imperium-gold);
  animation-delay: 1s;
}
.auth-container {
  width: 100%;
  max-width: 56rem;
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,31,63,.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.auth-visual {
  position: relative;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark),var(--imperium-navy));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (min-width:1024px) {
  .auth-container {
    grid-template-columns: 1fr 1fr;
  }
  .auth-visual {
    padding: 2rem;
  }
}
.auth-visual__pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
}
.auth-visual__pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-visual__decoration {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(64px);
}
.auth-visual__decoration--top {
  top: 0;
  right: 0;
  background: rgba(199,160,82,.2);
}
.auth-visual__decoration--bottom {
  bottom: 0;
  left: 0;
  background: rgba(199,160,82,.1);
}
.auth-visual__content {
  position: relative;
  z-index: 10;
  color: #fff;
}
.auth-visual__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: rgba(199,160,82,.2);
  border: 1px solid rgba(199,160,82,.3);
  border-radius: .5rem;
  backdrop-filter: blur(8px);
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.auth-visual__badge i {
  color: var(--imperium-gold);
}
.auth-visual__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: .625rem;
  line-height: 1.3;
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
@media (min-width:1024px) {
  .auth-visual__title {
    font-size: 1.5rem;
  }
}
.auth-visual__title-highlight {
  color: var(--imperium-gold) !important;
}
.auth-visual__subtitle {
  color: rgba(255,255,255,.85) !important;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-size: .8125rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.auth-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.auth-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  padding: .5rem;
  border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.1);
}
.auth-feature__icon {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(199,160,82,.2);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8125rem;
}
.auth-feature__icon i {
  color: var(--imperium-gold);
}
.auth-feature__title {
  font-size: .6875rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: .125rem;
}
.auth-feature__description {
  font-size: .6875rem;
  color: rgba(255,255,255,.7) !important;
}
.auth-form-wrapper {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width:1024px) {
  .auth-form-wrapper {
    padding: 2rem;
  }
}
.auth-form__bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.auth-form__bg-effect {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .2;
  animation: 5s ease-in-out infinite authBgPulse;
}
.auth-form__bg-effect--navy {
  top: -8rem;
  right: -8rem;
  background: linear-gradient(135deg,var(--imperium-navy),#036);
}
.auth-form__bg-effect--gold {
  bottom: -8rem;
  left: -8rem;
  background: linear-gradient(135deg,var(--imperium-gold),#e6c36a);
  animation-delay: 2.5s;
}
@keyframes authBgPulse {
  0%,
  100% {
    transform: scale(1) rotate(0);
    opacity: .15;
  }
  50% {
    transform: scale(1.3) rotate(10deg);
    opacity: .3;
  }
}
.auth-form__header {
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}
.auth-form__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: rgba(199,160,82,.1);
  border: 1px solid rgba(199,160,82,.2);
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .75rem;
}
.auth-form__badge-dot {
  width: .5rem;
  height: .5rem;
  background: var(--imperium-gold);
  border-radius: 50%;
  animation: 2s infinite pulse;
}
.auth-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .375rem;
}
@media (min-width:1024px) {
  .auth-form__title {
    font-size: 1.375rem;
  }
}
.auth-form__subtitle {
  color: #4b5563;
  font-size: .8125rem;
}
.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .8125rem;
  margin-bottom: .5rem;
  position: relative;
  z-index: 10;
}
.auth-alert i {
  flex-shrink: 0;
  margin-top: .125rem;
}
.auth-alert--success {
  background: linear-gradient(135deg,#ecfdf5,#d1fae5);
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.auth-alert--success i {
  color: #059669;
}
.auth-alert--error {
  background: linear-gradient(135deg,#fef2f2,#fee2e2);
  border: 1px solid #fecaca;
  color: #991b1b;
}
.auth-alert--error i {
  color: #dc2626;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  position: relative;
  z-index: 10;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--imperium-navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .375rem;
}
.form-input-wrapper {
  position: relative;
}
.form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--imperium-gold);
  pointer-events: none;
  z-index: 10;
}
.form-input {
  width: 100%;
  padding: .625rem 1rem .625rem 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: .75rem;
  font-size: .8125rem;
  font-weight: 500;
  background: #fff;
  transition: .3s;
}
.form-input:focus {
  outline: 0;
  border-color: var(--imperium-navy);
  box-shadow: 0 0 0 4px rgba(0,31,63,.1);
}
.form-input::placeholder {
  color: #9ca3af;
}
.auth-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-checkbox__input {
  width: .875rem;
  height: .875rem;
  accent-color: var(--imperium-gold);
  border-color: #d1d5db;
  border-radius: .25rem;
  cursor: pointer;
}
.form-checkbox__label {
  margin-left: .375rem;
  font-size: .75rem;
  color: #374151;
  font-weight: 600;
  transition: color .3s;
}
.form-checkbox:hover .form-checkbox__label {
  color: var(--imperium-navy);
}
.auth-form__forgot-link {
  font-size: .75rem;
  color: var(--imperium-gold);
  font-weight: 700;
  text-decoration: none;
  transition: color .3s;
}
.auth-form__forgot-link:hover {
  color: var(--imperium-navy);
}
.auth-form__secondary,
.auth-form__submit {
  height: 2.5rem;
  font-size: .8125rem;
  font-weight: 700;
}
.auth-form__secondary:hover,
.auth-form__submit:hover {
  transform: scale(1.02);
}
.auth-form__divider {
  position: relative;
  text-align: center;
}
.auth-form__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}
.auth-form__divider span {
  position: relative;
  display: inline-block;
  padding: 0 .5rem;
  background: #fff;
  color: #6b7280;
  font-size: .75rem;
  font-weight: 600;
}
.auth-container--centered {
  max-width: 28rem;
  display: block;
}
.auth-container--centered .auth-form-wrapper {
  border-radius: 1.25rem;
}
.auth-form__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,31,63,.2);
}
.auth-form__icon i {
  font-size: 1.5rem;
  color: #fff;
}
.auth-message {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: .75rem;
  margin-bottom: 1rem;
}
.auth-message--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.auth-message--success i {
  color: #059669;
}
.auth-message--success p {
  color: #065f46;
  font-size: .8125rem;
  font-weight: 500;
}
.auth-message--info {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.auth-message--info i {
  color: #d97706;
  flex-shrink: 0;
  margin-top: .125rem;
}
.auth-message--info p {
  color: #92400e;
  font-size: .8125rem;
}
.auth-message--info strong {
  font-weight: 700;
}
.btn--outline {
  background: #fff;
  color: #374151;
  border: 2px solid #e5e7eb;
  box-shadow: none;
}
.btn--outline:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: none;
}
.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  transition: color .3s;
}
.auth-back-link:hover {
  color: var(--imperium-gold);
}
.auth-container--register {
  max-width: 62rem;
}
.auth-form--register {
  gap: .875rem;
}
@media (max-width:768px) {
  .auth-container {
    max-width: 100%;
  }
  .auth-form-wrapper,
  .auth-visual {
    padding: 1.25rem;
  }
}
.wizard-page {
  min-height: calc(100vh - 6rem);
  background: linear-gradient(135deg,var(--imperium-light),#fff,var(--imperium-light));
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}
.wizard-page--compact {
  padding: 1rem;
}
.wizard-page__bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.wizard-page__bg-effect {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
  animation: 3s infinite pulse;
}
.wizard-page__bg-effect--navy {
  top: 5rem;
  left: 5rem;
  background: var(--imperium-navy);
}
.wizard-page__bg-effect--gold {
  bottom: 5rem;
  right: 5rem;
  background: var(--imperium-gold);
  animation-delay: 1s;
}
.wizard-header {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}
.wizard-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .25rem;
}
.wizard-header__subtitle {
  color: #6b7280;
  font-size: .8125rem;
  max-width: 36rem;
  margin: 0 auto;
}
.wizard-container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  position: relative;
}
.wizard-progress__line {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
}
.wizard-progress__line-active {
  position: absolute;
  top: 1rem;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--imperium-gold),#d4af6a);
  border-radius: 2px;
  transition: width .5s;
}
.wizard-step {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wizard-step__circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: .3s;
  background: #fff;
  border: 2px solid #e5e7eb;
  color: #9ca3af;
}
.wizard-step--active .wizard-step__circle {
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  border-color: var(--imperium-navy);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(199,160,82,.25);
}
.wizard-step--completed .wizard-step__circle {
  background: linear-gradient(135deg,var(--imperium-gold),#d4af6a);
  border-color: var(--imperium-gold);
  color: #fff;
}
.wizard-step__label {
  margin-top: .375rem;
  font-size: .625rem;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  display: none;
}
@media (min-width:640px) {
  .wizard-step__label {
    display: block;
  }
}
.wizard-step--active .wizard-step__label,
.wizard-step--completed .wizard-step__label {
  color: var(--imperium-navy);
}
.wizard-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,31,63,.1);
  border: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
}
.wizard-card__content {
  padding: 1.25rem;
}
.wizard-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.wizard-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-card__icon i {
  font-size: 1rem;
  color: #fff;
}
.wizard-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .125rem;
}
.wizard-card__subtitle {
  color: #6b7280;
  font-size: .8125rem;
}
.wizard-form-group {
  margin-bottom: 1rem;
}
.wizard-form-group:last-child {
  margin-bottom: 0;
}
.wizard-form-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .375rem;
}
.wizard-form-label .required {
  color: #ef4444;
}
.wizard-form-input {
  width: 100%;
  padding: .625rem .875rem;
  border: 2px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .875rem;
  transition: .3s;
  background: #fff;
}
.wizard-form-input:focus {
  outline: 0;
  border-color: var(--imperium-navy);
  box-shadow: 0 0 0 3px rgba(0,31,63,.1);
}
.wizard-form-input::placeholder {
  color: #9ca3af;
}
.wizard-form-input--icon {
  padding-left: 2.5rem;
}
.wizard-form-input--readonly {
  background: #f9fafb;
  cursor: not-allowed;
  color: #374151;
}
.wizard-form-input--readonly:focus {
  border-color: #e5e7eb;
  box-shadow: none;
}
.wizard-form-error {
  margin-top: .25rem;
  font-size: .75rem;
  color: #ef4444;
}
.wizard-options {
  display: grid;
  gap: .5rem;
}
.wizard-options--cols-2 {
  grid-template-columns: repeat(2,1fr);
}
.wizard-options--cols-3 {
  grid-template-columns: repeat(3,1fr);
}
@media (max-width:640px) {
  .wizard-options--cols-2,
  .wizard-options--cols-3 {
    grid-template-columns: 1fr;
  }
}
.wizard-option {
  position: relative;
  cursor: pointer;
}
.wizard-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.wizard-option__card {
  padding: .75rem;
  border: 2px solid #e5e7eb;
  border-radius: .5rem;
  transition: .3s;
  background: #fff;
}
.wizard-option__card:hover {
  border-color: #d1d5db;
}
.wizard-option input:checked+.wizard-option__card {
  border-color: var(--imperium-gold);
  background: rgba(199,160,82,.05);
}
.wizard-option__stars {
  display: flex;
  justify-content: center;
  margin-bottom: .25rem;
}
.wizard-option__stars i {
  color: var(--imperium-gold);
  font-size: .875rem;
}
.wizard-option__label {
  font-size: .75rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
}
.wizard-option__content {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.wizard-option__icon {
  color: var(--imperium-navy);
  font-size: 1rem;
}
.wizard-option__text {
  flex: 1;
}
.wizard-option__title {
  font-size: .8125rem;
  font-weight: 600;
  color: #374151;
}
.wizard-option__desc {
  font-size: .6875rem;
  color: #6b7280;
}
.wizard-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem;
  border: 2px solid #e5e7eb;
  border-radius: .5rem;
  margin-bottom: .5rem;
}
.wizard-counter:last-child {
  margin-bottom: 0;
}
.wizard-counter__info {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.wizard-counter__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
}
.wizard-counter__icon--navy {
  background: rgba(0,31,63,.1);
  color: var(--imperium-navy);
}
.wizard-counter__icon--gold {
  background: rgba(199,160,82,.15);
  color: var(--imperium-gold);
}
.wizard-counter__icon--pink {
  background: #fce7f3;
  color: #ec4899;
}
.wizard-counter__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}
.wizard-counter__icon--green {
  background: #dcfce7;
  color: #16a34a;
}
.wizard-counter__icon--purple {
  background: #f3e8ff;
  color: #9333ea;
}
.wizard-counter__label {
  font-size: .8125rem;
  font-weight: 600;
  color: #374151;
}
.wizard-counter__sublabel {
  font-size: .6875rem;
  color: #6b7280;
}
.wizard-counter__controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.wizard-counter__btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  font-size: .75rem;
  color: #374151;
}
.wizard-counter__btn:hover {
  border-color: var(--imperium-gold);
  color: var(--imperium-gold);
}
.wizard-counter__value {
  width: 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--imperium-navy);
}
.wizard-info {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem .75rem;
  border-radius: .5rem;
  margin-top: .75rem;
}
.wizard-info--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.wizard-info--success i {
  color: #059669;
}
.wizard-info--success span {
  color: #065f46;
  font-size: .8125rem;
  font-weight: 500;
}
.wizard-info--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.wizard-info--warning i {
  color: #d97706;
}
.wizard-info--warning span {
  color: #92400e;
  font-size: .8125rem;
  font-weight: 500;
}
.wizard-info--highlight {
  background: rgba(199,160,82,.1);
  border: 1px solid rgba(199,160,82,.3);
  justify-content: center;
}
.wizard-info--highlight i {
  color: var(--imperium-gold);
}
.wizard-info--highlight span {
  color: var(--imperium-navy);
  font-size: .8125rem;
  font-weight: 700;
}
.wizard-otp {
  padding: 1rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: .75rem;
  margin-top: 1rem;
}
.wizard-otp__label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: .375rem;
}
.wizard-otp__hint {
  font-size: .8125rem;
  color: #2563eb;
  margin-bottom: .75rem;
}
.wizard-otp__input-group {
  display: flex;
  gap: .75rem;
}
.wizard-otp__input {
  flex: 1;
  padding: .75rem 1rem;
  border: 2px solid #93c5fd;
  border-radius: .75rem;
  font-size: 1.5rem;
  font-family: monospace;
  letter-spacing: .25em;
  text-align: center;
  background: #fff;
}
.wizard-otp__input:focus {
  outline: 0;
  border-color: var(--imperium-gold);
}
.wizard-otp__btn {
  padding: .75rem 1.25rem;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: .75rem;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}
.wizard-otp__btn:hover {
  background: #1d4ed8;
}
.wizard-otp__btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.wizard-otp__error {
  margin-top: .5rem;
  font-size: .8125rem;
  color: #ef4444;
}
.wizard-verified {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: .75rem;
  margin-top: 1rem;
}
.wizard-verified i {
  font-size: 1.25rem;
  color: #059669;
}
.wizard-verified span {
  font-weight: 700;
  color: #065f46;
}
.wizard-summary {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.wizard-summary__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: .75rem;
}
.wizard-summary__item--highlight {
  background: rgba(0,31,63,.05);
  border: 1px solid rgba(0,31,63,.1);
}
.wizard-summary__item--notes {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.wizard-summary__icon {
  color: var(--imperium-gold);
  margin-top: .125rem;
}
.wizard-summary__content {
  flex: 1;
}
.wizard-summary__label {
  font-size: .75rem;
  color: #6b7280;
  margin-bottom: .25rem;
}
.wizard-summary__value {
  font-size: .9375rem;
  font-weight: 600;
  color: #1f2937;
}
.wizard-summary__badge {
  display: inline-block;
  margin-left: .5rem;
  padding: .125rem .5rem;
  background: rgba(199,160,82,.2);
  color: var(--imperium-navy);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 1rem;
}
.wizard-summary__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width:640px) {
  .wizard-summary__row {
    grid-template-columns: 1fr;
  }
}
.wizard-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.wizard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  padding: .625rem 1.25rem;
  border: none;
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
.wizard-btn--prev {
  background: #fff;
  color: #374151;
  border: 2px solid #e5e7eb;
}
.wizard-btn--prev:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}
.wizard-btn--next {
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,31,63,.3);
}
.wizard-btn--next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,31,63,.4);
}
.wizard-btn--submit {
  background: linear-gradient(135deg,var(--imperium-gold),#d4af6a);
  color: var(--imperium-navy);
  box-shadow: 0 4px 14px rgba(199,160,82,.3);
}
.wizard-btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,160,82,.4);
}
.wizard-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none!important;
}
.success-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,31,63,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999;
  padding: 6rem 1rem 1rem;
}
.success-popup {
  background: #fff;
  border-radius: 1.25rem;
  max-width: 32rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,31,63,.3);
  animation: .3s popupSlideIn;
}
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.success-popup__header {
  background: linear-gradient(135deg,#059669,#10b981);
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.success-popup__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.success-popup__confetti span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.3);
  animation: 3s linear infinite confettiFall;
}
.success-popup__confetti span:first-child {
  left: 10%;
  animation-delay: 0s;
}
.success-popup__confetti span:nth-child(2) {
  left: 25%;
  animation-delay: .3s;
}
.success-popup__confetti span:nth-child(3) {
  left: 40%;
  animation-delay: .6s;
}
.success-popup__confetti span:nth-child(4) {
  left: 55%;
  animation-delay: .9s;
}
.success-popup__confetti span:nth-child(5) {
  left: 70%;
  animation-delay: 1.2s;
}
.success-popup__confetti span:nth-child(6) {
  left: 85%;
  animation-delay: 1.5s;
}
@keyframes confettiFall {
  0% {
    transform: translateY(-100%) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(720deg);
    opacity: 0;
  }
}
.success-popup__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  animation: .5s .2s successBounce;
}
@keyframes successBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.success-popup__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.success-popup__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
}
.success-popup__reference {
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}
.success-popup__reference-label {
  font-size: .8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .25rem;
}
.success-popup__reference-value {
  font-size: 1.25rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--imperium-navy);
  letter-spacing: .05em;
}
.success-popup__content {
  padding: 1.5rem;
}
.success-popup__details {
  margin-bottom: 1.25rem;
}
.success-popup__detail {
  display: flex;
  justify-content: space-between;
  padding: .625rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: .9375rem;
}
.success-popup__detail:last-child {
  border-bottom: none;
}
.success-popup__detail-label {
  color: #6b7280;
}
.success-popup__detail-label i {
  color: var(--imperium-gold);
  width: 1.25rem;
  margin-right: .5rem;
  font-size: .875rem;
}
.success-popup__detail-value {
  font-weight: 600;
  color: #1f2937;
}
.success-popup__info {
  padding: 1rem 1.25rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: .5rem;
  margin-bottom: 1.25rem;
}
.success-popup__info-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: .625rem;
}
.success-popup__info-title i {
  margin-right: .375rem;
  font-size: .875rem;
}
.success-popup__info-list {
  list-style: decimal;
  padding-left: 1.25rem;
  font-size: .875rem;
  color: #1d4ed8;
}
.success-popup__info-list li {
  margin-bottom: .25rem;
}
.success-popup__actions {
  display: flex;
  gap: .75rem;
}
.success-popup__actions .btn {
  flex: 1;
  justify-content: center;
  padding: .75rem 1rem;
  font-size: .9375rem;
}
.confirmation-header {
  background: linear-gradient(135deg,#059669,#10b981);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}
.confirmation-header__icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  backdrop-filter: blur(8px);
}
.confirmation-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.confirmation-header__subtitle {
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
}
.confirmation-reference {
  padding: 1.25rem 2rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}
.confirmation-reference__label {
  display: block;
  font-size: .8125rem;
  color: #6b7280;
  margin-bottom: .375rem;
}
.confirmation-reference__value {
  font-size: 1.5rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--imperium-navy);
  letter-spacing: .05em;
}
.confirmation-details {
  margin-bottom: 1.5rem;
}
.confirmation-details__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .875rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.confirmation-details__row:last-child {
  border-bottom: none;
}
.confirmation-details__label {
  color: #6b7280;
  font-size: .9375rem;
}
.confirmation-details__label i {
  color: var(--imperium-gold);
  width: 1.25rem;
  margin-right: .5rem;
}
.confirmation-details__value {
  font-weight: 600;
  color: #1f2937;
  font-size: .9375rem;
  text-align: right;
}
.confirmation-details__badge {
  display: inline-block;
  margin-left: .5rem;
  padding: .125rem .5rem;
  background: rgba(199,160,82,.15);
  color: var(--imperium-gold);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 1rem;
}
.confirmation-next-steps {
  padding: 1.25rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: .75rem;
  margin-bottom: 1.25rem;
}
.confirmation-next-steps__title {
  font-size: .9375rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: .75rem;
}
.confirmation-next-steps__title i {
  margin-right: .5rem;
}
.confirmation-next-steps__list {
  list-style: decimal;
  padding-left: 1.25rem;
  color: #1d4ed8;
  font-size: .875rem;
}
.confirmation-next-steps__list li {
  margin-bottom: .5rem;
  padding-left: .25rem;
}
.confirmation-next-steps__list li:last-child {
  margin-bottom: 0;
}
.confirmation-next-steps__list strong {
  font-weight: 700;
}
.confirmation-contact {
  padding: 1rem;
  background: #f9fafb;
  border-radius: .75rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.confirmation-contact p {
  font-size: .875rem;
  color: #6b7280;
  margin-bottom: .5rem;
}
.confirmation-contact__info {
  font-weight: 600;
  color: var(--imperium-navy);
}
.confirmation-contact__info i {
  margin-right: .25rem;
  color: var(--imperium-gold);
}
.confirmation-contact__divider {
  margin: 0 .75rem;
  color: #d1d5db;
}
.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width:640px) {
  .confirmation-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.results-page {
  min-height: 100vh;
  background: #f9fafb;
}
.results-summary {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.results-summary__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem 0;
}
.results-summary__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.results-summary__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #4b5563;
}
.results-summary__item i {
  color: var(--imperium-gold);
}
.results-summary__item span:first-child {
  font-weight: 700;
  color: var(--imperium-navy);
}
.results-summary__divider {
  color: #d1d5db;
}
.results-summary__count {
  font-size: .875rem;
  font-weight: 600;
  color: var(--imperium-gold);
}
.results-summary__modify-btn {
  padding: .75rem 1.25rem;
  white-space: nowrap;
}
.results-content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.results-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.results-sidebar {
  width: 100%;
}
.results-main {
  flex: 1;
  min-width: 0;
}
.hotels-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hotel-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  border: 1px solid #e5e7eb;
  transition: .4s;
  position: relative;
  animation: .5s ease-out forwards fadeInUp;
  opacity: 0;
  min-height: 220px;
  height: 220px;
}
.hotel-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  opacity: 0;
  transition: opacity .3s;
  z-index: 5;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,31,63,.15);
  border-color: var(--imperium-gold);
}
.hotel-card:hover::before {
  opacity: 1;
}
.hotel-card__image {
  position: relative;
  width: 280px;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark),var(--imperium-navy));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-card__image-placeholder i {
  font-size: 3rem;
  color: var(--imperium-gold);
  opacity: .3;
}
.hotel-card__overlay {
  display: none;
}
.hotel-card__stars {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 10px;
  background: var(--imperium-gold);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(199,160,82,.4);
  z-index: 10;
}
.hotel-card__stars i {
  width: 11px;
  height: 11px;
  color: var(--imperium-navy);
  font-size: .6875rem;
}
.hotel-card__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: .3s;
  z-index: 10;
}
.hotel-card__favorite:hover {
  transform: scale(1.1);
  background: #fef2f2;
}
.hotel-card__favorite.active {
  background: #fef2f2;
  color: #ef4444;
}
.hotel-card__favorite i {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  transition: color .3s;
  font-size: 1rem;
}
.hotel-card__favorite.active i,
.hotel-card__favorite:hover i {
  color: #ef4444;
}
.hotel-card__photo-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  border-radius: 7px;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  z-index: 10;
}
.hotel-card__photo-count i {
  width: 13px;
  height: 13px;
}
.hotel-card__content {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 220px;
  overflow: hidden;
}
.hotel-card__header {
  margin-bottom: .375rem;
}
.hotel-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
  transition: color .3s;
}
.hotel-card:hover .hotel-card__title {
  color: var(--imperium-gold);
}
.hotel-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.hotel-card__location {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  color: #6b7280;
  font-weight: 500;
}
.hotel-card__location i {
  width: 13px;
  height: 13px;
  color: var(--imperium-gold);
}
.hotel-card__category {
  padding: 3px 10px;
  background: rgba(199,160,82,.1);
  border: 1px solid rgba(199,160,82,.3);
  border-radius: 6px;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--imperium-gold);
}
.hotel-card__description {
  font-size: .8125rem;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: calc(100% - 160px);
}
.hotel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0;
  max-width: calc(100% - 160px);
  margin-top: auto;
}
.hotel-card__tag {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: #475569;
  transition: .2s;
}
.hotel-card__tag:hover {
  border-color: var(--imperium-gold);
  background: rgba(199,160,82,.05);
}
.hotel-card__tag i {
  width: 12px;
  height: 12px;
  color: var(--imperium-gold);
}
.hotel-card__tag--more {
  background: rgba(199,160,82,.1);
  border-color: rgba(199,160,82,.3);
  color: var(--imperium-gold);
  font-weight: 600;
}
.hotel-card__features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
  max-width: calc(100% - 160px);
}
.hotel-card__boardings {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}
.hotel-card__boarding {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .625rem;
  background: linear-gradient(135deg,var(--imperium-navy),#1e3a5f);
  border-radius: 4px;
  font-size: .6875rem;
  font-weight: 600;
  color: #fff;
}
.hotel-card__boarding i {
  font-size: .625rem;
  color: var(--imperium-gold);
}
.hotel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}
.hotel-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #64748b;
  transition: .2s;
}
.hotel-card__tag:hover {
  background: rgba(199,160,82,.1);
  border-color: var(--imperium-gold);
  color: var(--imperium-gold);
}
.hotel-card__tag i {
  font-size: .75rem;
}
.hotel-card__tag--more {
  width: auto;
  padding: 0 .5rem;
  background: rgba(199,160,82,.1);
  border-color: rgba(199,160,82,.3);
  color: var(--imperium-gold);
  font-size: .6875rem;
  font-weight: 600;
}
.hotel-card__footer {
  display: none;
}
.hotel-card__price {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  text-align: right;
  background: linear-gradient(135deg,#fef9f0,#fefce8);
  border: 2px solid rgba(199,160,82,.3);
  border-radius: .75rem;
  padding: .625rem .875rem .5rem;
  min-width: 130px;
}
.hotel-card__price-label {
  font-size: .6875rem;
  color: #92400e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.hotel-card__price-amount {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: .25rem;
}
.hotel-card__price-value {
  font-family: 'Space Grotesk',sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--imperium-gold);
  line-height: 1;
}
.hotel-card__price-currency {
  font-size: .875rem;
  font-weight: 700;
  color: var(--imperium-navy);
}
.hotel-card__price-nights {
  font-size: .6875rem;
  color: #92400e;
  margin-top: 4px;
  font-weight: 500;
}
.hotel-card__price-unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1rem;
  background: #f8fafc;
  border-radius: .75rem;
  color: #64748b;
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid #e5e7eb;
}
.hotel-card__cta {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 8px 14px;
  min-width: 130px;
  background: linear-gradient(135deg,var(--imperium-gold),#b8922f);
  color: #fff;
  font-weight: 700;
  font-size: .8125rem;
  border-radius: .75rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(199,160,82,.4);
  transition: .3s;
  white-space: nowrap;
}
.hotel-card__cta:hover {
  box-shadow: 0 8px 24px rgba(199,160,82,.5);
  background: linear-gradient(135deg,#d4a843,var(--imperium-gold));
}
.hotel-card__cta i {
  width: 12px;
  height: 12px;
  transition: transform .3s;
}
.hotel-card__cta:hover i {
  transform: translateX(3px);
}
.no-results {
  background: #fff;
  border-radius: 1.5rem;
  padding: 5rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid #e5e7eb;
}
.no-results__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  border-radius: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,31,63,.2);
}
.no-results__icon i {
  font-size: 3rem;
  color: var(--imperium-gold);
}
.no-results__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .75rem;
}
.no-results__description {
  font-size: .9375rem;
  color: #6b7280;
  max-width: 25rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.filter-sidebar {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid #e5e7eb;
}
.filter-header {
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-header h2 {
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .625rem;
  margin: 0;
}
.filter-header h2 i {
  color: var(--imperium-gold);
}
.filter-reset-btn {
  padding: 6px 12px;
  background: rgba(199,160,82,.15);
  border: 1px solid rgba(199,160,82,.3);
  border-radius: 7px;
  color: var(--imperium-gold);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}
.filter-reset-btn:hover {
  background: var(--imperium-gold);
  color: var(--imperium-navy);
}
.filter-content {
  padding: 1rem;
}
.filter-section,
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section-title {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--imperium-navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.filter-search-wrapper {
  position: relative;
}
.filter-search-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #9ca3af;
}
.filter-search-input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: .8125rem;
  transition: .3s;
}
.filter-search-input:focus {
  outline: 0;
  border-color: var(--imperium-gold);
  box-shadow: 0 0 0 4px rgba(199,160,82,.1);
}
.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: .2s;
  border: 1px solid transparent;
}
.filter-option:hover {
  background: rgba(199,160,82,.05);
  border-color: rgba(199,160,82,.2);
}
.filter-option input[type=checkbox],
.filter-option input[type=radio] {
  width: 14px;
  height: 14px;
  accent-color: var(--imperium-gold);
  cursor: pointer;
}
.filter-option-label {
  font-size: .75rem;
  font-weight: 500;
  color: #475569;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .375rem;
}
.filter-option-label i {
  width: 14px;
  color: var(--imperium-gold);
  font-size: .6875rem;
}
.filter-option:hover .filter-option-label {
  color: var(--imperium-navy);
}
.filter-option-favorite {
  border: 2px solid #fecaca;
  background: #fef2f2;
}
.filter-option-favorite:hover {
  border-color: #f87171;
  background: #fee2e2;
}
.filter-option-favorite .filter-option-label {
  color: #ef4444;
  font-weight: 600;
}
.filter-option-favorite i {
  color: #ef4444;
}
.filter-divider {
  height: 1px;
  background: #e5e7eb;
  margin: .625rem 0;
}
.modal-city-suggestions {
  position: absolute;
  top: calc(100% + .25rem);
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border: 2px solid var(--imperium-gold);
  border-radius: 10px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.modal-city-item {
  width: 100%;
  padding: .75rem 1rem;
  border: none;
  background: 0 0;
  text-align: left;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--imperium-navy);
  transition: background .15s;
  display: block;
  border-bottom: 1px solid #f1f5f9;
}
.modal-city-item:last-child {
  border-bottom: none;
}
.modal-city-item:hover {
  background: rgba(199,160,82,.1);
}
.modal-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.modal-guests-btn {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--imperium-navy);
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .2s;
}
.modal-guests-btn.active,
.modal-guests-btn:hover {
  border-color: var(--imperium-gold);
  background: #fff;
}
.modal-guests-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin-bottom: .5rem;
  background: #fff;
  border: 2px solid var(--imperium-gold);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,.15);
  z-index: 100;
}
.modal-room-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .875rem;
  margin-bottom: .75rem;
}
.modal-room-card:last-child {
  margin-bottom: 0;
}
.modal-room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}
.modal-room-number {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .875rem;
  color: var(--imperium-navy);
}
.modal-room-badge {
  width: 24px;
  height: 24px;
  background: var(--imperium-gold);
  color: var(--imperium-navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}
.modal-room-remove {
  width: 24px;
  height: 24px;
  background: #fee2e2;
  color: #ef4444;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  transition: .2s;
}
.modal-room-remove:hover {
  background: #fecaca;
}
.modal-room-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.modal-room-select {
  padding: .5rem .75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--imperium-navy);
  background: #fff;
  cursor: pointer;
}
.modal-room-select:focus {
  outline: 0;
  border-color: var(--imperium-gold);
}
.modal-add-room {
  width: 100%;
  padding: .625rem;
  border: 2px dashed rgba(199,160,82,.5);
  border-radius: 10px;
  background: rgba(199,160,82,.05);
  color: var(--imperium-gold);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  transition: .2s;
}
.modal-add-room:hover {
  background: rgba(199,160,82,.1);
  border-color: var(--imperium-gold);
}
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.search-modal.hidden {
  display: none!important;
}
.search-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
}
.search-modal-card {
  position: relative;
  z-index: 10000;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  overflow: visible;
  animation: .3s ease-out modalSlideIn;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-modal-header {
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-modal-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.search-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  transition: .2s;
}
.search-modal-close:hover {
  background: rgba(255,255,255,.2);
}
.search-modal-body {
  padding: 1.5rem;
}
.modal-form-group {
  margin-bottom: 1rem;
}
.modal-form-group:last-child {
  margin-bottom: 0;
}
.modal-form-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--imperium-navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.modal-form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--imperium-navy);
  background: #f9fafb;
  transition: .2s;
}
.modal-form-input:focus {
  outline: 0;
  border-color: var(--imperium-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(199,160,82,.15);
}
.modal-submit-btn {
  width: 100%;
  padding: .875rem 1.5rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
  box-shadow: 0 4px 14px rgba(0,31,63,.3);
  transition: .3s;
}
.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,31,63,.4);
}
@media (min-width:640px) {
  .results-summary__content {
    flex-direction: row;
    align-items: center;
  }
  .results-summary__divider {
    display: inline;
  }
}
@media (min-width:1024px) {
  .results-layout {
    flex-direction: row;
    gap: 2rem;
  }
  .results-sidebar {
    width: 18rem;
    flex-shrink: 0;
  }
  .hotel-card {
    grid-template-columns: 280px 1fr;
  }
  .hotel-card__image {
    min-height: 220px;
  }
  .hotel-card__content {
    padding: 1.25rem 180px 1.25rem 1.25rem;
  }
  .hotel-card__footer {
    flex-direction: row;
  }
}
@media (max-width:1023px) {
  .results-summary__divider {
    display: none;
  }
  .hotel-card {
    grid-template-columns: 1fr;
  }
  .hotel-card__image {
    min-height: 180px;
  }
  .hotel-card__content {
    padding: 6.5rem 1rem 1rem;
  }
  .hotel-card__price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    min-width: auto;
    padding: .5rem .75rem .375rem;
    border-radius: .5rem;
  }
  .hotel-card__price-value {
    font-size: 1.25rem;
  }
  .hotel-card__cta {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    min-width: auto;
    padding: 8px 12px;
    font-size: .75rem;
    border-radius: .5rem;
  }
}
.auth-container--register {
  max-width: 70rem;
}
.auth-form--register {
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.form-error {
  margin-top: .25rem;
  font-size: .75rem;
  color: #ef4444;
}
.form-label-optional {
  color: #9ca3af;
  font-weight: 400;
  font-size: .75rem;
}
.form-hint {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .625rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: .5rem;
}
.form-hint i {
  color: #2563eb;
  flex-shrink: 0;
  margin-top: .125rem;
}
.form-hint p {
  font-size: .75rem;
  color: #1e40af;
}
@media (max-width:640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width:1024px) {
  .nav__menu {
    display: none;
  }
  .nav__mobile-toggle {
    display: block;
  }
  .search-form {
    grid-template-columns: 1fr;
  }
  .search-field--dates,
  .search-field--destination,
  .search-field--guests,
  .search-field--submit {
    grid-column: span 1;
  }
}
@media (max-width:768px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .hero {
    min-height: 50vh;
  }
  .section {
    padding: 2rem 0;
  }
  .top-bar__auth {
    display: none;
  }
  .auth-page {
    padding: 1rem;
  }
}
.page-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1900/300;
  max-height: 300px;
  min-height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-hero__content,
.page-hero__overlay {
  display: none;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2rem;
  font-size: .6875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.page-hero__badge i {
  color: var(--imperium-gold);
}
.page-hero__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.page-hero__title-highlight {
  color: var(--imperium-gold);
}
.page-hero__subtitle {
  font-size: .75rem;
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}
@media (max-width:768px) {
  .page-hero__title {
    font-size: 1.125rem;
  }
  .page-hero__subtitle {
    font-size: .6875rem;
  }
  .page-hero__badge {
    padding: .2rem .5rem;
    font-size: .5625rem;
  }
}
@media (max-width:480px) {
  .page-hero {
    min-height: 80px;
  }
  .page-hero__title {
    font-size: 1rem;
  }
  .page-hero__subtitle {
    display: none;
  }
  .page-hero__content {
    padding: .5rem;
  }
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 1.5rem;
}
.hotel-browse-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,31,63,.08);
  border: 2px solid transparent;
  transition: .3s;
}
.hotel-browse-card:hover {
  border-color: var(--imperium-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,31,63,.15);
}
.hotel-browse-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.hotel-browse-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.hotel-browse-card:hover .hotel-browse-card__image img {
  transform: scale(1.05);
}
.hotel-browse-card__stars {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: flex;
  gap: .125rem;
  padding: .375rem .625rem;
  background: rgba(0,31,63,.8);
  backdrop-filter: blur(8px);
  border-radius: .5rem;
}
.hotel-browse-card__stars i {
  color: var(--imperium-gold);
  font-size: .625rem;
}
.hotel-browse-card__content {
  padding: 1.25rem;
}
.hotel-browse-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.hotel-browse-card__location {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.hotel-browse-card__location i {
  color: var(--imperium-gold);
}
.listing-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,31,63,.08);
  border: 2px solid transparent;
  transition: .3s;
}
.listing-card:hover {
  border-color: var(--imperium-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,31,63,.15);
}
.listing-card__image {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-gold));
}
.listing-card__image img,
.listing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-card__image-placeholder i {
  font-size: 3rem;
  color: rgba(255,255,255,.5);
}
.listing-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  background: var(--imperium-gold);
  color: var(--imperium-navy);
  border-radius: 2rem;
  font-size: .6875rem;
  font-weight: 700;
}
.listing-card__price {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  padding: .5rem .875rem;
  background: rgba(0,31,63,.9);
  backdrop-filter: blur(8px);
  border-radius: .5rem;
  color: var(--imperium-gold);
  font-size: 1rem;
  font-weight: 700;
}
.listing-card__content {
  padding: 1.25rem;
}
.listing-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.listing-card__meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.listing-card__meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: #6b7280;
}
.listing-card__meta-item i {
  color: var(--imperium-gold);
  width: 1rem;
}
.listing-card__meta-item--warning {
  color: #f59e0b;
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.empty-state__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(199,160,82,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.empty-state__icon i {
  font-size: 1.5rem;
  color: var(--imperium-gold);
}
.empty-state__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
}
.empty-state__text {
  font-size: .875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.vd-page {
  padding: 1rem 0 2.5rem;
  background: #f7f6f2;
}
.vd-breadcrumb {
  margin-bottom: .875rem;
}
.vd-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .72rem;
  color: #6b7280;
  text-decoration: none;
  transition: color .15s;
}
.vd-breadcrumb a:hover {
  color: var(--imperium-navy);
}
.vd-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width:900px) {
  .vd-layout {
    grid-template-columns: 3fr 2fr;
  }
}
.vd-gallery {
  border-radius: .5rem;
  overflow: hidden;
  background: #111;
  margin-bottom: .75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  position: relative;
}
.vd-gallery__main {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.vd-gallery__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .4s;
}
.vd-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,.2);
  font-size: 2.5rem;
}
.vd-gallery__thumbs {
  display: flex;
  gap: 3px;
  padding: 4px;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}
.vd-gallery__thumbs::-webkit-scrollbar {
  display: none;
}
.vd-gallery__thumb {
  width: 60px;
  height: 42px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color .15s,opacity .15s;
  opacity: .6;
}
.vd-gallery__thumb--active,
.vd-gallery__thumb:hover {
  border-color: var(--imperium-gold);
  opacity: 1;
}
.vd-gallery__counter {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 2rem;
  z-index: 2;
  letter-spacing: .04em;
}
.vd-title-block {
  background: #fff;
  border-radius: .5rem;
  padding: .75rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
  margin-bottom: .75rem;
  border: 1px solid #ede9df;
}
.vd-title-block__badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--imperium-gold);
  color: var(--imperium-navy);
  font-size: .6rem;
  font-weight: 800;
  padding: .15rem .55rem;
  border-radius: 2rem;
  margin-bottom: .4rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.vd-title-block__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--imperium-navy);
  line-height: 1.25;
  margin-bottom: .4rem;
}
.vd-title-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .875rem;
  font-size: .7rem;
  color: #6b7280;
}
.vd-title-block__meta i {
  color: var(--imperium-gold);
  margin-right: .2rem;
}
.vd-title-block__desc {
  font-size: .72rem;
  color: #4b5563;
  line-height: 1.6;
  margin-top: .5rem;
  border-top: 1px solid #f3f0e8;
  padding-top: .5rem;
}
.vd-departs {
  background: #fff;
  border-radius: .5rem;
  border: 1px solid #ede9df;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: .75rem;
}
.vd-departs__label {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .875rem;
  font-size: .65rem;
  font-weight: 800;
  color: var(--imperium-navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #faf8f3;
  border-bottom: 1px solid #ede9df;
}
.vd-departs__label i {
  color: var(--imperium-gold);
}
.vd-departs__grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 160px;
}
@media (max-width:540px) {
  .vd-departs__grid {
    grid-template-columns: 1fr;
  }
}
.vd-dates-col {
  border-right: 1px solid #ede9df;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ede9df transparent;
}
.vd-dates-col::-webkit-scrollbar {
  width: 4px;
}
.vd-dates-col::-webkit-scrollbar-thumb {
  background: #ede9df;
  border-radius: 4px;
}
.vd-date-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  padding: .55rem .75rem;
  border: none;
  border-bottom: 1px solid #f3f0e8;
  cursor: pointer;
  background: #fff;
  transition: background .12s;
}
.vd-date-btn:hover {
  background: #faf8f3;
}
.vd-date-btn:last-child {
  border-bottom: none;
}
.vd-date-btn--active {
  background: #fef9ec!important;
  border-left: 3px solid var(--imperium-gold);
  padding-left: calc(.75rem - 3px);
}
.vd-date-btn__date {
  font-size: .78rem;
  font-weight: 700;
  color: var(--imperium-navy);
  line-height: 1.2;
}
.vd-date-btn--active .vd-date-btn__date {
  color: #8b6200;
}
.vd-date-btn__seats {
  font-size: .62rem;
  color: #9ca3af;
  margin-top: .1rem;
}
.vd-date-btn--active .vd-date-btn__seats {
  color: #b37f00;
}
.vd-pack-col {
  padding: .75rem;
  display: flex;
  flex-direction: column;
}
.vd-pack__no-dep {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: .75rem;
  color: #9ca3af;
}
.vd-pack__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #f3f0e8;
  flex-wrap: wrap;
  gap: .25rem;
}
.vd-pack__dates {
  font-size: .7rem;
  font-weight: 600;
  color: var(--imperium-navy);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.vd-pack__dates i {
  color: var(--imperium-gold);
  font-size: .6rem;
}
.vd-pack__seats-badge {
  font-size: .6rem;
  background: #faf8f3;
  border: 1px solid #e0d9cc;
  padding: .1rem .4rem;
  border-radius: 2rem;
  color: #6b7280;
  white-space: nowrap;
}
.vd-pack__prices {
  flex: 1;
}
.vd-pack__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem 0;
  font-size: .72rem;
  border-bottom: 1px solid #f7f4ee;
}
.vd-pack__row:last-child {
  border-bottom: none;
}
.vd-pack__row--highlight {
  background: #faf8f3;
  margin: 0 -.75rem;
  padding: .3rem .75rem;
}
.vd-pack__label {
  color: #6b7280;
}
.vd-pack__price {
  font-weight: 700;
  color: var(--imperium-navy);
  font-size: .8rem;
}
.vd-pack__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  background: linear-gradient(135deg,var(--imperium-gold),#d4a842);
  color: var(--imperium-navy);
  font-size: .72rem;
  font-weight: 800;
  padding: .55rem .75rem;
  border-radius: .375rem;
  text-decoration: none;
  margin-top: .625rem;
  transition: filter .15s,transform .12s;
  letter-spacing: .02em;
}
.vd-pack__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.vd-sidebar {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ── Departure Inline CTA (above card list) ── */
.dep-inline-cta { margin-bottom:.75rem; }
.dep-inline-cta__ready { display:flex; align-items:center; justify-content:space-between; gap:1rem; background:linear-gradient(135deg,#fffbeb,#fef3c7); border:1px solid #f59e0b; border-radius:.75rem; padding:.875rem 1.1rem; flex-wrap:wrap; }
.dep-inline-cta__summary { display:flex; flex-direction:column; gap:.15rem; min-width:0; }
.dep-inline-cta__date { font-size:.875rem; font-weight:700; color:#92400e; }
.dep-inline-cta__seats { font-size:.72rem; color:#b45309; }
.dep-inline-cta__btn { display:inline-flex; align-items:center; gap:.5rem; background:linear-gradient(135deg,#C7A052,#9a7635); color:#fff; font-weight:700; font-size:.85rem; padding:.65rem 1.25rem; border-radius:.5rem; text-decoration:none; white-space:nowrap; flex-shrink:0; transition:filter .15s; }
.dep-inline-cta__btn:hover { filter:brightness(1.1); color:#fff; }
.dep-inline-cta__full { display:flex; align-items:center; gap:.5rem; background:#fef2f2; border:1px solid #fecaca; border-radius:.75rem; padding:.75rem 1rem; color:#dc2626; font-size:.82rem; font-weight:600; }
.dep-inline-cta__hint { display:flex; align-items:center; gap:.5rem; background:#f9fafb; border:1px dashed #d1d5db; border-radius:.75rem; padding:.75rem 1rem; color:#9ca3af; font-size:.82rem; }

/* ── Fixed Bottom Booking Bar (mobile only) ── */
@media (min-width:900px) { .vd-book-bar { display:none !important; } }
.vd-book-bar { position:fixed; bottom:0; left:0; right:0; z-index:50; background:#fff; border-top:2px solid #C7A052; box-shadow:0 -4px 24px rgba(0,0,0,.12); }
.vd-book-bar--enter { transition:transform .25s ease, opacity .25s ease; }
.vd-book-bar--hidden { transform:translateY(100%); opacity:0; }
.vd-book-bar--visible { transform:translateY(0); opacity:1; }
.vd-book-bar__inner { max-width:1200px; margin:0 auto; padding:.75rem 1.5rem; display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.vd-book-bar__info { display:flex; flex-direction:column; gap:.1rem; flex:1; min-width:0; }
.vd-book-bar__label { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:#C7A052; }
.vd-book-bar__date { font-size:.875rem; font-weight:600; color:#111827; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.vd-book-bar__prices { display:flex; gap:1rem; flex-wrap:wrap; }
.vd-book-bar__price { font-size:.8rem; color:#6b7280; white-space:nowrap; }
.vd-book-bar__price strong { color:#111827; font-weight:700; }
.vd-book-bar__btn { display:inline-flex; align-items:center; gap:.5rem; background:linear-gradient(135deg,#C7A052,#a07835); color:#fff; font-size:.875rem; font-weight:700; padding:.65rem 1.5rem; border-radius:.5rem; text-decoration:none; white-space:nowrap; flex-shrink:0; transition:filter .15s; }
.vd-book-bar__btn:hover { filter:brightness(1.08); color:#fff; }
@media (max-width:640px) {
  .vd-book-bar__inner { padding:.65rem 1rem; gap:.75rem; }
  .vd-book-bar__prices { display:none; }
  .vd-book-bar__btn { flex:1; justify-content:center; }
}
.vd-includes {
  background: #fff;
  border-radius: .5rem;
  border: 1px solid #ede9df;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  overflow: hidden;
}
.vd-includes__header {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .62rem;
  font-weight: 800;
  padding: .45rem .875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vd-includes--green .vd-includes__header {
  background: var(--imperium-gold);
  color: var(--imperium-navy);
}
.vd-includes--red .vd-includes__header {
  background: var(--imperium-navy);
  color: var(--imperium-gold);
}
.vd-includes__list {
  list-style: none;
  padding: .625rem .875rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.vd-includes__item {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .72rem;
  color: #374151;
  line-height: 1.45;
}
.vd-includes__icon {
  flex-shrink: 0;
  font-size: .6rem;
  margin-top: .15rem;
}
.vd-includes__icon--green {
  color: var(--imperium-gold);
}
.vd-includes__icon--red {
  color: var(--imperium-navy);
}
.vd-program {
  background: #fff;
  border-radius: .5rem;
  border: 1px solid #ede9df;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  overflow: hidden;
}
.vd-program__header {
  background: var(--imperium-navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vd-program__header i {
  color: var(--imperium-gold);
}
.vd-program__timeline {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vd-program__day {
  display: flex;
  gap: .75rem;
  position: relative;
  padding-bottom: .875rem;
}
.vd-program__day:last-child {
  padding-bottom: 0;
}
.vd-program__day::before {
  content: '';
  position: absolute;
  left: .875rem;
  top: 1.75rem;
  bottom: 0;
  width: 1.5px;
  background: #ede9df;
}
.vd-program__day:last-child::before {
  display: none;
}
.vd-program__day-marker {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--imperium-gold);
  color: var(--imperium-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.vd-program__day-body {
  flex: 1;
  padding-top: .15rem;
}
.vd-program__day-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .2rem;
}
.vd-program__day-text {
  font-size: .72rem;
  color: #4b5563;
  line-height: 1.55;
}
.voyage-detail {
  padding: 1rem 0;
  background: linear-gradient(to bottom,#fff,var(--imperium-light));
  overflow: hidden;
}
.voyage-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 100%;
}
.voyage-detail__grid>* {
  min-width: 0;
  max-width: 100%;
}
@media (min-width:1024px) {
  .voyage-detail__grid {
    grid-template-columns: 2fr 1fr;
  }
}
.voyage-program {
  background: #fff;
  border-radius: .5rem;
  padding: .875rem;
  box-shadow: 0 1px 6px rgba(0,31,63,.05);
}
.voyage-program__title {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .625rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--imperium-light);
}
.voyage-program__title i {
  color: var(--imperium-gold);
  font-size: .75rem;
}
.days-timeline {
  position: relative;
  padding-left: 1.5rem;
}
.days-timeline::before {
  content: '';
  position: absolute;
  left: .4rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,var(--imperium-gold),var(--imperium-navy));
  border-radius: 1px;
}
.day-item {
  position: relative;
  padding-bottom: .625rem;
  margin-bottom: .625rem;
  overflow: hidden;
  min-width: 0;
}
.day-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.day-item__marker {
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: var(--imperium-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  font-weight: 700;
  color: var(--imperium-navy);
  box-shadow: 0 0 0 3px #fff,0 0 0 4px rgba(199,160,82,.2);
}
.day-item__header {
  display: flex;
  align-items: center;
  gap: .375rem;
  margin-bottom: .375rem;
}
.day-item__number {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--imperium-navy);
  background: rgba(199,160,82,.1);
  padding: .125rem .5rem;
  border-radius: 2rem;
}
.day-item__content {
  background: var(--imperium-light);
  border-radius: .375rem;
  padding: .5rem .75rem;
  border-left: 2px solid var(--imperium-gold);
  overflow: hidden;
  min-width: 0;
}
.day-item__content p {
  font-size: .75rem;
  color: #4b5563;
  line-height: 1.5;
  white-space: pre-line;
  word-break: break-word;
  overflow-wrap: break-word;
}
.voyage-sidebar {
  position: sticky;
  top: 5rem;
}
.voyage-price-card {
  background: #fff;
  border-radius: .5rem;
  padding: .875rem;
  box-shadow: 0 1px 6px rgba(0,31,63,.05);
  border: 1px solid rgba(199,160,82,.2);
}
.voyage-price-card__header {
  text-align: center;
  padding-bottom: .625rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: .625rem;
}
.voyage-price-card__label {
  font-size: .6875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.voyage-price-card__amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--imperium-navy);
  line-height: 1;
  margin-top: .25rem;
}
.voyage-price-card__child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  margin-top: .375rem;
  padding-top: .375rem;
  border-top: 1px dashed #e5e7eb;
  font-size: .75rem;
  color: #6b7280;
}
.voyage-price-card__child strong {
  color: var(--imperium-navy);
  font-weight: 700;
}
.voyage-price-card__discount-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: linear-gradient(135deg,#059669,#10b981);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 2rem;
  margin-bottom: .5rem;
}
.voyage-price-card__original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  margin-top: .375rem;
  font-size: .75rem;
  color: #9ca3af;
}
.voyage-price-card__original s {
  color: #ef4444;
}
.voyage-price-card__amount span {
  font-size: .8125rem;
}
.voyage-price-card__info {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  margin-bottom: .75rem;
}
.voyage-price-card__info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
}
.voyage-price-card__info-label {
  display: flex;
  align-items: center;
  gap: .375rem;
  color: #6b7280;
}
.voyage-price-card__info-label i {
  color: var(--imperium-gold);
  font-size: .6875rem;
}
.voyage-price-card__info-value {
  font-weight: 700;
  color: var(--imperium-navy);
}
.voyage-price-card__warning {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: .375rem;
  margin-bottom: .625rem;
  font-size: .75rem;
  color: #92400e;
}
.voyage-price-card__warning i {
  flex-shrink: 0;
}
.voyage-back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--imperium-navy);
  text-decoration: none;
  transition: color .3s;
}
.voyage-back-link:hover {
  color: var(--imperium-gold);
}
.voyage-program--arabic {
  direction: rtl;
  text-align: right;
}
.voyage-program--arabic .days-timeline {
  padding-left: 0;
  padding-right: 2rem;
}
.voyage-program--arabic .days-timeline::before {
  left: auto;
  right: .5rem;
}
.voyage-program--arabic .day-item__marker {
  left: auto;
  right: -2rem;
}
.voyage-program--arabic .day-item__content {
  border-left: none;
  border-right: 3px solid var(--imperium-gold);
}
.voyage-gallery {
  background: #fff;
  border-radius: .5rem;
  padding: .5rem;
  box-shadow: 0 1px 6px rgba(0,31,63,.05);
  margin-bottom: .75rem;
  overflow: hidden;
}
.voyage-gallery__title {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .625rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--imperium-light);
}
.voyage-gallery__title i {
  color: var(--imperium-gold);
}
.voyage-carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: .75rem;
}
.voyage-carousel-wrapper {
  position: relative;
  border-radius: .375rem;
  overflow: hidden;
  background: var(--imperium-light);
  height: 240px;
}
.voyage-carousel-track {
  display: flex;
  height: 100%;
  transition: transform .4s ease-in-out;
}
.voyage-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  max-width: 100%;
}
.voyage-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width:768px) {
  .voyage-carousel-wrapper {
    height: 280px;
  }
}
@media (max-width:640px) {
  .voyage-carousel-wrapper {
    height: 180px;
  }
}
.voyage-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--imperium-navy);
  transition: .3s;
}
.voyage-carousel-nav:hover {
  background: var(--imperium-gold);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.voyage-carousel-nav--prev {
  left: .5rem;
}
.voyage-carousel-nav--next {
  right: .5rem;
}
.voyage-carousel-dots {
  position: absolute;
  bottom: .5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: .375rem;
  z-index: 10;
}
.voyage-carousel-dot {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  padding: 0;
}
.voyage-carousel-dot:hover {
  background: rgba(255,255,255,.9);
}
.voyage-carousel-dot.active {
  background: var(--imperium-gold);
  width: 20px;
  border-radius: 4px;
}
.voyage-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width:768px) {
  .voyage-gallery__grid {
    grid-template-columns: repeat(4,1fr);
  }
}
.voyage-gallery__item {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--imperium-light);
}
.voyage-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.voyage-gallery__item:hover .voyage-gallery__image {
  transform: scale(1.05);
}
.voyage-inclusions {
  background: #fff;
  border-radius: .5rem;
  padding: .875rem;
  box-shadow: 0 1px 6px rgba(0,31,63,.05);
  margin-bottom: .75rem;
}
.voyage-inclusions__section {
  margin-bottom: .625rem;
}
.voyage-inclusions__section:last-child {
  margin-bottom: 0;
}
.voyage-inclusions__title {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: .5rem;
  padding-bottom: .375rem;
  border-bottom: 1px solid #dcfce7;
}
.voyage-inclusions__title i {
  font-size: .75rem;
}
.voyage-inclusions__title--excludes {
  color: #dc2626;
  border-bottom-color: #fee2e2;
}
.voyage-inclusions__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.voyage-inclusions__item {
  display: flex;
  align-items: flex-start;
  gap: .375rem;
  font-size: .75rem;
  margin-bottom: .375rem;
  line-height: 1.4;
}
.voyage-inclusions__item:last-child {
  margin-bottom: 0;
}
.voyage-inclusions__item--included i {
  color: #16a34a;
  margin-top: .125rem;
}
.voyage-inclusions__item--excluded i {
  color: #dc2626;
  margin-top: .125rem;
}
.voyage-inclusions__item span {
  color: #4b5563;
}
.hotels-search-section {
  background: linear-gradient(135deg,var(--imperium-navy) 0,var(--imperium-dark) 100%);
  padding: 2rem 0;
}
.hotels-search-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hotels-search-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.hotels-search-subtitle {
  font-size: .9375rem;
  color: rgba(255,255,255,.8);
}
.text-gold {
  color: var(--imperium-gold);
}
.hotels-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
.hotels-sidebar {
  position: sticky;
  top: 5rem;
}
.filters-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,31,63,.08);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  color: #fff;
}
.filters-title {
  font-size: .9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
}
.filters-title i {
  color: var(--imperium-gold);
}
.filters-reset {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.filters-reset:hover {
  color: var(--imperium-gold);
}
.filter-section {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}
.filter-section:last-child {
  border-bottom: none;
}
.filter-section-title {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .75rem;
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: .625rem;
  cursor: pointer;
  padding: .5rem;
  border-radius: .5rem;
  transition: background .2s;
}
.filter-checkbox:hover {
  background: var(--imperium-light);
}
.filter-checkbox input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--imperium-gold);
}
.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: .125rem;
}
.filter-checkbox-label i {
  font-size: .75rem;
}
.filter-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.filter-city-link {
  padding: .375rem .75rem;
  background: var(--imperium-light);
  color: var(--imperium-navy);
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}
.filter-city-link.active,
.filter-city-link:hover {
  background: var(--imperium-gold);
  color: var(--imperium-navy);
}
.hotels-content {
  min-height: 400px;
}
.hotels-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.hotels-results-count {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--imperium-navy);
}
.hotels-results-count i {
  color: var(--imperium-gold);
}
@media (max-width:992px) {
  .hotels-layout {
    grid-template-columns: 1fr;
  }
  .hotels-sidebar {
    position: relative;
    top: 0;
  }
  .filter-section {
    padding: .75rem 1rem;
  }
}
.section--dark {
  background: linear-gradient(135deg,var(--imperium-navy) 0,var(--imperium-dark) 50%,var(--imperium-navy) 100%);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7a052' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.section__header--light .section__subtitle,
.section__header--light .section__title {
  color: #fff;
}
.section__badge--gold {
  background: rgba(199,160,82,.2);
  color: var(--imperium-gold);
  border: 1px solid rgba(199,160,82,.3);
}
.section__badge i,
.section__badge--gold i {
  margin-right: .375rem;
}
.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.carousel-container {
  position: relative;
  padding: 0 3rem;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: .3s;
  color: var(--imperium-navy);
  font-size: 1rem;
}
.carousel-nav:hover {
  background: var(--imperium-gold);
  border-color: var(--imperium-gold);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav--light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.carousel-nav--light:hover {
  background: var(--imperium-gold);
  border-color: var(--imperium-gold);
}
.offer-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.offer-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.offer-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card__image-placeholder i {
  font-size: 3rem;
  color: var(--imperium-gold);
  opacity: .3;
}
.offer-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
}
.offer-card__badge i {
  color: var(--imperium-gold);
}
.offer-card__price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: .5rem 1rem;
  background: var(--imperium-gold);
  border-radius: .5rem;
  font-family: 'Space Grotesk',sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  box-shadow: 0 4px 12px rgba(199,160,82,.4);
}
.offer-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.offer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .8125rem;
  color: #6b7280;
}
.offer-card__meta span {
  display: flex;
  align-items: center;
  gap: .375rem;
}
.offer-card__meta i {
  color: var(--imperium-gold);
}
.offer-card__content .btn {
  margin-top: auto;
}
.btn--outline-light {
  background: 0 0;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn--outline-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--imperium-navy);
}
.why-us {
  padding: 5rem 0;
  background: linear-gradient(180deg,#fff 0,#f8fafc 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle,rgba(199,160,82,.05) 0,transparent 70%);
  pointer-events: none;
}
.why-us__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.why-us__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: linear-gradient(135deg,rgba(199,160,82,.1),rgba(199,160,82,.05));
  border: 1px solid rgba(199,160,82,.2);
  border-radius: 2rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--imperium-gold);
  margin-bottom: 1rem;
}
.why-us__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--imperium-navy);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.why-us__subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.why-us__card {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  border: 1px solid #f1f5f9;
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}
.why-us__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,31,63,.12);
  border-color: rgba(199,160,82,.3);
}
.why-us__card-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
}
.why-us__card-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(199,160,82,.15),rgba(199,160,82,.05));
  border-radius: 1rem;
  transform: rotate(-5deg);
  transition: transform .3s;
}
.why-us__card:hover .why-us__card-icon-bg {
  transform: rotate(5deg);
}
.why-us__card-icon i {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--imperium-gold);
}
.why-us__card-content {
  position: relative;
  z-index: 1;
}
.why-us__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
}
.why-us__card-text {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.6;
}
.why-us__card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Space Grotesk',sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(199,160,82,.08);
  line-height: 1;
}
.why-us__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,31,63,.25);
}
.why-us__stat {
  text-align: center;
}
.why-us__stat-number {
  display: block;
  font-family: 'Space Grotesk',sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--imperium-gold);
  line-height: 1.2;
  margin-bottom: .25rem;
}
.why-us__stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.why-us__stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,.15);
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s cubic-bezier(.4, 0, .2, 1);
}
.scroll-reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s cubic-bezier(.4, 0, .2, 1);
  transition-delay: var(--delay, 0s);
}
.why-us__grid .why-us__card:first-child {
  --delay: 0.1s;
}
.why-us__grid .why-us__card:nth-child(2) {
  --delay: 0.2s;
}
.why-us__grid .why-us__card:nth-child(3) {
  --delay: 0.3s;
}
.why-us__grid .why-us__card:nth-child(4) {
  --delay: 0.4s;
}
@media (max-width:1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2,1fr);
  }
  .why-us__stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .why-us__stat-divider {
    display: none;
  }
  .carousel-container {
    padding: 0 2rem;
  }
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
}
@media (max-width:768px) {
  .why-us__title {
    font-size: 1.75rem;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .why-us__card {
    padding: 1.5rem;
  }
  .why-us__stats {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .why-us__stat-number {
    font-size: 1.75rem;
  }
  .carousel-container {
    padding: 0;
  }
  .carousel-nav {
    display: none;
  }
}
.listing-card--flight {
  display: flex;
  flex-direction: column;
}
.listing-card__flight-header {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(135deg,var(--imperium-navy) 0,var(--imperium-dark) 100%);
  border-radius: 1rem 1rem 0 0;
}
.flight-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.flight-route__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 80px;
}
.flight-route__time {
  font-family: 'Space Grotesk',sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.flight-route__city {
  font-size: .875rem;
  font-weight: 600;
  color: var(--imperium-gold);
  margin-top: .25rem;
}
.flight-route__date {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}
.flight-route__path {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.flight-route__line {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,var(--imperium-gold),rgba(255,255,255,.3),var(--imperium-gold));
  border-radius: 1px;
}
.flight-route__line::after,
.flight-route__line::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--imperium-gold);
  border-radius: 50%;
}
.flight-route__line::before {
  left: 0;
}
.flight-route__line::after {
  right: 0;
}
.flight-route__line i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: var(--imperium-gold);
  font-size: 1rem;
  background: var(--imperium-navy);
  padding: .25rem;
}
.flight-route__duration {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.listing-card--flight .listing-card__price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--imperium-gold);
  color: var(--imperium-navy);
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-family: 'Space Grotesk',sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.listing-card--flight .listing-card__content {
  padding: 1.25rem;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
}
.listing-card--flight .listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.listing-card--flight .listing-card__meta-item {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: #6b7280;
}
.listing-card--flight .listing-card__meta-item i {
  color: var(--imperium-gold);
  width: 14px;
}
.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  border: 1px solid #e5e7eb;
  transition: .3s;
}
.booking-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-color: var(--imperium-gold);
}
.booking-card__status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 600;
}
.booking-card__status--confirmed {
  background: #dcfce7;
  color: #166534;
}
.booking-card__status--pending {
  background: #fef3c7;
  color: #92400e;
}
.booking-card__status--cancelled {
  background: #fee2e2;
  color: #991b1b;
}
.booking-card__status--expired {
  background: #f3f4f6;
  color: #6b7280;
}
.booking-card__content {
  padding-top: 2rem;
}
.booking-card__hotel {
  margin-bottom: 1rem;
}
.booking-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .25rem;
}
.booking-card__location {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  color: #6b7280;
}
.booking-card__location i {
  color: var(--imperium-gold);
}
.booking-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.booking-card__detail {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.booking-card__detail>i {
  color: var(--imperium-gold);
  margin-top: .125rem;
}
.booking-card__detail-label {
  display: block;
  font-size: .75rem;
  color: #9ca3af;
  font-weight: 500;
}
.booking-card__detail-value {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--imperium-navy);
}
.booking-card__sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 180px;
}
.booking-card__price {
  text-align: right;
  margin-bottom: 1rem;
}
.booking-card__price-label {
  display: block;
  font-size: .75rem;
  color: #6b7280;
  margin-bottom: .25rem;
}
.booking-card__price-value {
  font-family: 'Space Grotesk',sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--imperium-gold);
}
.booking-card__price-currency {
  font-size: .875rem;
  color: var(--imperium-navy);
  font-weight: 600;
}
.booking-card__actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}
.booking-detail {
  padding: 1.5rem 0;
  background: var(--imperium-light);
}
.booking-detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  margin-top: 1.5rem;
}
.booking-detail__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
.breadcrumb__link {
  display: flex;
  align-items: center;
  gap: .375rem;
  color: #6b7280;
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb__link:hover {
  color: var(--imperium-gold);
}
.breadcrumb__separator {
  color: #d1d5db;
}
.breadcrumb__current {
  color: var(--imperium-navy);
  font-weight: 600;
}
.alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
  margin-bottom: 1.5rem;
}
.alert__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alert__icon i {
  font-size: 1.125rem;
}
.alert__content {
  flex: 1;
}
.alert__title {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.alert__text {
  font-size: .8125rem;
}
.alert--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.alert--warning .alert__icon {
  background: #fef3c7;
}
.alert--warning .alert__icon i {
  color: #d97706;
}
.alert--warning .alert__title {
  color: #92400e;
}
.alert--warning .alert__text {
  color: #a16207;
}
.alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.alert--success .alert__icon {
  background: #dcfce7;
}
.alert--success .alert__icon i {
  color: #16a34a;
}
.alert--success .alert__title {
  color: #166534;
}
.alert--success .alert__text {
  color: #15803d;
}
.alert--danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.alert--danger .alert__icon {
  background: #fee2e2;
}
.alert--danger .alert__icon i {
  color: #dc2626;
}
.alert--danger .alert__title {
  color: #991b1b;
}
.alert--danger .alert__text {
  color: #b91c1c;
}
.alert--muted {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}
.alert--muted .alert__icon {
  background: #f3f4f6;
}
.alert--muted .alert__icon i {
  color: #6b7280;
}
.alert--muted .alert__title {
  color: #4b5563;
}
.alert--muted .alert__text {
  color: #6b7280;
}
.detail-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  border: 1px solid #e5e7eb;
}
.detail-card__header {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  color: #fff;
}
.detail-card__header i {
  color: var(--imperium-gold);
}
.detail-card__header h3 {
  font-size: .9375rem;
  font-weight: 700;
  margin: 0;
}
.detail-card__body {
  padding: 1.25rem;
}
.detail-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: .375rem;
}
.detail-card__subtitle {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  color: #6b7280;
}
.detail-card__subtitle i {
  color: var(--imperium-gold);
}
.detail-card--info .detail-card__header {
  background: linear-gradient(135deg,#0284c7,#0369a1);
}
.dates-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.date-box {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: var(--imperium-light);
  border-radius: .75rem;
}
.date-box__label {
  display: block;
  font-size: .75rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: .375rem;
}
.date-box__value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
}
.date-box__info {
  display: block;
  font-size: .75rem;
  color: #9ca3af;
  margin-top: .25rem;
}
.date-box__separator {
  color: var(--imperium-gold);
  font-size: 1.25rem;
}
.nights-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  background: rgba(199,160,82,.1);
  border-radius: .5rem;
  color: var(--imperium-gold);
  font-weight: 600;
  font-size: .875rem;
}
.room-item {
  background: var(--imperium-light);
  border-radius: .75rem;
  overflow: hidden;
  margin-bottom: .75rem;
}
.room-item:last-child {
  margin-bottom: 0;
}
.room-item__header {
  padding: .75rem 1rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
}
.room-item__number {
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
}
.room-item__content {
  padding: 1rem;
}
.room-item__guests {
  margin-bottom: .75rem;
}
.room-item__guests:last-child {
  margin-bottom: 0;
}
.room-item__label {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: .5rem;
}
.room-item__label i {
  color: var(--imperium-gold);
}
.room-item__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.guest-tag {
  padding: .375rem .75rem;
  background: #fff;
  border-radius: 2rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--imperium-navy);
  border: 1px solid #e5e7eb;
}
.guest-tag--child {
  background: rgba(199,160,82,.1);
  border-color: rgba(199,160,82,.3);
  color: var(--imperium-gold);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1rem;
}
.info-item {
  padding: 1rem;
  background: var(--imperium-light);
  border-radius: .75rem;
}
.info-item__label {
  display: block;
  font-size: .75rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: .375rem;
}
.info-item__value {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--imperium-navy);
}
.hotel-notes {
  font-size: .875rem;
  color: #0369a1;
  line-height: 1.6;
}
.summary-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 2px solid rgba(199,160,82,.3);
  position: sticky;
  top: 5rem;
}
.summary-card__header {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
  color: #fff;
}
.summary-card__header i {
  color: var(--imperium-gold);
}
.summary-card__header h3 {
  font-size: .9375rem;
  font-weight: 700;
  margin: 0;
}
.summary-card__price {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}
.summary-card__price-label {
  display: block;
  font-size: .75rem;
  color: #6b7280;
  margin-bottom: .5rem;
}
.summary-card__price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .25rem;
}
.summary-card__price-value {
  font-family: 'Space Grotesk',sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--imperium-gold);
  line-height: 1;
}
.summary-card__price-currency {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imperium-navy);
}
.summary-card__section {
  padding: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}
.summary-card__actions {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.payment-deadline {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  background: #fffbeb;
  border-radius: .75rem;
  border: 1px solid #fde68a;
  margin-bottom: 1rem;
}
.payment-deadline>i {
  color: #d97706;
  font-size: 1.25rem;
}
.payment-deadline__label {
  display: block;
  font-size: .75rem;
  color: #92400e;
}
.payment-deadline__value {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: #78350f;
}
.agency-info {
  background: #f0fdf4;
  border-radius: .75rem;
  border: 1px solid #bbf7d0;
  overflow: hidden;
  margin-bottom: 1rem;
}
.agency-info__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  font-size: .875rem;
}
.agency-info__content {
  padding: 1rem;
}
.agency-info__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: #15803d;
  margin-bottom: .5rem;
}
.agency-info__item:last-child {
  margin-bottom: 0;
}
.agency-info__item i {
  width: 14px;
  color: #22c55e;
}
.checklist {
  background: #eff6ff;
  border-radius: .75rem;
  padding: 1rem;
  border: 1px solid #bfdbfe;
}
.checklist__title {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: .75rem;
}
.checklist__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist__list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: #1e3a8a;
  margin-bottom: .5rem;
}
.checklist__list li:last-child {
  margin-bottom: 0;
}
.checklist__list li i {
  color: #3b82f6;
}
.payment-confirmed {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  background: #f0fdf4;
  border-radius: .75rem;
  border: 1px solid #bbf7d0;
}
.payment-confirmed>i {
  color: #22c55e;
  font-size: 1.5rem;
}
.payment-confirmed__title {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: #166534;
}
.payment-confirmed__text {
  display: block;
  font-size: .8125rem;
  color: #15803d;
}
.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  color: #6b7280;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.back-link:hover {
  color: var(--imperium-gold);
}
.btn--outline {
  background: #fff;
  border: 2px solid #e5e7eb;
  color: #374151;
}
.btn--outline:hover {
  border-color: var(--imperium-gold);
  color: var(--imperium-gold);
}
.btn--outline-danger {
  background: #fff;
  border: 2px solid #fecaca;
  color: #dc2626;
}
.btn--outline-danger:hover {
  background: #fef2f2;
  border-color: #f87171;
}
.page-hero--compact {
  min-height: 120px;
  height: 120px;
  padding: 1.5rem 0;
  background: linear-gradient(135deg,var(--imperium-navy),var(--imperium-dark));
}
.page-hero--compact .page-hero__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(26,37,56,.85),rgba(26,37,56,.7));
}
.page-hero--compact .page-hero__content {
  display: block;
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-hero--compact .page-hero__title {
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.page-hero--compact .page-hero__subtitle {
  font-size: .8125rem;
}
.page-hero--compact .page-hero__badge {
  margin-bottom: .375rem;
}
@media (max-width:992px) {
  .booking-detail__grid {
    grid-template-columns: 1fr;
  }
  .booking-detail__sidebar {
    order: -1;
  }
  .summary-card {
    position: relative;
    top: 0;
  }
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-card__sidebar {
    align-items: stretch;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
  }
  .booking-card__price {
    text-align: center;
  }
}
@media (max-width:768px) {
  .dates-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .date-box__separator {
    transform: rotate(90deg);
  }
  .flight-route {
    flex-direction: column;
    gap: 1.5rem;
  }
  .flight-route__path {
    width: 100%;
    flex-direction: row;
  }
  .flight-route__line {
    flex: 1;
  }
  .listing-card--flight .listing-card__price {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 1rem;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.filter-budget {
  margin-top: .375rem;
}
.filter-budget-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  margin-bottom: .625rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--imperium-navy);
}
.filter-budget-display span {
  color: var(--imperium-gold);
}
.filter-budget-display .separator {
  color: #9ca3af;
  font-weight: 400;
}
.dual-range-slider {
  position: relative;
  height: 6px;
  margin: .75rem 0;
}
.dual-range-slider__track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
}
.dual-range-slider__range {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg,var(--imperium-gold),#d4a843);
  border-radius: 3px;
}
.dual-range-slider__input {
  position: absolute;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: 0 0;
  pointer-events: none;
  margin: 0;
}
.dual-range-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--imperium-gold);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(199,160,82,.5);
  transition: transform .2s,box-shadow .2s;
  border: 2px solid #fff;
}
.dual-range-slider__input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(199,160,82,.6);
}
.dual-range-slider__input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--imperium-gold);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(199,160,82,.5);
}
.filter-budget-labels {
  display: flex;
  justify-content: space-between;
  font-size: .6875rem;
  color: #6b7280;
  margin-top: .25rem;
}
.filter-stars {
  display: flex;
  gap: .125rem;
}
.filter-stars i {
  color: #fbbf24;
  font-size: .75rem;
}
.filter-tags-list {
  max-height: 200px;
  overflow-y: auto;
}
.filter-tags-list::-webkit-scrollbar {
  width: 4px;
}
.filter-tags-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 2px;
}
.filter-tags-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}
.filter-section-title i {
  margin-right: .375rem;
  color: var(--imperium-gold);
}
.results-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.pagination-info {
  font-size: .8125rem;
  color: #6b7280;
}
.pagination-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pagination-btn {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--imperium-navy);
  cursor: pointer;
  transition: .2s;
}
.pagination-btn:hover:not(:disabled) {
  background: var(--imperium-light);
  border-color: var(--imperium-gold);
  color: var(--imperium-gold);
}
.pagination-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.pagination-pages {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.pagination-page {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--imperium-navy);
  cursor: pointer;
  transition: .2s;
}
.pagination-page:hover:not(.active) {
  background: var(--imperium-light);
  border-color: var(--imperium-gold);
}
.pagination-page.active {
  background: var(--imperium-gold);
  border-color: var(--imperium-gold);
  color: #fff;
}
.pagination-ellipsis {
  padding: 0 .5rem;
  color: #9ca3af;
}
.admin-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  padding: 1rem 0;
}
.admin-pagination .page-link {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: .2s;
}
.admin-pagination .page-link:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.admin-pagination .page-item.active .page-link {
  background: var(--imperium-navy,#001f3f);
  border-color: var(--imperium-navy,#001f3f);
  color: #fff;
}
.admin-pagination .page-item.disabled .page-link {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width:640px) {
  .results-pagination {
    padding: 1rem;
  }
  .pagination-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination-btn {
    padding: .5rem .75rem;
    font-size: .75rem;
  }
  .pagination-page {
    min-width: 32px;
    height: 32px;
    font-size: .75rem;
  }
}
.voyage-price-card__book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  width: 100%;
  padding: .625rem;
  background: linear-gradient(135deg,var(--imperium-gold),#d4af6a);
  color: var(--imperium-navy);
  border: none;
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  margin-top: .625rem;
  text-decoration: none;
}
.voyage-price-card__book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199,160,82,.4);
}
.voyage-price-card__unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: .75rem;
  font-weight: 600;
  margin-top: 1rem;
}
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,31,63,.7);
  backdrop-filter: blur(4px);
}
.booking-modal__content {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,31,63,.3);
  animation: .3s modalSlideIn;
}
.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg,var(--imperium-navy),#002a54);
  color: #fff;
}
.booking-modal__title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.booking-modal__title i {
  color: var(--imperium-gold);
}
.booking-modal__close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: background .2s;
}
.booking-modal__close:hover {
  background: rgba(255,255,255,.2);
}
.booking-modal__body {
  padding: 1.5rem;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}
.booking-modal__summary {
  background: linear-gradient(135deg,#f8f9fa,#fff);
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.booking-modal__summary h3 {
  font-size: 1rem;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
}
.booking-modal__summary p {
  font-size: .875rem;
  color: #6b7280;
  margin: .25rem 0;
}
.booking-modal__summary i {
  color: var(--imperium-gold);
  width: 1rem;
  margin-right: .5rem;
}
.booking-form-section {
  margin-bottom: 1.5rem;
}
.booking-form-section__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--imperium-navy);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #e5e7eb;
}
.booking-form-section__title i {
  color: var(--imperium-gold);
}
.booking-form-counters {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.booking-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem;
  background: #f9fafb;
  border-radius: .5rem;
}
.booking-counter__info {
  display: flex;
  flex-direction: column;
}
.booking-counter__label {
  font-weight: 600;
  color: #1f2937;
  font-size: .875rem;
}
.booking-counter__sublabel {
  font-size: .75rem;
  color: #6b7280;
}
.booking-counter__controls {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.booking-counter__btn {
  width: 2rem;
  height: 2rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  border-radius: .375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--imperium-navy);
  transition: .2s;
}
.booking-counter__btn:hover {
  border-color: var(--imperium-gold);
  color: var(--imperium-gold);
}
.booking-counter__value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--imperium-navy);
  min-width: 1.5rem;
  text-align: center;
}
.booking-total-travelers {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  background: linear-gradient(135deg,var(--imperium-gold),#d4af6a);
  color: var(--imperium-navy);
  border-radius: .5rem;
  font-weight: 600;
  margin-top: .75rem;
}
.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width:480px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}
.booking-form-group {
  margin-bottom: 1rem;
}
.booking-form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .375rem;
}
.booking-form-label .required {
  color: #ef4444;
}
.booking-form-label .optional {
  color: #9ca3af;
  font-weight: 400;
}
.booking-form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .9375rem;
  transition: .2s;
}
.booking-form-input:focus {
  outline: 0;
  border-color: var(--imperium-gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.1);
}
.booking-form-input--disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}
.booking-form-error {
  color: #ef4444;
  font-size: .75rem;
  margin-top: .25rem;
}
.booking-email-row {
  display: flex;
  gap: .5rem;
}
.booking-email-row .booking-form-input {
  flex: 1;
}
.booking-otp-btn {
  padding: .75rem 1rem;
  background: var(--imperium-navy);
  color: #fff;
  border: none;
  border-radius: .5rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.booking-otp-btn:hover:not(:disabled) {
  background: #002a54;
}
.booking-otp-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.booking-otp-section {
  margin-top: .75rem;
  padding: .75rem;
  background: #fef3c7;
  border-radius: .5rem;
}
.booking-otp-hint {
  font-size: .75rem;
  color: #92400e;
  margin-bottom: .5rem;
}
.booking-verified-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  background: #dbeafe;
  color: #1e40af;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.booking-verified-badge--success {
  background: #dcfce7;
  color: #166534;
}
.booking-price-estimate {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: .75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.booking-price-estimate__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-price-estimate__amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--imperium-gold);
}
.booking-price-estimate__note {
  font-size: .75rem;
  color: #6b7280;
  margin-top: .5rem;
}
.booking-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg,var(--imperium-gold),#d4af6a);
  color: var(--imperium-navy);
  border: none;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
.booking-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199,160,82,.4);
}
.booking-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.booking-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,31,63,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}
.booking-success-popup {
  background: #fff;
  border-radius: 1.25rem;
  max-width: 24rem;
  width: 100%;
  text-align: center;
  padding: 2rem;
  animation: .3s modalSlideIn;
}
.booking-success-popup__icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg,#059669,#10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 1.5rem;
}
.booking-success-popup__title {
  font-size: 1.5rem;
  color: var(--imperium-navy);
  margin-bottom: .5rem;
}
.booking-success-popup__text {
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.booking-success-popup__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
@media (max-width:639px) {
  .top-bar {
    display: none;
  }
  .nav__logo img {
    width: 130px;
  }
  .nav__container {
    padding: 0 .75rem;
  }
  .hero__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .hero__subtitle {
    font-size: .8125rem;
  }
  .page-hero__title {
    font-size: 1.5rem;
  }
  .page-hero__subtitle {
    font-size: .8125rem;
  }
  .footer__brand {
    margin-left: 0;
    margin-top: 0;
  }
  .footer__description {
    margin-top: 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .section {
    padding: 1.5rem 0;
  }
  .container {
    padding-left: .75rem;
    padding-right: .75rem;
  }
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .booking-card {
    padding: 1rem;
    gap: 1rem;
  }
  .book-page {
    padding: 1rem 0 2rem;
  }
  .book-container {
    padding: 0 .75rem;
  }
  .book-header__title {
    font-size: 1rem;
  }
  .room-row {
    flex-wrap: wrap;
    gap: .5rem;
  }
  .room-row__right {
    gap: .5rem;
  }
  .booking-email-row {
    flex-direction: column;
    gap: .5rem;
  }
  .booking-otp-btn {
    width: 100%;
    text-align: center;
  }
  .voyage-detail__sidebar {
    position: relative;
    top: auto;
  }
  .why-us__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .section__title {
    font-size: 1.375rem;
  }
  .offer-card__title {
    font-size: .875rem;
  }
  .wizard-step__circle {
    width: 1.75rem;
    height: 1.75rem;
    font-size: .75rem;
  }
  .auth-page {
    padding: .75rem;
  }
  .auth-container {
    border-radius: .875rem;
  }
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hotels-layout {
    grid-template-columns: 1fr;
  }
  .page-hero--compact {
    height: 120px;
  }
  .book-submit {
    width: 100%;
  }
}
@media (min-width:640px) and (max-width:1023px) {
  .top-bar__auth {
    display: none;
  }
  .listing-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .book-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:399px) {
  .nav__logo img {
    width: 110px;
  }
  .booking-form-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }
  .booking-success-popup__actions {
    flex-direction: column;
  }
  .booking-success-popup__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.imperium-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  background: #fff;
  border-radius: .875rem;
  box-shadow: 0 2px 12px rgba(0,31,63,.06);
  border: 1px solid #f1f5f9;
}
.imperium-pagination__controls {
  display: flex;
  align-items: center;
  gap: .375rem;
  flex-wrap: wrap;
  justify-content: center;
}
.imperium-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: .5rem;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: var(--imperium-navy);
  font-size: .8125rem;
  text-decoration: none;
  transition: .2s;
  flex-shrink: 0;
}
.imperium-pagination__btn:hover {
  background: var(--imperium-navy);
  border-color: var(--imperium-navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,31,63,.2);
}
.imperium-pagination__btn--disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}
.imperium-pagination__pages {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.imperium-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .5rem;
  border-radius: .5rem;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: var(--imperium-navy);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}
.imperium-pagination__page:hover {
  background: var(--imperium-light);
  border-color: var(--imperium-gold);
  color: var(--imperium-gold);
}
.imperium-pagination__page--active {
  background: var(--imperium-gold);
  border-color: var(--imperium-gold);
  color: #fff;
  cursor: default;
  box-shadow: 0 3px 10px rgba(199,160,82,.35);
}
.imperium-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 38px;
  color: #9ca3af;
  font-size: .875rem;
  user-select: none;
}
.imperium-pagination__info {
  font-size: .75rem;
  color: #6b7280;
  margin: 0;
}
nav[role=navigation] {
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1rem;
  background: #fff;
  border-radius: .875rem;
  box-shadow: 0 2px 12px rgba(0,31,63,.07);
  border: 1px solid #f1f5f9;
}
nav[role=navigation]>div:last-child {
  display: flex!important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
}
nav[role=navigation]>div:last-child>div:first-child {
  width: 100%;
  text-align: center;
}
nav[role=navigation] p {
  font-size: .8125rem;
  color: #6b7280;
  margin: 0;
}
nav[role=navigation]>div:last-child>div:last-child>span {
  display: inline-flex!important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  box-shadow: none!important;
}
nav[role=navigation]>div:last-child>div:last-child a,
nav[role=navigation]>div:last-child>div:last-child>span>span>span {
  display: inline-flex!important;
  align-items: center!important;
  justify-content: center!important;
  min-width: 36px;
  height: 36px;
  padding: 0 .5rem;
  border-radius: .5rem!important;
  border: 1.5px solid #e5e7eb!important;
  background: #fff!important;
  color: #001f3f!important;
  font-size: .8125rem!important;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
  margin: .125rem;
  margin-left: 0!important;
  box-shadow: none!important;
}
nav[role=navigation]>div:last-child>div:last-child a:hover {
  background: #f8f4e8!important;
  border-color: #c7a052!important;
  color: #c7a052!important;
}
nav[role=navigation] [aria-current=page] span {
  background: #c7a052!important;
  border-color: #c7a052!important;
  color: #fff!important;
  box-shadow: 0 3px 10px rgba(199,160,82,.35) !important;
}
nav[role=navigation] [aria-disabled=true]>span {
  opacity: .4;
  cursor: not-allowed;
}
nav[role=navigation] svg {
  width: 16px!important;
  height: 16px!important;
  display: block;
}
@media (max-width:639px) {
  .imperium-pagination {
    padding: 1rem .75rem;
  }
  .imperium-pagination__btn,
  .imperium-pagination__page {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: .75rem;
  }
  nav[role=navigation]>div:first-child {
    display: flex!important;
    width: 100%;
    justify-content: space-between;
    gap: .5rem;
  }
  nav[role=navigation]>div:last-child {
    display: none!important;
  }
  nav[role=navigation]>div:first-child a,
  nav[role=navigation]>div:first-child>span {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1.25rem;
    border-radius: .5rem;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #001f3f;
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
  }
  nav[role=navigation]>div:first-child a:hover {
    background: #001f3f;
    border-color: #001f3f;
    color: #fff;
  }
  nav[role=navigation]>div:first-child>span {
    opacity: .4;
    cursor: not-allowed;
  }
}
nav[role=navigation]>div:first-child {
  display: none!important;
}
nav[role=navigation]>div:last-child {
  display: flex!important;
}
.mobile-filter-bar {
  display: none;
}
@media (max-width:1023px) {
  .book-sidebar,
  .hotels-sidebar,
  .voyage-sidebar {
    position: relative;
    top: auto;
  }
  .mobile-filter-bar {
    display: block;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: .625rem 0;
    position: sticky;
    top: 56px;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0,31,63,.06);
  }
  .mobile-filter-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }
  .mobile-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--imperium-navy);
    color: #fff;
    border: none;
    border-radius: .5rem;
    font-size: .8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
  }
  .mobile-filter-trigger:hover {
    opacity: .85;
  }
  .mobile-filter-count {
    font-size: .8125rem;
    color: #6b7280;
    font-weight: 600;
  }
  .mobile-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99;
  }
  .results-sidebar {
    position: fixed!important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -6px 40px rgba(0,31,63,.18);
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: block!important;
    top: auto!important;
  }
  .results-sidebar--open {
    transform: translateY(0) !important;
  }
  .results-sidebar__sticky {
    position: relative!important;
    top: auto!important;
  }
  .results-layout {
    grid-template-columns: 1fr!important;
  }
  .mobile-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: #f3f4f6;
    border-radius: .375rem;
    color: #374151;
    cursor: pointer;
    font-size: .875rem;
    transition: background .2s;
  }
  .mobile-filter-close:hover {
    background: #e5e7eb;
  }
  .filter-sidebar::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: .75rem auto .5rem;
  }
}
@media (min-width:1024px) {
  .mobile-filter-close {
    display: none;
  }
  .mobile-filter-backdrop {
    display: none!important;
  }
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: .65rem 1.5rem;
  font-family: Poppins,sans-serif;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s,border-color .22s,box-shadow .22s;
  white-space: nowrap;
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shg);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: .65rem 1.5rem;
  font-family: Poppins,sans-serif;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s,border-color .22s,box-shadow .22s;
  white-space: nowrap;
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shg);
}
.btn--outline-navy {
  background: transparent;
  color: var(--imperium-navy, #0a1628);
  border: 2px solid var(--imperium-navy, #0a1628);
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn--outline-navy:hover {
  background: var(--imperium-navy, #0a1628);
  color: #fff;
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  padding: .65rem 1.5rem;
  font-family: Poppins,sans-serif;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s,border-color .22s;
  white-space: nowrap;
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn--sm {
  padding: .4rem 1rem;
  font-size: .8rem;
}
.btn--lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  background: var(--gold-pale);
  border: 1px solid rgba(199,160,82,.25);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-carousel__skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,var(--surface) 25%,var(--border-lt) 50%,var(--surface) 75%);
  background-size: 200% 100%;
  animation: 1.4s infinite shimmer;
  z-index: 1;
}
.hero-carousel__img.loaded~.hero-carousel__skeleton,
.hero-carousel__img[src]~.hero-carousel__skeleton {
  display: none;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,18,41,.6) 0,rgba(0,18,41,.08) 55%,transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s,border-color .2s,transform .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-carousel__nav svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.hero-carousel__nav:hover {
  background: var(--imperium-gold,#c7a052);
  border-color: var(--imperium-gold,#c7a052);
  transform: translateY(-50%) scale(1.08);
}
.hero-carousel__nav--prev {
  left: 1.5rem;
}
.hero-carousel__nav--next {
  right: 1.5rem;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  display: none;
}
.hero-swiper .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  transition: background .2s,width .25s;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 44px;
}
.search-box-wrapper {
  background: var(--white);
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 10;
}
.search-box {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-lt);
  box-shadow: var(--sh3);
  padding: 1.5rem 1.75rem;
  margin-top: -3rem;
  position: relative;
}
@media (max-width:768px) {
  .search-box {
    margin-top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: var(--sh2);
  }
}
.search-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.search-tabs::-webkit-scrollbar {
  display: none;
}
.search-tab {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.1rem;
  font-size: .8375rem;
  font-weight: 500;
  color: var(--text-3);
  background: 0 0;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s,border-color .2s;
  font-family: Poppins,sans-serif;
}
.search-tab:hover {
  color: var(--navy);
}
.search-tab--active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 700;
}
.search-tab--inactive {
  color: var(--text-3);
}
.search-tab--inactive:hover {
  color: var(--navy);
}
.search-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: .75rem;
  align-items: end;
}
@media (max-width:1024px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:600px) {
  .search-form {
    grid-template-columns: 1fr;
  }
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  position: relative;
}
.search-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-3);
  font-family: Poppins,sans-serif;
}
.search-field>div {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off);
  transition: border-color .2s,box-shadow .2s;
  overflow: visible;
}
.search-field>div:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.13);
  background: var(--white);
}
.search-icon {
  position: absolute;
  left: .75rem;
  color: var(--text-3);
  font-size: .85rem;
  pointer-events: none;
  z-index: 1;
}
.search-input {
  width: 100%;
  border: none;
  background: 0 0;
  padding: .65rem .75rem .65rem 2.2rem;
  font-size: .9rem;
  color: var(--text);
  outline: 0;
  font-family: Poppins,sans-serif;
  min-width: 0;
}
.search-input::placeholder {
  color: var(--text-3);
}
.guests-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off);
  padding: .65rem .85rem;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
  font-family: Poppins,sans-serif;
  transition: border-color .2s,box-shadow .2s;
}
.guests-btn--active,
.guests-btn:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(199,160,82,.13);
}
.guests-btn i {
  color: var(--text-3);
  transition: transform .2s;
}
.guests-btn--active i {
  transform: rotate(180deg);
}
.city-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh3);
  z-index: 999;
  max-height: 220px;
  overflow-y: auto;
  font-size: .8rem;
}
.city-suggestion {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .75rem;
  cursor: pointer;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-lt);
  transition: background .15s;
}
.city-suggestion:last-child {
  border-bottom: none;
}
.city-suggestion.highlighted,
.city-suggestion:hover {
  background: var(--gold-pale);
  color: var(--navy);
}
.city-suggestion i {
  color: var(--gold);
  font-size: .8rem;
  flex-shrink: 0;
}
.page-hero {
  position: relative;
  overflow: hidden;
  height: clamp(160px,22vw,300px);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .45;
}
.offer-card__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: 1.15rem!important;
  font-weight: 600!important;
  color: var(--navy) !important;
}
.offer-card__price-tag {
  font-family: Poppins,sans-serif!important;
  background: var(--navy) !important;
  color: var(--white) !important;
}
.offer-card__image-placeholder {
  background: linear-gradient(135deg,var(--navy) 0,var(--navy-dark) 100%) !important;
}
.why-us__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: clamp(1.6rem, 3vw, 2.5rem) !important;
  font-weight: 700!important;
}
.why-us__card-title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: 1.2rem!important;
  font-weight: 600!important;
}
.why-us__card:hover {
  border-color: rgba(199,160,82,.35) !important;
  box-shadow: 0 16px 40px rgba(0,31,63,.12) !important;
}
.section__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem) !important;
  font-weight: 700!important;
  color: var(--navy) !important;
}
.carousel-nav {
  background: var(--white) !important;
  border: 2px solid var(--border) !important;
  color: var(--navy) !important;
}
.carousel-nav:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}
@media (max-width:768px) {
  .hero-carousel__nav {
    display: none;
  }
  .page-hero {
    height: clamp(130px,28vw,200px);
  }
}
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 400;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 1010;
}
.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar__link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .8rem;
  transition: color .18s;
  white-space: nowrap;
}
.top-bar__link:hover {
  color: var(--gold-light);
}
.top-bar__icon {
  width: 20px;
  height: 20px;
  background: rgba(199,160,82,.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.top-bar__auth {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.top-bar__dropdown {
  position: relative;
}
.top-bar__dropdown-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.85);
  padding: .3rem .8rem;
  font-size: .8rem;
  font-family: Poppins,sans-serif;
  cursor: pointer;
  transition: background .18s,border-color .18s;
  white-space: nowrap;
}
.top-bar__dropdown-btn:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(199,160,82,.4);
  color: var(--gold-light);
}
.top-bar__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  box-shadow: var(--sh3);
  z-index: 9999;
  overflow: hidden;
  padding: .35rem 0;
}
.top-bar__dropdown-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1rem;
  background: var(--off);
  border-bottom: 1px solid var(--border-lt);
  margin-bottom: .25rem;
}
.top-bar__dropdown-user {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
}
.top-bar__dropdown-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}
.top-bar__dropdown-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  font-size: .8375rem;
  color: var(--text-2);
  text-decoration: none;
  background: 0 0;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: Poppins,sans-serif;
  transition: background .15s,color .15s;
}
.top-bar__dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--navy);
}
.top-bar__dropdown-item--gold {
  color: var(--gold-dark);
  font-weight: 600;
}
.top-bar__dropdown-item--gold:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
}
.top-bar__dropdown-divider {
  height: 1px;
  background: var(--border-lt);
  margin: .3rem 0;
}
.nav {
  position: sticky;
  top: 44px;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gold-pale);
  box-shadow: 0 2px 12px rgba(0,31,63,.07);
}
.nav>.container {
  padding: 0 1.25rem;
}
.nav__container {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 0;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 2rem;
}
.nav__logo img {
  height: 46px;
  width: auto;
  display: block;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color .2s;
  background: 0 0;
  border: none;
  font-family: Poppins,sans-serif;
  cursor: pointer;
  line-height: 66px;
  height: 66px;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px 1px 0 0;
  transform: scaleX(0);
  transition: transform .22s;
}
.nav__link--active,
.nav__link:hover {
  color: var(--navy);
}
.nav__link--active::after,
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link-chevron {
  font-size: .6rem;
  transition: transform .2s;
  margin-left: .1rem;
}
.nav__link--icon { display: inline-flex; align-items: center; gap: .35rem; }
.nav__link--icon i { font-size: .8rem; }
.nav__sep {
  width: 1px; height: 1.1rem; align-self: center;
  background: rgba(10,22,40,.15); list-style: none; flex-shrink: 0;
}
.nav__dropdown-divider { height: 1px; background: #f1f5f9; margin: .25rem 0; }
.nav__dropdown-wrapper {
  position: relative;
  list-style: none;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  box-shadow: var(--sh3);
  z-index: 9998;
  padding: .4rem 0;
  overflow: hidden;
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.1rem;
  font-size: .875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: background .14s,color .14s,padding-left .14s;
  border-left: 3px solid transparent;
}
.nav__dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 1.35rem;
}
.nav__dropdown-item i {
  color: var(--gold);
  font-size: .8rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.nav__mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw,780px);
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--sh3);
  z-index: 9998;
  padding: 1.25rem 1.5rem;
}
.nav__mega-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(140px,1fr));
  gap: .35rem;
}
.nav__mega-dropdown-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  font-size: .8rem;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background .14s,color .14s;
  white-space: nowrap;
}
.nav__mega-dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--navy);
}
.nav__mega-dropdown-item i {
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}
.nav__mobile-toggle {
  display: none;
  background: 0 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  margin-left: auto;
  transition: border-color .2s,color .2s;
  flex-shrink: 0;
}
.nav__mobile-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.nav__mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
}
@media (min-width:1025px) {
  .nav__mobile-toggle {
    display: none!important;
  }
}
@media (max-width:1024px) {
  .nav__menu {
    display: none;
  }
  .nav__mobile-toggle {
    display: flex;
  }
}
/* Carousel — 1900×500 images; 36vw adds visible height, object-fit:cover handles the zoom */
.hero--carousel,
.hero.hero--carousel {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 36vw, 580px);
  background: var(--navy-dark);
}
@media (max-width: 640px) {
  .hero--carousel,
  .hero.hero--carousel {
    height: clamp(220px, 56vw, 340px);
  }
}
.hero-carousel__slide,
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.hero-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,18,41,.55) 0,rgba(0,18,41,.05) 50%,transparent 100%);
  z-index: 2;
  pointer-events: none;
}
/* Page hero banners — 1900×300 source → 15.8% intrinsic ratio */
.page-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(120px, 15.8vw, 300px);
  display: block;
  background: var(--surface);
}
@media (max-width: 640px) {
  .page-hero {
    height: clamp(90px, 28vw, 160px);
  }
}
.page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-hero::after,
.page-hero::before {
  display: none!important;
}
.footer,
footer.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  border-top: 3px solid var(--gold);
  font-size: .875rem;
}
.footer .container {
  padding-top: 3rem;
  padding-bottom: 1.25rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width:1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width:600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.offer-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  box-shadow: 0 2px 12px rgba(0,31,63,.06);
  transition: transform .3s,box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,31,63,.13);
}
.offer-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg,var(--navy) 0,var(--navy-dark) 100%);
  flex-shrink: 0;
}
.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.offer-card:hover .offer-card__image img {
  transform: scale(1.05);
}
.offer-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,var(--navy) 0,var(--navy-dark) 100%);
}
.offer-card__image-placeholder i {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .22;
}
.offer-card__badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .65rem;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  z-index: 2;
}
.offer-card__badge i {
  color: var(--gold-light);
}
.offer-card__price-tag {
  position: absolute;
  bottom: .8rem;
  right: .8rem;
  padding: .35rem .9rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: Poppins,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(199,160,82,.45);
  z-index: 2;
  white-space: nowrap;
}
.offer-card__content {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 2px solid var(--gold-pale);
  gap: .45rem;
}
.offer-card__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: 1.1rem!important;
  font-weight: 700!important;
  color: var(--navy) !important;
  line-height: 1.3!important;
  margin-bottom: 0!important;
  display: -webkit-box!important;
  -webkit-line-clamp: 2!important;
  line-clamp: 2!important;
  -webkit-box-orient: vertical!important;
  overflow: hidden!important;
}
.offer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  font-size: .78rem;
  color: var(--text-3);
}
.offer-card__meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.offer-card__meta i {
  color: var(--gold);
  font-size: .7rem;
}
.offer-card__content .btn,
.offer-card__content .btn--gold,
.offer-card__content .btn--primary {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.why-us {
  padding: 4.5rem 0;
  background: linear-gradient(160deg,var(--white) 0,var(--off) 100%);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
@media (max-width:900px) {
  .why-us__grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}
.why-us__card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,31,63,.05);
  transition: transform .3s,box-shadow .3s,border-color .3s;
  position: relative;
  overflow: hidden;
}
.why-us__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,31,63,.11);
  border-color: rgba(199,160,82,.3);
}
.why-us__card-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
}
.why-us__card-icon-bg {
  position: absolute;
  inset: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  transition: background .3s;
}
.why-us__card:hover .why-us__card-icon-bg {
  background: var(--gold);
}
.why-us__card-icon>i {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: var(--gold-dark);
  line-height: 64px;
  transition: color .3s;
}
.why-us__card:hover .why-us__card-icon>i {
  color: var(--white);
}
.why-us__card-title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: 1.15rem!important;
  font-weight: 700!important;
  color: var(--navy) !important;
  margin-bottom: .4rem;
}
.why-us__card-text {
  font-size: .83rem;
  color: var(--text-3);
  line-height: 1.55;
}
.why-us__card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0,31,63,.04);
  font-family: Poppins,sans-serif;
  line-height: 1;
  pointer-events: none;
}
.section__header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.section__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem) !important;
  font-weight: 700!important;
  color: var(--navy) !important;
  line-height: 1.2!important;
  margin-bottom: .35rem;
}
.section__subtitle {
  font-size: .9rem;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.section__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem 1rem;
  background: var(--gold-pale);
  border: 1px solid rgba(199,160,82,.3);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .6rem;
}
.section__cta {
  text-align: center;
  margin-top: 2.25rem;
}
.section--white {
  background: var(--white);
}
.section--gradient {
  background: linear-gradient(160deg,var(--off) 0,var(--surface) 100%);
}
.carousel-container {
  position: relative;
  padding: 0 3.25rem;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white) !important;
  border: 2px solid var(--border) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--navy) !important;
  font-size: .9rem;
  transition: .25s;
  box-shadow: var(--sh1);
}
.carousel-nav:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: var(--shg);
  transform: translateY(-50%) scale(1.08);
}
.carousel-nav--prev {
  left: 0;
}
.carousel-nav--next {
  right: 0;
}
@media (max-width:768px) {
  .top-bar__contact {
    display: none;
  }
  .top-bar {
    padding: .35rem 0;
  }
  .nav__mobile-toggle {
    display: flex;
  }
  .nav__menu {
    display: none!important;
  }
  .hero--carousel,
  .hero.hero--carousel {
    height: clamp(220px,52vw,360px);
  }
  .carousel-container {
    padding: 0 2.5rem;
  }
  .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: .8rem;
  }
  .why-us__grid {
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
  .section {
    padding: 3rem 0;
  }
}
@media (max-width:480px) {
  .top-bar {
    display: none;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .carousel-container {
    padding: 0 2rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer__brand img {
  height: 44px;
  width: auto;
  display: block;
}
.footer__description {
  font-size: .855rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 28ch;
}
.footer__social {
  display: flex;
  gap: .55rem;
  margin-top: .25rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s,border-color .2s,color .2s;
}
.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer__title {
  font-family: Poppins,sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color .18s,padding-left .18s;
}
.footer__link:hover {
  color: var(--gold-light);
  padding-left: .3rem;
}
.footer__link i {
  font-size: .6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .65rem;
  line-height: 1.45;
}
.footer__icon {
  color: var(--gold);
  font-size: .85rem;
  margin-top: .15rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  text-align: center;
}
.footer__bottom strong {
  color: rgba(255,255,255,.55);
}
.destination-card {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--sh2);
  transition: transform .3s,box-shadow .3s;
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh3);
}
.destination-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s;
}
.destination-card:hover .destination-card__img {
  transform: scale(1.07);
}
.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,18,41,.82) 0,rgba(0,18,41,.18) 55%,transparent 100%);
  z-index: 1;
}
.destination-card__badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .6rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}
.destination-card__badge i {
  font-size: .6rem;
}
.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem;
  z-index: 2;
}
.destination-card__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .15rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.destination-card__region {
  font-size: .75rem;
  color: rgba(255,255,255,.72);
  margin-bottom: .55rem;
}
.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
  transition: gap .2s;
}
.destination-card:hover .destination-card__cta {
  gap: .6rem;
}
.destination-card__cta i {
  font-size: .65rem;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 1.5rem;
}
.listing-card {
  background: var(--white) !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden;
  border: 1px solid var(--border-lt) !important;
  box-shadow: 0 2px 14px rgba(0,31,63,.07) !important;
  transition: transform .3s,box-shadow .3s,border-color .3s!important;
  display: flex!important;
  flex-direction: column!important;
}
.listing-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(199,160,82,.4) !important;
  box-shadow: 0 14px 38px rgba(0,31,63,.13) !important;
}
.listing-card__image {
  position: relative;
  height: 190px!important;
  overflow: hidden;
  background: linear-gradient(135deg,var(--navy) 0,var(--navy-dark) 100%) !important;
  flex-shrink: 0;
}
.listing-card__image img,
.listing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.listing-card:hover .listing-card__image img,
.listing-card:hover .listing-card__img {
  transform: scale(1.05);
}
.listing-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,var(--navy) 0,var(--navy-dark) 100%);
}
.listing-card__image-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  opacity: .2;
}
.listing-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .65rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  z-index: 2;
}
.listing-card__badge i {
  color: rgba(255,255,255,.85);
  font-size: .65rem;
}
.listing-card__price {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  padding: .35rem .85rem;
  background: rgba(0,18,41,.88);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  color: var(--gold-light);
  font-family: Poppins,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
}
.listing-card__content {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.listing-card__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: 1.15rem!important;
  font-weight: 700!important;
  color: var(--navy) !important;
  line-height: 1.25!important;
  margin-bottom: 0!important;
}
.listing-card__meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-3);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-lt);
}
.listing-card__meta-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--text-3);
}
.listing-card__meta-item i {
  color: var(--gold);
  font-size: .72rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.listing-card__meta-item--warning,
.listing-card__meta-item--warning i {
  color: var(--status-warning);
}
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 420px;
  margin: 0 auto;
}
.empty-state__icon {
  width: 72px;
  height: 72px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--gold-dark);
}
.empty-state__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.empty-state__text {
  font-size: .875rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.search-field--dates>div,
.search-field--destination>div,
.search-field--guests,
.search-field>div {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off);
  transition: border-color .2s,box-shadow .2s;
  min-height: 48px;
}
.search-field--dates:focus-within>div,
.search-field--destination:focus-within>div,
.search-field>div:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.12);
  background: var(--white);
}
.search-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  font-size: .85rem;
  pointer-events: none;
  z-index: 2;
  flex-shrink: 0;
}
.search-input {
  width: 100%;
  padding: .7rem .85rem .7rem 2.4rem;
  border: none;
  background: 0 0;
  font-size: .9rem;
  color: var(--text);
  outline: 0;
  font-family: Poppins,sans-serif;
  min-width: 0;
}
.search-input::placeholder {
  color: var(--text-3);
  font-size: .875rem;
}
.search-field--submit .btn,
.search-field--submit .btn--primary {
  height: 48px;
  width: 100%;
  justify-content: center;
}
.listing-card__meta-item i {
  color: var(--gold);
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s,transform .55s;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s,transform .5s;
  transition-delay: var(--delay, 0s);
}
.revealed .scroll-reveal-item,
.scroll-reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero-carousel__skeleton {
  display: none!important;
}
.hero-swiper,
.swiper.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-wrapper {
  height: 100%;
  align-items: stretch;
}
.hero-carousel__slide,
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
  flex-shrink: 0;
}
.hero-carousel__img {
  position: absolute!important;
  inset: 0!important;
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
  object-position: center!important;
  display: block!important;
  z-index: 0;
}
.hero-carousel__overlay,
.hero-carousel__slide::after {
  z-index: 1;
}
.search-field>div[style] {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off);
  min-height: 46px;
  position: relative;
  transition: border-color .2s,box-shadow .2s;
  overflow: visible;
}
.search-field>div[style]:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,160,82,.13);
  background: var(--white);
}
.search-icon {
  position: absolute!important;
  left: .8rem!important;
  top: 50%!important;
  transform: translateY(-50%) !important;
  font-size: .82rem!important;
  color: var(--gold) !important;
  pointer-events: none;
  z-index: 3;
}
.search-input {
  width: 100%!important;
  border: none!important;
  background: 0 0!important;
  padding: .65rem .75rem .65rem 2.25rem!important;
  font-size: .875rem!important;
  color: var(--text) !important;
  outline: 0!important;
  font-family: Poppins,sans-serif!important;
}
.search-input::placeholder {
  color: var(--text-3) !important;
  font-size: .85rem!important;
}
.search-field--guests>div[style] {
  border: none!important;
  background: 0 0!important;
  box-shadow: none!important;
  min-height: unset!important;
  padding: 0!important;
}
.guests-btn {
  width: 100%!important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  background: var(--off) !important;
  padding: .65rem .85rem!important;
  font-size: .875rem!important;
  min-height: 46px!important;
  display: flex!important;
  align-items: center!important;
  justify-content: space-between!important;
  cursor: pointer!important;
  font-family: Poppins,sans-serif!important;
  color: var(--text) !important;
  transition: border-color .2s,background .2s!important;
}
.guests-btn--active,
.guests-btn:hover {
  border-color: var(--gold) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(199,160,82,.12) !important;
}
.nav__container {
  display: flex!important;
  align-items: center!important;
  height: 66px!important;
  gap: 0!important;
}
.nav__logo {
  flex-shrink: 0;
  margin-right: auto!important;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: unset!important;
}
.nav__logo img {
  height: 46px!important;
  width: auto!important;
}
.search-form {
  display: grid!important;
  grid-template-columns: 2fr 1fr 1fr 1.4fr auto!important;
  gap: .75rem!important;
  align-items: end!important;
}
.guests-dropdown {
  position: absolute!important;
  top: calc(100% + 6px) !important;
  left: 50%!important;
  transform: translateX(-50%) !important;
  min-width: 300px!important;
  width: max-content!important;
  max-width: 360px!important;
  z-index: 9999!important;
}
@media (max-width:600px) {
  .guests-dropdown {
    left: 0!important;
    transform: none!important;
    min-width: 280px!important;
  }
  .search-form {
    grid-template-columns: 1fr!important;
  }
}
.footer__brand img {
  height: 52px!important;
  width: auto!important;
  max-width: 150px!important;
  display: block!important;
}
.footer__grid {
  display: grid!important;
  grid-template-columns: 2fr 1fr 1fr 1.2fr!important;
  gap: 2rem!important;
  padding-bottom: 2rem;
}
@media (max-width:960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr!important;
  }
}
@media (max-width:600px) {
  .footer__grid {
    grid-template-columns: 1fr!important;
  }
}
.page-hero {
  position: relative!important;
  overflow: hidden!important;
  display: block!important;
  width: 100%!important;
  height: clamp(200px,15.8vw,300px) !important;
  background: var(--surface) !important;
}
.page-hero::after,
.page-hero::before {
  content: none!important;
  display: none!important;
}
.page-hero__image {
  display: block!important;
  position: absolute!important;
  inset: 0!important;
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
  object-position: center center!important;
  opacity: 1!important;
  z-index: 0!important;
}
.page-hero__badge,
.page-hero__content,
.page-hero__overlay,
.page-hero__subtitle,
.page-hero__title {
  display: none!important;
}
@media (max-width:768px) {
  .page-hero {
    height: clamp(120px,24vw,200px) !important;
  }
}
.swiper-wrapper {
  align-items: stretch;
}
.swiper-slide {
  height: auto!important;
}
.offer-card,
.swiper-slide .offer-card {
  height: 100%!important;
  display: flex!important;
  flex-direction: column!important;
}
.offer-card__content {
  display: flex!important;
  flex-direction: column!important;
  flex: 1!important;
}
.offer-card__content>.btn,
.offer-card__content>[class*=btn],
.offer-card__content>a {
  margin-top: auto!important;
}
.listing-card {
  display: flex!important;
  flex-direction: column!important;
  height: 100%!important;
}
.listing-card__content {
  display: flex!important;
  flex-direction: column!important;
  flex: 1!important;
}
.listing-card__content>.btn,
.listing-card__content>[class*=btn],
.listing-card__content>a {
  margin-top: auto!important;
}
.hd-page {
  background: var(--off,#f8f6f1);
  min-height: 100vh;
  padding-bottom: 3rem;
}
.hd-breadcrumb {
  background: var(--navy,#0a1628);
  padding: .6rem 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}
.hd-breadcrumb a {
  color: var(--gold,#c9a84c);
  text-decoration: none;
}
.hd-breadcrumb a:hover {
  text-decoration: underline;
}
.hd-breadcrumb span {
  margin: 0 .4rem;
}
.hd-header {
  background: var(--navy,#0a1628);
  color: #fff;
  padding: 1.25rem 1.5rem 1.5rem;
}
.hd-header__left {
  flex: 1;
}
.hd-header__name {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .4rem;
}
.hd-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  align-items: center;
  margin-top: .35rem;
}
.hd-header__stars {
  color: var(--gold,#c9a84c);
  letter-spacing: 1px;
}
.hd-header__cat,
.hd-header__type {
  background: rgba(201,168,76,.18);
  color: var(--gold,#c9a84c);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 4px;
  padding: .15rem .55rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hd-header__location {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.hd-header__address,
.hd-header__country {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.hd-header__dates {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .5rem 1rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.hd-header__date-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.45);
}
.hd-header__date-val {
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
}
.hd-header__date-sep {
  color: rgba(255,255,255,.3);
  font-size: 1.1rem;
}
.hd-header__nights {
  font-size: .8rem;
  color: var(--gold,#c9a84c);
  font-weight: 600;
}
.hd-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-height: 480px;
  overflow: hidden;
}
.hd-carousel {
  position: relative;
  background: #111;
  overflow: hidden;
}
.hd-carousel__viewport {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}
@media (max-width:900px) {
  .hd-hero {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .hd-carousel__viewport {
    height: clamp(220px,52vw,380px);
  }
}
.hd-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .45s;
}
.hd-carousel__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#1a2540 0,#0a1628 100%);
  color: rgba(255,255,255,.3);
  font-size: 3rem;
}
.hd-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  font-size: 1rem;
}
.hd-carousel__arrow:hover {
  background: rgba(201,168,76,.85);
}
.hd-carousel__arrow--left {
  left: 12px;
}
.hd-carousel__arrow--right {
  right: 12px;
}
.hd-carousel__counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .75rem;
  padding: .2rem .55rem;
  border-radius: 20px;
  z-index: 10;
}
.hd-carousel__thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0,0,0,.65);
  overflow-x: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.hd-carousel__thumbs::-webkit-scrollbar {
  height: 4px;
}
.hd-carousel__thumbs::-webkit-scrollbar-thumb {
  background: var(--gold,#c9a84c);
  border-radius: 4px;
}
.hd-carousel__thumb {
  width: 60px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s,outline .2s;
  flex-shrink: 0;
}
.hd-map {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #e8e4dc;
}
#hotel-map {
  flex: 1;
  width: 100%;
  min-height: 300px;
  z-index: 1;
}
@media (max-width:900px) {
  .hd-map {
    height: 260px;
  }
  #hotel-map {
    min-height: 260px;
  }
}
.hd-map__info {
  background: var(--navy,#0a1628);
  padding: .75rem 1rem;
}
.hd-map__info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  padding: .2rem 0;
}
.hd-map__info-item i {
  color: var(--gold,#c9a84c);
  width: 16px;
}
.hd-map__unavailable {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#ddd8cc 0,#c8c2b4 100%);
  color: #888;
  font-size: .9rem;
  gap: .5rem;
}
.hd-map__unavailable i {
  font-size: 2rem;
  opacity: .4;
}
.hd-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}
.hd-section {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
  margin-bottom: 1.25rem;
}
.hd-section__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy,#0a1628);
  margin: 0 0 .85rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold,#c9a84c);
}
.hd-description {
  font-size: .9rem;
  color: #444;
  line-height: 1.75;
}
.hd-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hd-facility {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--off,#f8f6f1);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .8rem;
  color: var(--navy,#0a1628);
}
.hd-facility i {
  color: var(--gold,#c9a84c);
  font-size: .85rem;
}
.hd-notes__title {
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy,#0a1628);
  margin-bottom: .4rem;
}
.hd-notes__body {
  font-size: .85rem;
  color: #555;
  line-height: 1.7;
  background: rgba(201,168,76,.07);
  border-left: 3px solid var(--gold,#c9a84c);
  border-radius: 0 6px 6px 0;
  padding: .75rem 1rem;
}
.hd-lodging {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
  overflow: hidden;
}
.hc-expand-tabs {
  display: flex;
  border-bottom: 1px solid rgba(10,22,40,.08);
  overflow-x: auto;
}
.hc-expand-tab {
  padding: .75rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .2s,border-color .2s;
  flex-shrink: 0;
}
.hc-expand-tab:hover {
  color: var(--navy,#0a1628);
}
.hc-expand-tab--active {
  color: var(--navy,#0a1628);
  border-bottom-color: var(--gold,#c9a84c);
}
.hc-pax-section {
  padding: .75rem 1.25rem;
  background: var(--off,#f8f6f1);
  border-bottom: 1px solid rgba(10,22,40,.06);
  font-size: .82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hc-pax-section i {
  color: var(--gold,#c9a84c);
}
.hc-rooms-list {
  padding: .75rem 1.25rem;
}
.hc-room-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .75rem;
  border-radius: 8px;
  border: 1px solid rgba(10,22,40,.08);
  margin-bottom: .6rem;
  transition: border-color .2s,background .2s;
  gap: .75rem;
  flex-wrap: wrap;
}
.hc-room-option:hover {
  border-color: var(--gold,#c9a84c);
  background: rgba(201,168,76,.04);
}
.hc-room-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy,#0a1628);
  flex: 1;
}
.hc-room-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 4px;
  background: rgba(201,168,76,.15);
  color: var(--gold,#c9a84c);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.hc-room-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy,#0a1628);
  white-space: nowrap;
}
.hc-expand-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--navy,#0a1628);
  gap: 1rem;
  flex-wrap: wrap;
}
.hc-footer-left {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hc-retro-badge {
  background: var(--gold,#c9a84c);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .2rem .55rem;
  border-radius: 4px;
}
.hc-footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hc-footer-total {
  text-align: right;
}
.hc-footer-total span:first-child {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.hc-footer-total strong {
  font-size: 1.35rem;
  color: var(--gold,#c9a84c);
  font-weight: 700;
}
.hc-reserve-btn {
  background: var(--gold,#c9a84c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s,transform .1s;
  white-space: nowrap;
}
.hc-reserve-btn:hover {
  background: #b8963e;
  transform: translateY(-1px);
}
.hd-boardings-preview {
  padding: 1.5rem;
  text-align: center;
}
.hd-boardings-preview__intro {
  font-size: .9rem;
  color: #666;
  margin-bottom: 1rem;
}
.hd-boardings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.hd-boarding-badge {
  background: var(--off,#f8f6f1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--navy,#0a1628);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
}
.hd-lodging__cta {
  display: block;
  text-align: center;
  margin: 1rem auto 0;
  background: var(--navy,#0a1628);
  color: var(--gold,#c9a84c);
  border: 1px solid var(--gold,#c9a84c);
  border-radius: 8px;
  padding: .65rem 1.5rem;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s,color .2s;
  max-width: 280px;
}
.hd-lodging__cta:hover {
  background: var(--gold,#c9a84c);
  color: #fff;
}
.hd-no-pricing {
  padding: 2rem 1.25rem;
  text-align: center;
  color: #888;
  font-size: .9rem;
}
.hd-no-pricing i {
  font-size: 2rem;
  display: block;
  margin-bottom: .5rem;
  opacity: .4;
}
.hero--carousel .hero-carousel__img,
.hero-carousel__img,
.hero-swiper .swiper-slide img {
  aspect-ratio: 1900/500!important;
  object-fit: cover!important;
  object-position: center!important;
  width: 100%!important;
  height: 100%!important;
}
.hero--carousel,
.hero.hero--carousel {
  height: clamp(220px,26.32vw,500px) !important;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}
.hero--carousel .hero-swiper,
.hero--carousel .swiper,
.hero--carousel .swiper-wrapper {
  height: 100%!important;
}
.hero--carousel .hero-carousel__slide,
.hero--carousel .swiper-slide {
  height: 100%!important;
  overflow: hidden;
}
@media (max-width:768px) {
  .hero--carousel,
  .hero.hero--carousel {
    height: clamp(180px,52vw,320px) !important;
  }
}
@media (max-width:480px) {
  .hero--carousel,
  .hero.hero--carousel {
    height: clamp(150px,56vw,220px) !important;
  }
}
.guests-dropdown {
  position: absolute!important;
  top: calc(100% + 6px) !important;
  left: 0!important;
  z-index: 9999!important;
  background: #fff!important;
  border: 1px solid rgba(10,22,40,.12) !important;
  border-radius: 10px!important;
  box-shadow: 0 8px 32px rgba(10,22,40,.15) !important;
  min-width: 300px!important;
  max-height: 480px!important;
  overflow-y: auto!important;
  padding: 1rem!important;
}
.guests-dropdown::-webkit-scrollbar {
  width: 6px;
}
.guests-dropdown::-webkit-scrollbar-thumb {
  background: var(--gold,#c9a84c);
  border-radius: 6px;
}
.hd-carousel__thumb {
  width: 60px;
  height: 42px;
  border-radius: 4px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s,outline .2s;
  flex-shrink: 0;
  overflow: hidden;
}
.hd-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hd-carousel__thumb--active,
.hd-carousel__thumb:hover {
  opacity: 1;
  outline: 2px solid var(--gold,#c9a84c);
}
.hd-hero .hd-map {
  height: 480px;
}
@media (max-width:900px) {
  .hd-content {
    grid-template-columns: 1fr;
  }
  .hd-hero .hd-map {
    height: 260px;
  }
}
.hd-page>.container {
  padding-inline: 0!important;
}
.hd-breadcrumb,
.hd-header {
  padding-left: 1.5rem!important;
  padding-right: 1.5rem!important;
}
.hd-hero+.hd-section,
.hd-hero~*>.hd-section,
.hd-hero~.hd-section,
.hd-section {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.hd-rooms-empty {
  padding: 1.25rem;
  text-align: center;
  color: #888;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.hd-rooms-empty i {
  color: var(--gold,#c9a84c);
}
.hd-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold,#c9a84c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.hd-reserve-btn:hover {
  background: #b8963e;
}
.hc-pax-section {
  display: block;
  padding: 0;
  background: 0 0;
  border-bottom: none;
}
.hc-pax-section .hc-rooms-list {
  padding: .75rem 1.25rem;
}
.search-field--guests {
  overflow: visible!important;
  position: relative!important;
}
.search-field--guests>div[style] {
  overflow: visible!important;
  position: relative!important;
  border: none!important;
  background: 0 0!important;
  box-shadow: none!important;
  min-height: unset!important;
  padding: 0!important;
  display: block!important;
}
.search-field--guests .search-label {
  display: block!important;
  font-size: .72rem!important;
  font-weight: 700!important;
  text-transform: uppercase!important;
  letter-spacing: .07em!important;
  color: var(--text-3) !important;
  font-family: Poppins,sans-serif!important;
  margin-bottom: .3rem!important;
}
.guests-btn {
  width: 100%!important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-md,8px) !important;
  background: var(--off,#f8f6f1) !important;
  padding: .65rem .85rem!important;
  font-size: .875rem!important;
  min-height: 46px!important;
  display: flex!important;
  align-items: center!important;
  justify-content: space-between!important;
  cursor: pointer!important;
  font-family: Poppins,sans-serif!important;
  color: var(--text,#1a1a2e) !important;
  transition: border-color .2s,background .2s!important;
}
.guests-btn--active,
.guests-btn:hover {
  border-color: var(--gold,#c9a84c) !important;
  background: #fff!important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12) !important;
}
.guests-dropdown {
  position: absolute!important;
  top: calc(100% + 8px) !important;
  left: 0!important;
  transform: none!important;
  z-index: 99999!important;
  background: #fff!important;
  border: 1.5px solid rgba(10,22,40,.12) !important;
  border-radius: 12px!important;
  box-shadow: 0 12px 40px rgba(10,22,40,.18) !important;
  min-width: 320px!important;
  width: max-content!important;
  max-width: 380px!important;
  max-height: 500px!important;
  overflow-y: auto!important;
  padding: 1rem!important;
}
@media (max-width:680px) {
  .guests-dropdown {
    left: 50%!important;
    transform: translateX(-50%) !important;
    min-width: 290px!important;
    max-width: 96vw!important;
  }
}
.nav__logo img {
  height: 58px!important;
  width: auto!important;
  max-width: 220px!important;
  object-fit: contain!important;
}
.hd-page {
  background: #f4f4f6!important;
  min-height: 100vh!important;
  padding-bottom: 3rem!important;
}
.hd-page>.container {
  padding-inline: 0!important;
  max-width: 1200px!important;
}
.hd-breadcrumb {
  background: #fff!important;
  border-bottom: 1px solid #e8e8ec!important;
  padding: .65rem 1.5rem!important;
  font-size: .78rem!important;
  color: #666!important;
  display: flex!important;
  align-items: center!important;
  gap: .35rem!important;
  flex-wrap: wrap!important;
}
.hd-breadcrumb a {
  color: #0a1628!important;
  text-decoration: none!important;
  font-weight: 500!important;
}
.hd-breadcrumb a:hover {
  color: #c9a84c!important;
}
.hd-breadcrumb i {
  font-size: .6rem!important;
  color: #bbb!important;
}
.hd-breadcrumb span {
  color: #c9a84c!important;
  font-weight: 600!important;
}
.hd-header {
  background: #fff!important;
  color: #0a1628!important;
  padding: 1.5rem 1.5rem 1.25rem!important;
  border-bottom: 1px solid #e8e8ec!important;
  display: flex!important;
  flex-wrap: wrap!important;
  gap: 1rem!important;
  align-items: flex-start!important;
  justify-content: space-between!important;
}
.hd-header__left {
  flex: 1;
  min-width: 0;
}
.hd-header__name {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: clamp(1.4rem, 3vw, 1.9rem) !important;
  font-weight: 700!important;
  color: #0a1628!important;
  margin: 0 0 .5rem!important;
  line-height: 1.2!important;
}
.hd-header__meta {
  display: flex!important;
  flex-wrap: wrap!important;
  gap: .4rem .85rem!important;
  align-items: center!important;
}
.hd-header__stars {
  color: #c9a84c!important;
  display: flex!important;
  align-items: center!important;
  gap: .25rem!important;
  font-size: .9rem!important;
}
.hd-header__cat,
.hd-header__type {
  background: rgba(201,168,76,.1) !important;
  color: #b8963e!important;
  border: 1px solid rgba(201,168,76,.3) !important;
  border-radius: 4px!important;
  padding: .15rem .5rem!important;
  font-size: .7rem!important;
  font-weight: 700!important;
  text-transform: uppercase!important;
  letter-spacing: .5px!important;
}
.hd-header__location {
  display: flex!important;
  align-items: center!important;
  gap: .3rem!important;
  font-size: .82rem!important;
  color: #555!important;
}
.hd-header__location i {
  color: #c9a84c!important;
}
.hd-header__country {
  color: #888!important;
}
.hd-header__address {
  font-size: .8rem!important;
  color: #888!important;
  margin: .4rem 0 0!important;
  display: flex!important;
  align-items: center!important;
  gap: .35rem!important;
}
.hd-header__address i {
  color: #c9a84c!important;
}
.hd-header__dates {
  display: flex!important;
  align-items: center!important;
  gap: .75rem!important;
  background: #f8f6f1!important;
  border: 1.5px solid #e8e0cc!important;
  border-radius: 10px!important;
  padding: .65rem 1.1rem!important;
  flex-wrap: wrap!important;
  align-self: flex-start!important;
}
.hd-header__date-item {
  text-align: center;
}
.hd-header__date-label {
  display: block!important;
  font-size: .66rem!important;
  text-transform: uppercase!important;
  letter-spacing: .5px!important;
  color: #999!important;
  font-weight: 600!important;
}
.hd-header__date-val {
  font-size: .9rem!important;
  font-weight: 700!important;
  color: #0a1628!important;
}
.hd-header__date-sep {
  color: #ccc!important;
}
.hd-header__nights {
  font-size: .78rem!important;
  color: #c9a84c!important;
  font-weight: 700!important;
  background: rgba(201,168,76,.1) !important;
  border-radius: 20px!important;
  padding: .15rem .6rem!important;
}
.hd-hero {
  display: grid!important;
  grid-template-columns: 1fr 360px!important;
  gap: 0!important;
  height: 420px!important;
  margin: 1rem 1.25rem!important;
  border-radius: 14px!important;
  overflow: hidden!important;
  box-shadow: 0 4px 20px rgba(10,22,40,.12) !important;
}
@media (max-width:900px) {
  .hd-hero {
    grid-template-columns: 1fr!important;
    height: auto!important;
    margin: .75rem!important;
  }
}
.hd-carousel {
  position: relative!important;
  background: #111!important;
  overflow: hidden!important;
  height: 100%!important;
}
.hd-carousel__viewport {
  width: 100%!important;
  height: 100%!important;
  position: relative!important;
  overflow: hidden!important;
}
.hd-carousel__img {
  position: absolute!important;
  inset: 0!important;
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
  object-position: center!important;
}
.hd-carousel__placeholder {
  width: 100%!important;
  height: 420px!important;
  display: flex!important;
  flex-direction: column!important;
  align-items: center!important;
  justify-content: center!important;
  background: #e4e4e8!important;
  color: #aaa!important;
  gap: .5rem!important;
  font-size: 2.5rem!important;
}
.hd-carousel__arrow {
  position: absolute!important;
  top: 50%!important;
  transform: translateY(-50%) !important;
  z-index: 10!important;
  background: rgba(255,255,255,.9) !important;
  color: #0a1628!important;
  border: none!important;
  border-radius: 50%!important;
  width: 38px!important;
  height: 38px!important;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  cursor: pointer!important;
  box-shadow: 0 2px 8px rgba(0,0,0,.2) !important;
  transition: background .2s!important;
  font-size: .85rem!important;
}
.hd-carousel__arrow:hover {
  background: #c9a84c!important;
  color: #fff!important;
}
.hd-carousel__arrow--left {
  left: 10px!important;
}
.hd-carousel__arrow--right {
  right: 10px!important;
}
.hd-carousel__counter {
  position: absolute!important;
  bottom: 8px!important;
  right: 10px!important;
  background: rgba(0,0,0,.5) !important;
  color: #fff!important;
  font-size: .72rem!important;
  padding: .18rem .5rem!important;
  border-radius: 20px!important;
  z-index: 10!important;
  display: flex!important;
  align-items: center!important;
  gap: .3rem!important;
}
.hd-carousel__thumbs {
  display: flex!important;
  gap: 5px!important;
  padding: 6px 10px!important;
  background: rgba(0,0,0,.55) !important;
  overflow-x: auto!important;
  position: absolute!important;
  bottom: 0!important;
  left: 0!important;
  right: 0!important;
  z-index: 10!important;
}
.hd-carousel__thumb {
  width: 52px!important;
  height: 38px!important;
  border-radius: 4px!important;
  cursor: pointer!important;
  opacity: .55!important;
  transition: opacity .2s,outline .2s!important;
  flex-shrink: 0!important;
  overflow: hidden!important;
}
.hd-carousel__thumb img {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
  display: block!important;
}
.hd-carousel__thumb--active,
.hd-carousel__thumb:hover {
  opacity: 1!important;
  outline: #c9a84c solid 2px!important;
}
.hd-map {
  position: relative!important;
  background: #e8e4dc!important;
  height: 100%!important;
  display: flex!important;
  flex-direction: column!important;
}
#hotel-map {
  flex: 1!important;
  width: 100%!important;
  min-height: 280px!important;
  height: 100%!important;
  z-index: 1!important;
}
@media (max-width:900px) {
  .hd-map {
    height: 280px!important;
  }
  #hotel-map {
    min-height: 280px!important;
    height: 280px!important;
  }
}
.hd-map__info {
  background: #fff!important;
  border-top: 1px solid #e8e8ec!important;
  padding: .6rem 1rem!important;
  flex-shrink: 0!important;
}
.hd-map__info-item {
  display: flex!important;
  align-items: center!important;
  gap: .4rem!important;
  font-size: .78rem!important;
  color: #444!important;
  padding: .15rem 0!important;
}
.hd-map__info-item i {
  color: #c9a84c!important;
}
.hd-map__unavailable {
  flex: 1!important;
  display: flex!important;
  flex-direction: column!important;
  align-items: center!important;
  justify-content: center!important;
  background: #e8e4dc!important;
  color: #aaa!important;
  gap: .5rem!important;
  font-size: .85rem!important;
}
.hd-map__unavailable i {
  font-size: 2.5rem!important;
  opacity: .3!important;
}
.hd-section {
  background: #fff!important;
  border-radius: 12px!important;
  padding: 1.5rem!important;
  box-shadow: 0 1px 8px rgba(10,22,40,.06) !important;
  margin: 1rem 1.25rem!important;
  border: 1px solid #ebebef!important;
}
.hd-section__title {
  font-family: 'Cormorant Garamond',Georgia,serif!important;
  font-size: 1.2rem!important;
  font-weight: 700!important;
  color: #0a1628!important;
  margin: 0 0 1rem!important;
  padding-bottom: .6rem!important;
  border-bottom: 2px solid #c9a84c!important;
  display: flex!important;
  align-items: center!important;
  gap: .5rem!important;
}
.hd-section__title i {
  color: #c9a84c!important;
  font-size: .95rem!important;
}
.hd-description {
  font-size: .88rem!important;
  color: #444!important;
  line-height: 1.8!important;
}
.hd-facilities {
  display: flex!important;
  flex-wrap: wrap!important;
  gap: .5rem!important;
}
.hd-facility {
  display: flex!important;
  align-items: center!important;
  gap: .4rem!important;
  background: #f8f6f1!important;
  border: 1px solid #e8e0cc!important;
  border-radius: 6px!important;
  padding: .3rem .7rem!important;
  font-size: .78rem!important;
  color: #333!important;
  font-weight: 500!important;
}
.hd-facility i {
  color: #c9a84c!important;
  font-size: .78rem!important;
}
.hd-notes__title {
  font-weight: 700!important;
  font-size: .88rem!important;
  color: #0a1628!important;
  margin-bottom: .5rem!important;
  display: flex!important;
  align-items: center!important;
  gap: .4rem!important;
}
.hd-notes__title i {
  color: #e07b39!important;
}
.hd-notes__body {
  font-size: .83rem!important;
  color: #555!important;
  line-height: 1.7!important;
  background: #fffbf0!important;
  border-left: 3px solid #c9a84c!important;
  border-radius: 0 6px 6px 0!important;
  padding: .75rem 1rem!important;
}
.search-field--guests {
  border: none!important;
  background: 0 0!important;
  min-height: unset!important;
  display: flex!important;
  flex-direction: column!important;
  align-items: stretch!important;
  justify-content: flex-start!important;
  gap: .3rem!important;
  position: relative!important;
  overflow: visible!important;
}
.search-field--guests .search-label {
  display: block!important;
  font-size: .72rem!important;
  font-weight: 700!important;
  text-transform: uppercase!important;
  letter-spacing: .07em!important;
  color: var(--text-3,#888) !important;
  font-family: Poppins,sans-serif!important;
}
.search-field--guests>div[style] {
  position: relative!important;
  display: flex!important;
  align-items: center!important;
  border: 1.5px solid var(--border,#ddd) !important;
  border-radius: var(--r-md,8px) !important;
  background: var(--off,#f8f6f1) !important;
  transition: border-color .2s,box-shadow .2s!important;
  min-height: 46px!important;
  overflow: visible!important;
  box-shadow: none!important;
  padding: 0!important;
}
.search-field--guests>div[style]:focus-within {
  border-color: var(--gold,#c9a84c) !important;
  box-shadow: 0 0 0 3px rgba(199,160,82,.12) !important;
  background: #fff!important;
}
.guests-btn {
  width: 100%!important;
  border: none!important;
  border-radius: var(--r-md,8px) !important;
  background: 0 0!important;
  box-shadow: none!important;
  padding: .65rem .85rem!important;
  font-size: .875rem!important;
  min-height: 44px!important;
  display: flex!important;
  align-items: center!important;
  justify-content: space-between!important;
  cursor: pointer!important;
  font-family: Poppins,sans-serif!important;
  color: var(--text,#1a1a2e) !important;
  transition: color .2s!important;
}
.guests-btn--active,
.guests-btn:hover {
  background: 0 0!important;
  box-shadow: none!important;
  color: var(--navy,#0a1628) !important;
  border: none!important;
}
.guests-dropdown {
  position: absolute!important;
  top: calc(100% + 8px) !important;
  left: 0!important;
  right: auto!important;
  transform: none!important;
  z-index: 99999!important;
  background: #fff!important;
  border: 1.5px solid rgba(10,22,40,.12) !important;
  border-radius: 12px!important;
  box-shadow: 0 12px 40px rgba(10,22,40,.18) !important;
  min-width: 320px!important;
  width: max-content!important;
  max-width: 380px!important;
  max-height: 520px!important;
  overflow-y: auto!important;
  padding: 1rem!important;
}
@media (max-width:680px) {
  .guests-dropdown {
    left: 50%!important;
    transform: translateX(-50%) !important;
    min-width: 290px!important;
    max-width: 94vw!important;
  }
}
.search-box,
.search-box-wrapper {
  overflow: visible!important;
}
.nav__logo {
  flex-shrink: 0!important;
  margin-right: auto!important;
}
.nav__logo img {
  height: 90px!important;
  width: auto!important;
  max-width: none!important;
  object-fit: contain!important;
  display: block!important;
}
.guests-panel {
  background: #fff;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(10,22,40,.18),0 2px 8px rgba(10,22,40,.08);
  overflow: hidden;
  font-family: Poppins,sans-serif;
}
.gp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.1rem .7rem;
  border-bottom: 1px solid #f0ede8;
  background: #faf9f6;
}
.gp-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0a1628;
}
.gp-badge {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(201,168,76,.12);
  color: #b8963e;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 20px;
  padding: .15rem .6rem;
}
.gp-rooms {
  max-height: 340px;
  overflow-y: auto;
  padding: .5rem 0;
}
.gp-rooms::-webkit-scrollbar {
  width: 4px;
}
.gp-rooms::-webkit-scrollbar-thumb {
  background: #c9a84c;
  border-radius: 4px;
}
.gp-room {
  padding: .75rem 1.1rem;
  border-bottom: 1px solid #f4f2ee;
}
.gp-room:last-child {
  border-bottom: none;
}
.gp-room__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .65rem;
}
.gp-room__label {
  font-size: .78rem;
  font-weight: 700;
  color: #0a1628;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.gp-room__label i {
  color: #c9a84c;
  font-size: .75rem;
}
.gp-room__remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e0ddd8;
  background: #fff;
  color: #999;
  font-size: .72rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s,color .15s,border-color .15s;
}
.gp-room__remove:hover {
  background: #fff0f0;
  color: #e05555;
  border-color: #e05555;
}
.gp-counters {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.gp-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem .5rem;
  border-radius: 8px;
  background: #faf9f6;
}
.gp-counter__label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
}
.gp-counter__sub {
  font-size: .68rem;
  color: #aaa;
}
.gp-counter__ctrl {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.gp-counter__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #c9a84c;
  background: #fff;
  color: #c9a84c;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .15s,color .15s;
  flex-shrink: 0;
}
.gp-counter__btn:hover:not(:disabled) {
  background: #c9a84c;
  color: #fff;
}
.gp-counter__btn:disabled {
  opacity: .3;
  cursor: not-allowed;
  border-color: #ccc;
  color: #ccc;
}
.gp-counter__val {
  font-size: .95rem;
  font-weight: 700;
  color: #0a1628;
  min-width: 20px;
  text-align: center;
}
.gp-add {
  display: flex;
  align-items: center;
  gap: .4rem;
  width: 100%;
  padding: .65rem 1.1rem;
  border: none;
  border-top: 1px solid #f0ede8;
  background: 0 0;
  color: #c9a84c;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: Poppins,sans-serif;
  transition: background .15s;
}
.gp-add:hover {
  background: #faf9f6;
}
.gp-add i {
  font-size: .7rem;
}
.gp-child-age {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .3rem .9rem .3rem 1.1rem;
  background: #f9f6f0;
  border-top: 1px solid #f0ede8;
  gap: .5rem;
}
.gp-child-age__label {
  font-size: .72rem;
  color: #6b6251;
  font-weight: 500;
  flex-shrink: 0;
}
.gp-child-age__select {
  font-size: .72rem;
  font-family: Poppins, sans-serif;
  border: 1px solid #ddd6c8;
  border-radius: 6px;
  padding: .2rem .45rem;
  background: #fff;
  color: #1f2937;
  cursor: pointer;
  outline: none;
  flex: 1;
  max-width: 120px;
}
.gp-child-age__select:focus {
  border-color: var(--gold, #c7a052);
  box-shadow: 0 0 0 2px rgba(199,160,82,.15);
}
.gp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  border-top: 1px solid #f0ede8;
  background: #faf9f6;
}
.gp-footer__total {
  font-size: .78rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.gp-footer__total i {
  color: #c9a84c;
}
.gp-footer__done {
  background: #0a1628;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: Poppins,sans-serif;
  transition: background .15s;
  letter-spacing: .02em;
}
.gp-footer__done:hover {
  background: #c9a84c;
}
.book-page {
  background: #f4f4f6;
  min-height: 100vh;
  padding-bottom: 3rem;
}
.book-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.book-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid #e4e4ea;
  margin-bottom: 1.75rem;
}
.book-header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e4e4ea;
  color: #0a1628;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s,color .2s;
  box-shadow: 0 1px 4px rgba(10,22,40,.07);
}
.book-header__back:hover {
  background: #c9a84c;
  color: #fff;
  border-color: #c9a84c;
}
.book-header__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  line-height: 1.25;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width:900px) {
  .book-grid {
    grid-template-columns: 1fr;
  }
  .book-sidebar {
    order: 1;
  }
}
.bcard {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebef;
  box-shadow: 0 1px 8px rgba(10,22,40,.06);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.bcard__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid #f0ede8;
  background: #faf9f6;
}
.bcard__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg,#0a1628,#1a2e4a);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.bcard__title {
  font-size: .9rem;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: .02em;
}
.bcard__body {
  padding: 1.1rem 1.25rem;
}
.room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #e8e8ec;
  background: #fff;
  margin-bottom: .65rem;
  gap: 1rem;
  transition: border-color .2s;
}
.room-row:hover {
  border-color: #c9a84c;
}
.room-row__left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.room-row__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,.1);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.room-row__name {
  font-size: .88rem;
  font-weight: 700;
  color: #0a1628;
}
.room-row__desc {
  font-size: .75rem;
  color: #888;
  margin-top: .08rem;
}
.room-row__right {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.room-row__price {
  font-size: .9rem;
  font-weight: 700;
  color: #0a1628;
  white-space: nowrap;
}
.room-select {
  padding: .4rem .65rem;
  border: 1.5px solid #c9a84c;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: #0a1628;
  background: #fff;
  cursor: pointer;
  outline: 0;
  min-width: 65px;
  font-family: Poppins,sans-serif;
}
.room-persons {
  background: #faf9f6;
  border-radius: 8px;
  border: 1px solid #e8e0cc;
  padding: .75rem 1rem;
  margin-bottom: .65rem;
}
.room-persons__title {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.room-persons__title i {
  color: #c9a84c;
}
.person-row {
  display: flex;
  gap: .5rem;
  margin-bottom: .45rem;
}
.person-row input[type=text] {
  flex: 1;
  padding: .5rem .75rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 7px;
  font-size: .85rem;
  font-family: Poppins,sans-serif;
  outline: 0;
  transition: border-color .2s;
}
.person-row input[type=text]:focus {
  border-color: #c9a84c;
}
.person-row select {
  padding: .5rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 7px;
  font-size: .8rem;
  font-family: Poppins,sans-serif;
  color: #333;
  background: #fff;
  outline: 0;
  min-width: 75px;
}
.person-row select:focus {
  border-color: #c9a84c;
}
.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
@media (max-width:640px) {
  .client-grid {
    grid-template-columns: 1fr;
  }
}
.field__label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #555;
  margin-bottom: .3rem;
}
.req {
  color: #e05555;
}
.field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s;
}
.field__input-wrap:focus-within {
  border-color: #c9a84c;
}
.field__input-wrap>i {
  position: absolute;
  left: .75rem;
  color: #bbb;
  font-size: .8rem;
  pointer-events: none;
}
.field__input {
  width: 100%;
  padding: .6rem .75rem .6rem 2.1rem;
  border: none;
  background: 0 0;
  font-size: .875rem;
  font-family: Poppins,sans-serif;
  outline: 0;
  color: #1a1a2e;
}
.email-wrap {
  display: flex;
  gap: .5rem;
}
.email-wrap .field__input-wrap {
  flex: 1;
}
.btn-verify {
  padding: .5rem .85rem;
  border: 1.5px solid #c9a84c;
  border-radius: 8px;
  background: #fff;
  color: #c9a84c;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: Poppins,sans-serif;
  transition: background .15s,color .15s;
}
.btn-verify:hover {
  background: #c9a84c;
  color: #fff;
}
.btn-verify:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.otp-row {
  margin-top: .4rem;
}
.otp-row input {
  width: 100%;
  padding: .5rem .75rem;
  border: 1.5px solid #c9a84c;
  border-radius: 8px;
  font-size: .9rem;
  text-align: center;
  letter-spacing: .15em;
  font-family: Poppins,sans-serif;
  outline: 0;
}
.verified-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .85rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #166534;
  font-size: .82rem;
  font-weight: 600;
}
.error-txt {
  color: #e05555;
  font-size: .75rem;
  margin-top: .3rem;
}
.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 80px;
}
.trip-preview {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebef;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,.07);
}
.trip-preview__img {
  height: 170px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#0a1628,#1a3050);
}
.trip-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trip-preview__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(10,22,40,.65) 0,transparent 55%);
}
.trip-preview__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(201,168,76,.92);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .55rem;
  border-radius: 4px;
}
.trip-preview__price-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10,22,40,.75);
  border-radius: 8px;
  padding: .35rem .7rem;
  text-align: center;
}
.trip-preview__price-box small {
  display: block;
  font-size: .6rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.trip-preview__price-box strong {
  font-size: 1rem;
  font-weight: 700;
  color: #c9a84c;
}
.trip-preview__info {
  padding: 1rem 1.1rem;
}
.trip-preview__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.trip-preview__meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .78rem;
  color: #666;
}
.trip-preview__meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.trip-preview__meta i {
  color: #c9a84c;
  font-size: .72rem;
}
.summary-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebef;
  box-shadow: 0 2px 12px rgba(10,22,40,.07);
  overflow: hidden;
}
.summary-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.1rem;
  background: #0a1628;
}
.summary-box__head-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.75);
}
.summary-box__head-rooms {
  font-size: .75rem;
  color: #c9a84c;
  font-weight: 600;
}
.summary-box__body {
  padding: 1rem 1.1rem;
}
.sum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .35rem 0;
}
.sum-row__label {
  font-size: .82rem;
  color: #666;
}
.sum-row__value {
  font-size: .85rem;
  font-weight: 600;
  color: #0a1628;
}
.sum-divider {
  border: none;
  border-top: 1px solid #f0ede8;
  margin: .5rem 0;
}
.sum-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  margin-top: .5rem;
  background: linear-gradient(135deg,#0a1628,#1a3050);
  border-radius: 8px;
}
.sum-total__label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.sum-total__value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #c9a84c;
}
.submit-box {
  padding: .75rem 1.1rem;
  border-top: 1px solid #f0ede8;
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  background: linear-gradient(135deg,#c9a84c,#b8963e);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  font-family: Poppins,sans-serif;
  transition: transform .15s,box-shadow .15s;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  letter-spacing: .02em;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,168,76,.45);
}
.btn-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(3px);
}
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(10,22,40,.25);
}
.modal-box__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c9a84c,#b8963e);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.modal-box__title {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 .6rem;
}
.modal-box__text {
  font-size: .88rem;
  color: #666;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.modal-box__btns {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.modal-btn {
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  font-family: Poppins,sans-serif;
  transition: transform .15s;
}
.modal-btn:hover {
  transform: translateY(-1px);
}
.modal-btn--dark {
  background: #0a1628;
  color: #fff;
}
.modal-btn--gold {
  background: #c9a84c;
  color: #fff;
}
.book-sidebar {
  position: static!important;
  top: auto!important;
}
.guests-panel {
  min-width: 0!important;
  width: auto!important;
  max-height: 420px!important;
  overflow-y: auto!important;
}
.gp-header {
  padding: .6rem .85rem .5rem!important;
}
.gp-title {
  font-size: .72rem!important;
}
.gp-badge {
  font-size: .66rem!important;
  padding: .1rem .45rem!important;
}
.gp-rooms {
  max-height: 260px!important;
  padding: .2rem 0!important;
}
.gp-room {
  padding: .55rem .85rem!important;
}
.gp-room__header {
  margin-bottom: .45rem!important;
}
.gp-room__label {
  font-size: .72rem!important;
}
.gp-room__remove {
  width: 22px!important;
  height: 22px!important;
  font-size: .65rem!important;
}
.gp-counter {
  padding: .3rem .45rem!important;
}
.gp-counter__label {
  font-size: .76rem!important;
}
.gp-counter__sub {
  font-size: .62rem!important;
}
.gp-counter__btn {
  width: 26px!important;
  height: 26px!important;
  font-size: .95rem!important;
}
.gp-counter__val {
  font-size: .85rem!important;
  min-width: 16px!important;
}
.gp-add {
  padding: .5rem .85rem!important;
  font-size: .74rem!important;
}
.gp-footer {
  padding: .55rem .85rem!important;
}
.gp-footer__total {
  font-size: .72rem!important;
}
.gp-footer__done {
  padding: .35rem .85rem!important;
  font-size: .74rem!important;
}
@media (max-width:768px) {
  .hero,
  .hero--carousel {
    height: clamp(160px,38vw,240px) !important;
  }
}
@media (max-width:480px) {
  .hero,
  .hero--carousel {
    height: clamp(120px,30vw,175px) !important;
  }
}
.city-suggestions {
  border: 1px solid rgba(0,31,63,.1) !important;
  border-radius: 10px!important;
  box-shadow: 0 8px 24px rgba(0,31,63,.12),0 2px 6px rgba(0,0,0,.05) !important;
  overflow-y: auto!important;
  overflow-x: hidden!important;
  max-height: 220px!important;
  top: calc(100% + 4px) !important;
  font-size: .8rem!important;
}
.city-suggestions>div>div:first-child {
  background: #f5f7fa!important;
  border-bottom: 1px solid rgba(0,31,63,.07) !important;
  padding: .3rem .75rem!important;
  font-size: .65rem!important;
  font-weight: 700!important;
  letter-spacing: .06em!important;
  color: var(--imperium-navy,#001f3f) !important;
  text-transform: uppercase!important;
}
.city-suggestion {
  border: none!important;
  outline: 0!important;
  background: #fff!important;
  border-bottom: 1px solid rgba(0,0,0,.04) !important;
  padding: .38rem .75rem!important;
  gap: .45rem!important;
  transition: background .12s!important;
  width: 100%!important;
  text-align: left!important;
}
.city-suggestion:last-child { border-bottom: none!important; }
.city-suggestion.highlighted,.city-suggestion:hover {
  background: rgba(199,160,82,.08) !important;
  color: var(--imperium-navy,#001f3f) !important;
}
.city-suggestion i { font-size: .75rem!important; flex-shrink: 0!important; width: 14px!important; text-align: center!important; }
.city-suggestion span[style*="font-weight: 600"],.city-suggestion span[style*="font-weight:600"] { color: #1a2535!important; font-size: .8rem!important; }
.city-suggestion span[style*="color: #6b7280"],.city-suggestion span[style*="color:#6b7280"] { font-size: .72rem!important; color: #8a96a3!important; }
.city-suggestion div[style*="font-size: 0.75rem"],.city-suggestion div[style*="font-size:0.75rem"] { color: #8a96a3!important; font-size: .7rem!important; }
.city-suggestions::-webkit-scrollbar {
  width: 4px;
}
.city-suggestions::-webkit-scrollbar-track {
  background: 0 0;
}
.city-suggestions::-webkit-scrollbar-thumb {
  background: rgba(199,160,82,.4);
  border-radius: 4px;
}
/* ── Flatpickr overrides ───────────────────────────────────────── */
.flatpickr-calendar { font-family: Poppins,sans-serif!important; border-radius: 12px!important; box-shadow: 0 12px 36px rgba(0,31,63,.15)!important; border: 1px solid rgba(0,31,63,.1)!important; z-index: 9999!important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--navy,#001f3f)!important; border-color: var(--navy,#001f3f)!important; }
.flatpickr-day.inRange { background: rgba(199,160,82,.15)!important; border-color: transparent!important; box-shadow: -5px 0 0 rgba(199,160,82,.15), 5px 0 0 rgba(199,160,82,.15)!important; }
.flatpickr-day:hover { background: #fdf6e3!important; border-color: transparent!important; }
.flatpickr-months .flatpickr-month { background: #fff!important; color: var(--navy,#001f3f)!important; }
.flatpickr-current-month { font-size: .8rem!important; font-weight: 600!important; color: var(--navy,#001f3f)!important; }
.flatpickr-weekday { font-size: .65rem!important; font-weight: 600!important; color: #9ca3af!important; background: #fff!important; }
.flatpickr-day { font-size: .78rem!important; border-radius: 6px!important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--navy,#001f3f)!important; }
.flatpickr-input[readonly] { cursor: pointer; }
.guests-panel {
  border-radius: 12px!important;
  border: 1px solid rgba(0,31,63,.1) !important;
  box-shadow: 0 8px 32px rgba(0,31,63,.14),0 2px 6px rgba(0,0,0,.05) !important;
  overflow: hidden!important;
}
.gp-header {
  background: #fff!important;
  border-bottom: 1px solid #f0f2f5!important;
  padding: .7rem .9rem .65rem!important;
}
.gp-title {
  color: #1a2535!important;
  font-size: .73rem!important;
  text-transform: uppercase!important;
  letter-spacing: .05em!important;
  font-weight: 700!important;
}
.gp-badge {
  background: var(--imperium-gold,#c7a052) !important;
  color: #fff!important;
  font-size: .66rem!important;
  padding: .15rem .5rem!important;
  border-radius: 20px!important;
  font-weight: 600!important;
}
.gp-rooms {
  background: #fff!important;
}
.gp-room {
  background: #fff!important;
  border-bottom: 1px solid #f4f5f7!important;
  padding: .6rem .9rem!important;
}
.gp-room:last-child {
  border-bottom: none!important;
}
.gp-room__label {
  color: #1a2535!important;
  font-weight: 600!important;
  font-size: .76rem!important;
}
.gp-room__remove {
  background: 0 0!important;
  border: 1px solid #e0e3e8!important;
  color: #9aa4b0!important;
  width: 22px!important;
  height: 22px!important;
  border-radius: 6px!important;
  font-size: .62rem!important;
  transition: .15s!important;
}
.gp-room__remove:hover {
  background: #fee!important;
  border-color: #fca5a5!important;
  color: #dc2626!important;
}
.gp-counter {
  background: 0 0!important;
  padding: .3rem .4rem!important;
  border-radius: 8px!important;
}
.gp-counter__label {
  color: #2d3a4a!important;
  font-size: .78rem!important;
  font-weight: 500!important;
}
.gp-counter__sub {
  color: #9aa4b0!important;
  font-size: .64rem!important;
}
.gp-counter__btn {
  width: 28px!important;
  height: 28px!important;
  border-radius: 7px!important;
  border: 1.5px solid rgba(199,160,82,.4) !important;
  color: var(--imperium-gold,#c7a052) !important;
  background: #fff!important;
  font-size: 1rem!important;
  font-weight: 500!important;
  transition: .15s!important;
}
.gp-counter__btn:hover:not(:disabled) {
  background: var(--imperium-gold,#c7a052) !important;
  border-color: var(--imperium-gold,#c7a052) !important;
  color: #fff!important;
}
.gp-counter__btn:disabled {
  opacity: .3!important;
  cursor: not-allowed!important;
}
.gp-counter__val {
  color: #1a2535!important;
  font-size: .88rem!important;
  font-weight: 700!important;
  min-width: 18px!important;
}
.gp-add {
  background: 0 0!important;
  color: var(--imperium-gold,#c7a052) !important;
  font-size: .76rem!important;
  font-weight: 600!important;
  padding: .55rem .9rem!important;
  border-top: 1px solid #f0f2f5!important;
  transition: background .15s!important;
}
.gp-add:hover {
  background: rgba(199,160,82,.06) !important;
}
.gp-footer {
  background: #fafbfc!important;
  border-top: 1px solid #f0f2f5!important;
  padding: .6rem 1rem!important;
  gap: 1.25rem!important;
}
.gp-footer__total {
  font-size: .74rem!important;
  color: #6b7280!important;
}
.gp-footer__total i {
  color: var(--imperium-gold,#c7a052) !important;
}
.gp-footer__done {
  width: 34px!important;
  height: 34px!important;
  padding: 0!important;
  display: inline-flex!important;
  align-items: center!important;
  justify-content: center!important;
  background: var(--imperium-navy,#001f3f)!important;
  color: #fff!important;
  border: none!important;
  border-radius: 8px!important;
  font-size: .85rem!important;
  cursor: pointer!important;
  transition: background .15s!important;
  flex-shrink: 0!important;
}
.gp-footer__done:hover {
  background: var(--gold,#c7a052)!important;
  transform: none!important;
}
.gp-footer__done:hover {
  background: var(--gold,#c7a052)!important;
  transform: scale(1.08)!important;
}
/* ── Native date input — matches destination/guests look ──── */
/* The outer wrapper already gets border+bg from .search-field--dates>div */
.date-input-wrapper {
  position: relative!important;
  display: flex!important;
  align-items: center!important;
  width: 100%!important;
}
.date-input-icon {
  position: absolute!important;
  left: 0.85rem!important;
  top: 50%!important;
  transform: translateY(-50%)!important;
  color: var(--text-3,#9ca3af)!important;
  font-size: .85rem!important;
  pointer-events: none!important;
  z-index: 2!important;
  flex-shrink: 0!important;
}
input.date-native,
.date-native {
  width: 100%!important;
  height: 100%!important;
  min-height: 44px!important;
  padding: .7rem .85rem .7rem 2.4rem!important;
  font-family: Poppins,sans-serif!important;
  font-size: .9rem!important;
  color: var(--text,#1f2937)!important;
  /* transparent so wrapper background shows through — same as .search-input */
  background: transparent!important;
  border: none!important;
  border-radius: 0!important;
  outline: none!important;
  cursor: pointer!important;
  box-shadow: none!important;
  line-height: normal!important;
  -webkit-appearance: none!important;
  appearance: none!important;
}
/* Hide browser's default calendar icon — we use our own Font Awesome icon */
input.date-native::-webkit-calendar-picker-indicator {
  opacity: 0!important;
  position: absolute!important;
  right: 0!important;
  top: 0!important;
  width: 2rem!important;
  height: 100%!important;
  cursor: pointer!important;
}
/* Focus/hover handled at wrapper level */
.search-field--dates:focus-within > .date-input-wrapper,
.date-input-wrapper:focus-within {
  border-color: var(--gold,#c7a052)!important;
  box-shadow: 0 0 0 3px rgba(199,160,82,.12)!important;
  background: var(--white,#fff)!important;
}
/* ── Guests panel — mobile bottom sheet ─────────────────────── */
@media (max-width:640px) {
  .guests-panel {
    position: fixed!important;
    top: auto!important;
    bottom: 0!important;
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    max-width: 100%!important;
    border-radius: 20px 20px 0 0!important;
    box-shadow: 0 -8px 40px rgba(10,22,40,.22)!important;
    max-height: 85vh!important;
    overflow-y: auto!important;
    animation: slideUp .25s cubic-bezier(.32,0,.67,0) forwards;
  }
  .guests-panel::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: .75rem auto .5rem;
  }
  .gp-rooms {
    max-height: 50vh!important;
  }
  .gp-counter__btn {
    width: 38px!important;
    height: 38px!important;
    font-size: 1.2rem!important;
  }
  .gp-footer__done {
    width: 38px!important;
    height: 38px!important;
    font-size: .9rem!important;
  }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.footer__bottom {
  display: block!important;
  text-align: center!important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  padding: 1.1rem 0!important;
  font-size: .8rem!important;
  color: rgba(255,255,255,.45) !important;
  letter-spacing: .01em!important;
}
.footer__brand {
  align-items: flex-start!important;
  margin-top: 0!important;
  margin-bottom: .25rem!important;
  padding-top: 0!important;
  gap: .6rem!important;
}
.footer__brand img {
  height: 140px!important;
  width: auto!important;
  max-width: none!important;
  display: block!important;
  object-fit: contain!important;
  object-position: left center!important;
  margin-top: 0!important;
  margin-left: 0!important;
  padding-top: 0!important;
}
/* Align footer col-1 logo to same top row as column headings */
.footer__brand {
  margin-top: 0!important;
  padding-top: 0!important;
  margin-bottom: 0.5rem!important;
}
.footer__grid > div:first-child {
  padding-top: 0!important;
  margin-top: 0!important;
}
.footer__title {
  margin-top: 0!important;
  padding-top: 0!important;
}
/* Description tight under logo, clear gap before social icons */
.footer__description {
  margin-top: 0.25rem!important;
  margin-bottom: 2rem!important;
  padding-top: 0!important;
}
.footer__social {
  margin-top: 0!important;
}
.footer__description {
  margin-top: 0!important;
  margin-bottom: .5rem!important;
}
.footer__grid {
  align-items: start!important;
}
.footer__grid>div:first-child {
  padding-top: 0!important;
  margin-top: 0!important;
  align-self: start!important;
}

/* ── Topbar — compact ────────────────────────────────────────── */
.topbar {
  padding: .2rem 0!important;
  font-size: .75rem!important;
}
.topbar__info i {
  font-size: .7rem!important;
}

/* ── Navbar — compact height, logo allowed to overflow ──────── */
.nav {
  border-bottom: none!important;
  box-shadow: 0 2px 14px rgba(0,31,63,.1)!important;
  overflow: visible!important;
}
.nav__container {
  height: 60px!important;
  overflow: visible!important;
}
/* Logo overflows the navbar — sits centered, extends above & below */
.nav__logo {
  overflow: visible!important;
}
.nav__logo img {
  height: 90px!important;
  width: auto!important;
  max-width: none!important;
  display: block!important;
  object-fit: contain!important;
  position: relative!important;
  z-index: 10!important;
}
/* When a tenant logo is present: navbar grows to fit it, no overflow needed */
.nav__container:has(.nav__tenant-logo) {
  height: auto!important;
  min-height: 68px!important;
  overflow: visible!important;
}
/* Tenant logo: natural size capped at 80px, no overflow effect */
.nav__tenant-logo img {
  height: auto!important;
  max-height: 80px!important;
  max-width: 220px!important;
  width: auto!important;
  position: static!important;
  object-fit: contain!important;
}
.nav__logo-text {
  font-size: 1.15rem!important;
}

/* Se Connecter button */
.btn--gold {
  padding: .45rem 1.1rem!important;
  font-size: .8rem!important;
  gap: .3rem!important;
  line-height: 1.5!important;
}
.btn--gold i {
  font-size: .78rem!important;
}

/* ── Nav links — clean minimal hover (no background, no bottom line) ─── */
/* Kill the full-height link sizing that made the underline span 66px */
.nav__link {
  height: auto!important;
  line-height: normal!important;
  padding: .45rem .7rem!important;
  background: transparent!important;
  transition: color .22s ease!important;
}
/* Completely remove the ::after underline pseudo-element */
.nav__link::after {
  display: none!important;
  content: none!important;
}
/* Active and hover: only the text color changes — gold, smooth */
.nav__link:hover,
.nav__link.active,
.nav__link--active,
.nav__link--active:hover {
  background: transparent!important;
  color: var(--imperium-gold,#c7a052)!important;
  box-shadow: none!important;
}

/* ── Carousel & page hero — full image on mobile (no crop) ─── */
@media (max-width: 767px) {
  .hero--carousel,
  .hero.hero--carousel {
    height: auto!important;
    aspect-ratio: 1900/500!important;
    min-height: unset!important;
  }
  .hero--carousel .hero-carousel__img,
  .hero.hero--carousel .hero-carousel__img {
    object-fit: cover!important;
    object-position: center center!important;
  }
  .page-hero {
    height: auto!important;
    aspect-ratio: 1900/300!important;
    min-height: unset!important;
  }
  .page-hero__image {
    object-fit: cover!important;
    object-position: center center!important;
  }
}

/* ── Mobile voyage/circuit/croisiere cards — 2-col compact ── */
@media (max-width: 640px) {
  .listing-grid,
  .offers-grid {
    grid-template-columns: 1fr 1fr!important;
    gap: 0.75rem!important;
  }
  .listing-card__image {
    height: 120px!important;
  }
  .offer-card__image-wrap {
    height: 120px!important;
  }
  .listing-card__body {
    padding: 0.6rem!important;
  }
  .listing-card__title {
    font-size: .8rem!important;
    margin-bottom: .25rem!important;
  }
  .listing-card__meta {
    font-size: .7rem!important;
    gap: .3rem!important;
  }
  .listing-card__price,
  .offer-card__price-amount {
    font-size: .85rem!important;
  }
  .offer-card__content {
    padding: 0.6rem!important;
  }
  .offer-card__title {
    font-size: .8rem!important;
  }
  .offer-card__meta {
    font-size: .7rem!important;
  }
}

/* ── Search modal — modern redesign + mobile bottom-sheet ─── */
@media (max-width: 640px) {
  .search-modal {
    align-items: flex-end!important;
    padding: 0!important;
  }
  .search-modal-card {
    border-radius: 20px 20px 0 0!important;
    max-width: 100%!important;
    width: 100%!important;
    max-height: 92vh!important;
    overflow-y: auto!important;
    animation: slideUp .28s cubic-bezier(.32,0,.67,0) forwards!important;
  }
}

/* Results summary bar — mobile wrap */
.results-summary {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.results-summary__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.results-summary__info {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #374151;
  flex: 1;
  min-width: 0;
}
.results-summary__item {
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.results-summary__item i {
  color: var(--imperium-gold,#c7a052);
  font-size: .75rem;
}
.results-summary__divider {
  color: #d1d5db;
}
.results-summary__count {
  font-weight: 700;
  color: var(--imperium-navy,#001f3f);
  white-space: nowrap;
}
.results-summary__modify-btn {
  flex-shrink: 0;
  font-size: .78rem!important;
  padding: .35rem .9rem!important;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .results-summary__info {
    font-size: .75rem;
    gap: .35rem;
  }
  .results-summary__modify-btn {
    font-size: .72rem!important;
    padding: .3rem .7rem!important;
  }
}

/* ── Auth pages — hide left visual panel on mobile ────────── */
@media (max-width: 768px) {
  .auth-visual {
    display: none!important;
  }
  .auth-container {
    grid-template-columns: 1fr!important;
  }
  .auth-form-wrapper {
    width: 100%!important;
    max-width: 100%!important;
    border-radius: 0!important;
  }
  .auth-page {
    align-items: center!important;
    justify-content: center!important;
    min-height: 100vh!important;
    padding: 1.5rem 0!important;
  }
  .auth-page > .container {
    align-items: center!important;
    justify-content: center!important;
    display: flex!important;
    width: 100%!important;
    min-height: unset!important;
  }
}

/* ── Modal native date input styling ─────────────────────── */
.modal-date-input {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.modal-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .5;
}
@media (max-width: 480px) {
  .modal-date-row {
    grid-template-columns: 1fr!important;
    gap: .5rem!important;
  }
}

/* ═══════════════════════════════════════════════════════════
   BOOKING PAGES — Complete Redesign (Croisières + Voyages)
   ═══════════════════════════════════════════════════════════ */
.book-header__sub { font-size:.78rem;color:#64748b;margin:.2rem 0 0;display:flex;align-items:center;gap:.4rem; }
.book-header__sub i { color:#c9a84c; }

.book-notice { display:flex;align-items:flex-start;gap:.6rem;background:#fffbeb;border:1px solid #fde68a;border-radius:10px;padding:.75rem 1rem;margin-bottom:1.25rem;font-size:.78rem;color:#78350f;line-height:1.55; }
.book-notice i { color:#f59e0b;font-size:.85rem;flex-shrink:0;margin-top:.1rem; }

/* ── Cabin / Room cards — compact horizontal layout ────────── */
.cabin-cards { display:flex;flex-direction:column;gap:.5rem;margin-bottom:.25rem; }

.cabin-card {
  display:flex;align-items:center;gap:.6rem;
  padding:.5rem .75rem;
  border:1.5px solid #e8eaed;border-radius:9px;
  background:#fff;transition:border-color .2s,background .2s,box-shadow .2s;
}
.cabin-card:hover { border-color:#c9a84c;box-shadow:0 2px 10px rgba(201,168,76,.1); }
.cabin-card--selected {
  border-color:#c9a84c!important;
  background:linear-gradient(to right,rgba(201,168,76,.05),#fff)!important;
  box-shadow:0 2px 12px rgba(201,168,76,.14)!important;
}

/* Selected check pill */
.cabin-card__check {
  width:16px;height:16px;border-radius:50%;
  background:#c9a84c;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.5rem;flex-shrink:0;
}

/* Icon badge */
.cabin-card__badge {
  width:30px;height:30px;border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  font-size:.78rem;flex-shrink:0;
}
.cabin-card__badge--balcon    { background:#eff6ff;color:#1d4ed8; }
.cabin-card__badge--interieur { background:#f5f3ff;color:#6d28d9; }
.cabin-card__badge--double    { background:#eff6ff;color:#1d4ed8; }
.cabin-card__badge--triple    { background:#f0fdf4;color:#15803d; }
.cabin-card__badge--single    { background:#fdf2f8;color:#9d174d; }

/* Info block */
.cabin-card__info { flex:1;min-width:0; }
.cabin-card__name { font-size:.78rem;font-weight:600;color:#0a1628; }
.cabin-card__sub  { font-size:.7rem;color:#64748b;margin-top:.04rem;font-weight:400; }

/* Price + stepper (right side) */
.cabin-card__right { display:flex;align-items:center;gap:.6rem;flex-shrink:0; }
.cabin-card__pricebox { text-align:right; }
.cabin-card__price-val { font-size:.88rem;font-weight:700;color:#0a1628;line-height:1.1; }
.cabin-card__price-val em { font-size:.65rem;font-weight:500;font-style:normal;color:#475569; }
.cabin-card__price-unit { font-size:.6rem;color:#94a3b8;margin-top:.04rem; }

.cabin-stepper { display:flex;align-items:center;gap:.5rem; }
.cabin-stepper__btn { width:34px;height:34px;border-radius:50%;border:2px solid #c9a84c;background:#fff;color:#c9a84c;font-size:.8rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s,color .15s;flex-shrink:0; }
.cabin-stepper__btn:hover:not(:disabled) { background:#c9a84c;color:#fff; }
.cabin-stepper__btn:disabled { opacity:.3;cursor:not-allowed; }
.cabin-stepper__val { font-size:1.15rem;font-weight:800;color:#0a1628;min-width:22px;text-align:center; }

.pax-section { margin-top:1.25rem;padding-top:1.25rem;border-top:1.5px dashed #e8e0cc; }
.pax-section__title { display:flex;align-items:center;gap:.5rem;font-size:.78rem;font-weight:700;color:#0a1628;margin-bottom:.9rem;text-transform:uppercase;letter-spacing:.05em; }
.pax-section__count { font-size:.72rem;color:#94a3b8;font-weight:500;text-transform:none;letter-spacing:0;margin-left:.15rem; }
.pax-cabin { background:#faf9f6;border:1px solid #e8e0cc;border-radius:10px;padding:.85rem 1rem;margin-bottom:.75rem; }
.pax-cabin__header { display:flex;align-items:center;gap:.45rem;font-size:.75rem;font-weight:700;color:#0a1628;margin-bottom:.75rem;text-transform:uppercase;letter-spacing:.03em; }
.pax-cabin__header i { color:#c9a84c; }
.pax-cabin__cap { margin-left:auto;font-size:.67rem;color:#94a3b8;font-weight:500;text-transform:none;letter-spacing:0;background:#e8e0cc;padding:.15rem .5rem;border-radius:20px; }

.pax-row { display:flex;align-items:center;gap:.45rem;margin-bottom:.4rem; }
.pax-row__num { width:22px;height:22px;border-radius:50%;background:#e8e0cc;color:#0a1628;font-size:.65rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.pax-row__name { flex:1;padding:.48rem .7rem;border:1.5px solid #e5e7eb;border-radius:7px;font-size:.83rem;font-family:Poppins,sans-serif;outline:0;transition:border-color .2s;min-width:0; }
.pax-row__name:focus { border-color:#c9a84c; }
.pax-row__type { padding:.44rem .55rem;border:1.5px solid #e5e7eb;border-radius:7px;font-size:.78rem;font-family:Poppins,sans-serif;color:#333;background:#fff;outline:0;flex-shrink:0; }
.pax-row__type:focus { border-color:#c9a84c; }
.pax-row__age { padding:.44rem .45rem;border:1.5px solid #e5e7eb;border-radius:7px;font-size:.78rem;font-family:Poppins,sans-serif;color:#333;background:#fff;outline:0;width:90px;flex-shrink:0; }
.pax-row__age:focus { border-color:#c9a84c; }
.pax-row__remove { width:28px;height:28px;border-radius:6px;border:1px solid #fecaca;background:#fff5f5;color:#ef4444;font-size:.7rem;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .15s; }
.pax-row__remove:hover { background:#fee2e2; }
.pax-age-row { display:flex;align-items:center;gap:.4rem;margin:0 0 .45rem 32px;font-size:.73rem;color:#64748b; }
.pax-age-row i { color:#c9a84c; }
.pax-age-input { width:62px;padding:.25rem .4rem;border:1.5px solid #e5e7eb;border-radius:6px;font-size:.78rem;font-family:Poppins,sans-serif;text-align:center;outline:0; }
.pax-age-input:focus { border-color:#c9a84c; }
.pax-add-btn { display:inline-flex;align-items:center;gap:.35rem;margin-top:.55rem;background:none;border:1.5px dashed rgba(201,168,76,.5);border-radius:7px;color:#c9a84c;font-size:.73rem;font-weight:700;padding:.38rem .85rem;cursor:pointer;font-family:Poppins,sans-serif;transition:background .15s,border-color .15s; }
.pax-add-btn:hover { background:rgba(201,168,76,.06);border-color:#c9a84c; }

.book-grid { grid-template-columns:1fr 300px!important; }
@media (max-width:900px) { .book-grid { grid-template-columns:1fr!important; } }

.sum-perperson { display:flex;align-items:center;justify-content:space-between;background:rgba(201,168,76,.07);border:1px solid rgba(201,168,76,.2);border-radius:8px;padding:.55rem .85rem;margin-bottom:.6rem; }
.sum-perperson__label { font-size:.72rem;color:#64748b;font-weight:500; }
.sum-perperson__val { font-size:.9rem;font-weight:800;color:#c9a84c; }

.sum-cabin-row { display:flex;flex-direction:column;gap:.08rem;padding:.4rem 0;border-bottom:1px solid #f5f3ef; }
.sum-cabin-row__top { display:flex;justify-content:space-between;align-items:baseline; }
.sum-cabin-row__label { font-size:.78rem;color:#475569;font-weight:600; }
.sum-cabin-row__price { font-size:.82rem;font-weight:700;color:#0a1628; }
.sum-cabin-row__detail { font-size:.68rem;color:#94a3b8; }

.sum-grand-total { display:flex;align-items:center;justify-content:space-between;padding:.85rem 1rem;margin-top:.6rem;background:linear-gradient(135deg,#0a1628,#1a3050);border-radius:10px; }
.sum-grand-total__label { font-size:.72rem;font-weight:700;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:.06em; }
.sum-grand-total__value { font-size:1.3rem;font-weight:900;color:#c9a84c; }

.sum-empty { text-align:center;padding:1.25rem .5rem;color:#94a3b8;font-size:.78rem; }
.sum-empty i { display:block;font-size:1.5rem;margin-bottom:.5rem;color:#cbd5e1; }

@media (max-width:580px) {
  .book-header { padding:1rem 0 1.25rem; }
  .book-header__title { font-size:1rem!important; }
  .bcard__body { padding:.85rem .9rem; }
  .cabin-card__right { flex-direction:column;align-items:flex-end;gap:.4rem; }
  .pax-row { flex-wrap:wrap; }
  .pax-row__name { min-width:100%;order:-1; }
  .pax-row__num { order:-2; }
  .sum-grand-total__value { font-size:1.1rem; }
}

/* ── Booking pages — compact mode ──────────────────────────── */
.book-page { padding-bottom:2rem; }
.book-container { max-width:1140px; padding:0 1rem; }
.book-header { padding:.85rem 0 1rem; margin-bottom:1.1rem; }
.book-header__title { font-size:clamp(.95rem,2vw,1.2rem)!important; }
.book-grid { gap:1rem!important; grid-template-columns:1fr 270px!important; }
@media (max-width:900px) { .book-grid { grid-template-columns:1fr!important; } }
.bcard { margin-bottom:.9rem; border-radius:10px; }
.bcard__head { padding:.65rem 1rem; }
.bcard__icon { width:28px;height:28px;font-size:.75rem; }
.bcard__title { font-size:.82rem; }
.bcard__body { padding:.8rem 1rem; }

/* Cabin cards — already compact via new horizontal layout */
.cabin-card__bottom { padding-top:.55rem; }
.cabin-card__price-per { font-size:.58rem;margin-bottom:.05rem; }
.cabin-card__price-val { font-size:1.05rem; }
.cabin-card__price-val span { font-size:.7rem; }
.cabin-card__price-unit { font-size:.58rem; }

/* Stepper — compact */
.cabin-stepper { gap:.3rem; }
.cabin-stepper__btn { width:24px;height:24px;font-size:.65rem;border-width:1.5px; }
.cabin-stepper__val { font-size:.82rem;min-width:16px; }

/* Passenger section — compact */
.pax-section { margin-top:.9rem;padding-top:.9rem; }
.pax-section__title { font-size:.7rem;margin-bottom:.65rem; }
.pax-cabin { padding:.6rem .75rem;margin-bottom:.5rem;border-radius:8px; }
.pax-cabin__header { font-size:.68rem;margin-bottom:.55rem; }
.pax-row { gap:.35rem;margin-bottom:.3rem; }
.pax-row__num { width:18px;height:18px;font-size:.58rem; }
.pax-row__name { padding:.38rem .55rem;font-size:.78rem; }
.pax-row__type { padding:.36rem .45rem;font-size:.72rem; }
.pax-row__age { padding:.36rem .35rem;font-size:.72rem;width:80px; }
.pax-add-btn { font-size:.68rem;padding:.3rem .7rem;margin-top:.4rem; }
.pax-age-row { font-size:.68rem;margin:0 0 .35rem 26px; }
.pax-age-input { width:55px;font-size:.72rem; }

/* Book notice — compact */
.book-notice { padding:.6rem .85rem;font-size:.72rem;margin-bottom:.9rem;border-radius:8px; }

/* Sidebar — compact */
.trip-preview__img { height:130px; }
.trip-preview__info { padding:.75rem .9rem; }
.trip-preview__title { font-size:.9rem;margin-bottom:.35rem; }
.trip-preview__meta { font-size:.72rem;gap:.22rem; }
.summary-box__head { padding:.65rem .9rem; }
.summary-box__head-title { font-size:.72rem; }
.summary-box__body { padding:.75rem .9rem; }
.sum-row { padding:.25rem 0; }
.sum-row__label { font-size:.75rem; }
.sum-row__value { font-size:.78rem; }
.sum-perperson { padding:.42rem .7rem;margin-bottom:.45rem;border-radius:6px; }
.sum-perperson__label { font-size:.67rem; }
.sum-perperson__val { font-size:.82rem; }
.sum-cabin-row { padding:.3rem 0; }
.sum-cabin-row__label { font-size:.72rem; }
.sum-cabin-row__price { font-size:.76rem; }
.sum-cabin-row__detail { font-size:.62rem; }
.sum-grand-total { padding:.7rem .85rem;border-radius:8px;margin-top:.45rem; }
.sum-grand-total__label { font-size:.66rem; }
.sum-grand-total__value { font-size:1.1rem; }
.sum-empty { padding:.9rem .5rem;font-size:.72rem; }
.sum-empty i { font-size:1.2rem; }
.submit-box { padding:.6rem .9rem; }

/* ═══════════════════════════════════════════════
   DETAIL PAGE — Compact Departures Table
═══════════════════════════════════════════════ */
.dep-section { margin-bottom:1.25rem; }
.dep-section__label {
  display:flex;align-items:center;gap:.45rem;
  font-size:.72rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  color:#64748b;margin-bottom:.6rem;
}
.dep-section__label i { color:#c9a84c;font-size:.78rem; }

.dep-table { width:100%;border-collapse:separate;border-spacing:0;border-radius:10px;overflow:hidden;box-shadow:0 1px 6px rgba(0,0,0,.07); }
.dep-table thead tr { background:#0a1628; }
.dep-table thead th {
  font-size:.66rem;font-weight:600;color:rgba(255,255,255,.75);
  text-transform:uppercase;letter-spacing:.05em;
  padding:.45rem .6rem;text-align:left;
}
.dep-table thead th:last-child { text-align:center; }
.dep-table tbody tr { background:#fff;transition:background .15s; }
.dep-table tbody tr:nth-child(even) { background:#fafaf8; }
.dep-table tbody tr:hover { background:#fffbf0; }
.dep-table tbody td {
  font-size:.74rem;color:#0a1628;
  padding:.5rem .6rem;
  border-bottom:1px solid #f1ede5;
}
.dep-table tbody tr:last-child td { border-bottom:none; }
.dep-table__date { font-weight:700;white-space:nowrap; }
.dep-table__return { color:#64748b;white-space:nowrap; }
.dep-table__price { font-weight:600;white-space:nowrap;color:#0a1628; }
.dep-table__price--na { color:#cbd5e1;font-size:.68rem; }
.dep-table__seats { color:#64748b;text-align:center;font-size:.7rem; }
.dep-table__seats-badge {
  display:inline-block;background:#f1f5f9;color:#475569;
  border-radius:4px;padding:.12rem .35rem;font-size:.66rem;font-weight:600;
}
.dep-table__seats-badge--low { background:#fef2f2;color:#dc2626; }
.dep-table__action { text-align:center; }
.dep-table__btn {
  display:inline-flex;align-items:center;gap:.3rem;
  background:linear-gradient(135deg,#c9a84c,#b8963e);color:#fff!important;
  font-size:.68rem;font-weight:600;
  padding:.32rem .65rem;border-radius:6px;
  text-decoration:none;transition:opacity .15s,transform .1s;
  white-space:nowrap;
}
.dep-table__btn:hover { opacity:.88;transform:translateY(-1px); }
.dep-table__btn i { font-size:.62rem; }

/* No departures notice */
.dep-no-dep {
  text-align:center;padding:1.5rem 1rem;
  background:#fafaf8;border-radius:10px;border:1.5px dashed #e8e3d8;
  color:#94a3b8;font-size:.78rem;
}

/* ═══════════════════════════════════════════════
   DETAIL PAGE — Modern Includes / Excludes Cards
═══════════════════════════════════════════════ */
.vd-incl-card {
  border-radius:10px;overflow:hidden;
  box-shadow:0 1px 6px rgba(0,0,0,.07);
  margin-bottom:1rem;
}
.vd-incl-card--yes { border-top:3px solid #22c55e; }
.vd-incl-card--no  { border-top:3px solid #ef4444; }

.vd-incl-card__head {
  display:flex;align-items:center;gap:.5rem;
  padding:.5rem .75rem;
  font-size:.7rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
}
.vd-incl-card--yes .vd-incl-card__head { background:#f0fdf4;color:#15803d; }
.vd-incl-card--no  .vd-incl-card__head { background:#fef2f2;color:#b91c1c; }
.vd-incl-card__head i { font-size:.78rem; }

.vd-incl-card__list {
  list-style:none;margin:0;padding:.35rem .75rem .6rem;
  background:#fff;display:flex;flex-direction:column;gap:.28rem;
}
.vd-incl-card__item {
  display:flex;align-items:flex-start;gap:.45rem;
  font-size:.75rem;color:#374151;line-height:1.35;
}
.vd-incl-card__dot {
  flex-shrink:0;width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.52rem;margin-top:.05rem;
}
.vd-incl-card__dot--yes { background:#dcfce7;color:#15803d; }
.vd-incl-card__dot--no  { background:#fee2e2;color:#b91c1c; }

/* ═══════════════════════════════════════════════
   DETAIL / SHOW PAGE — Mobile Responsive
═══════════════════════════════════════════════ */

/* --- Prevent grid children from overflowing viewport --- */
.vd-main,
.vd-sidebar {
  min-width: 0;
  max-width: 100%;
}

/* --- Tighter page padding on mobile --- */
@media(max-width:640px) {
  .vd-page { padding:.75rem 0 2rem; }
  .vd-breadcrumb { margin-bottom:.6rem; }
  .vd-layout { gap:.75rem; }
}

/* --- Gallery: shorter on mobile, constrained width --- */
.vd-gallery { width:100%; }
@media(max-width:640px) {
  .vd-gallery__main { height:200px; }
  .vd-gallery__thumb { width:48px;height:34px; }
  .vd-gallery { margin-bottom:.5rem; }
}

/* --- Incl cards: full width, no overflow --- */
.vd-incl-card { width:100%;box-sizing:border-box; }

/* --- Title block: smaller title on mobile --- */
@media(max-width:640px) {
  .vd-title-block { padding:.6rem .75rem; }
  .vd-title-block__title { font-size:.9rem; }
  .vd-title-block__meta { font-size:.66rem;gap:.3rem .6rem; }
  .vd-title-block__desc { font-size:.7rem; }
}

/* --- Departure table: horizontal scroll on mobile --- */
.dep-section {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* isolate scroll so it doesn't push the grid */
  max-width: 100%;
}
@media(max-width:768px) {
  .dep-table { min-width:480px; }
  .dep-table thead th,
  .dep-table tbody td { padding:.4rem .45rem;font-size:.68rem; }
  .dep-table__btn { font-size:.63rem;padding:.28rem .5rem;gap:.2rem; }
  .dep-table__btn i { display:none; }
}
@media(max-width:480px) {
  .dep-table { min-width:420px; }
  .dep-table thead th,
  .dep-table tbody td { padding:.35rem .35rem;font-size:.64rem; }
}

/* --- Program timeline: smaller on mobile --- */
@media(max-width:640px) {
  .vd-program__timeline { padding:.65rem .65rem; }
  .vd-program__day-marker { width:1.5rem;height:1.5rem;font-size:.6rem; }
  .vd-program__day::before { left:.74rem; }
  .vd-program__day-text { font-size:.7rem; }
  .vd-program__header { padding:.45rem .75rem;font-size:.65rem; }
}

/* --- Sidebar incl/excl cards on mobile --- */
@media(max-width:640px) {
  .vd-sidebar { gap:.5rem; }
  .vd-incl-card__head { padding:.45rem .65rem;font-size:.65rem; }
  .vd-incl-card__list { padding:.3rem .65rem .5rem;gap:.22rem; }
  .vd-incl-card__item { font-size:.7rem; }
}

/* --- dep-section label on mobile --- */
@media(max-width:640px) {
  .dep-section__label { font-size:.66rem;margin-bottom:.45rem; }
  .dep-no-dep { padding:1rem .75rem;font-size:.72rem; }
}

/* --- Ensure container has horizontal padding on mobile --- */
@media(max-width:640px) {
  .vd-page .container { padding-left:.85rem;padding-right:.85rem; }
}
.btn-submit { padding:.7rem 1.2rem;font-size:.85rem;border-radius:8px; }

/* ═══════════════════════════════════════════════
   PHONE FIELD WITH COUNTRY CODE SELECTOR
═══════════════════════════════════════════════ */
.phone-field {
  display:flex;align-items:stretch;
  border:1.5px solid #e2e8f0;border-radius:8px;
  overflow:visible;background:#fff;
  transition:border-color .2s;
  position:relative;
}
.phone-field:focus-within { border-color:#c9a84c; }

.phone-field__code {
  position:relative;flex-shrink:0;
}
.phone-field__flag-btn {
  display:flex;align-items:center;gap:.3rem;
  padding:.55rem .6rem .55rem .7rem;
  background:transparent;border:none;border-right:1.5px solid #e2e8f0;
  cursor:pointer;font-size:.78rem;color:#374151;
  white-space:nowrap;height:100%;border-radius:0;
  transition:background .15s;
}
.phone-field__flag-btn:hover { background:#f8f9fa; }
.phone-field__dial { font-weight:600;font-size:.74rem;color:#0a1628; }
.phone-field__arrow {
  font-size:.55rem;color:#9ca3af;
  transition:transform .2s;
}

.phone-field__dropdown {
  position:absolute;top:calc(100% + 4px);left:0;
  background:#fff;border:1.5px solid #e2e8f0;
  border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.12);
  z-index:999;min-width:200px;max-height:240px;
  overflow-y:auto;scrollbar-width:thin;
}
.phone-field__opt {
  display:flex;align-items:center;gap:.5rem;
  padding:.42rem .7rem;width:100%;border:none;
  background:transparent;cursor:pointer;
  font-size:.74rem;text-align:left;
  transition:background .12s;
}
.phone-field__opt:hover { background:#faf8f3; }
.phone-field__opt-name { flex:1;color:#374151; }
.phone-field__opt-dial { color:#9ca3af;font-size:.68rem;font-weight:600; }

.phone-field__input {
  flex:1;border:none;outline:none;
  padding:.55rem .75rem;font-size:.82rem;
  color:#0a1628;background:transparent;
  min-width:0;
}
.phone-field__input::placeholder { color:#9ca3af; }

/* ═══════════════════════════════════════════════
   PRICE HINT / INFO BOX
═══════════════════════════════════════════════ */
.price-hint {
  display:flex;align-items:flex-start;gap:.5rem;
  background:#fffbeb;border:1px solid #fcd34d;
  border-radius:8px;padding:.6rem .85rem;
  margin-bottom:.85rem;font-size:.73rem;color:#92400e;
  line-height:1.45;
}
.price-hint i { color:#d97706;font-size:.82rem;flex-shrink:0;margin-top:.08rem; }
.price-hint strong { color:#78350f; }

/* ═══════════════════════════════════════════════
   PASSENGER FIRST / LAST NAME INPUTS
═══════════════════════════════════════════════ */
.pax-row { flex-wrap:wrap;gap:.35rem; }
.pax-row__first,
.pax-row__last {
  flex:1;min-width:90px;
  border:1.5px solid #e2e8f0;border-radius:7px;
  padding:.38rem .6rem;font-size:.76rem;color:#0a1628;
  outline:none;background:#fff;
  transition:border-color .2s;
}
.pax-row__first:focus,
.pax-row__last:focus { border-color:#c9a84c; }
.pax-row__first::placeholder,
.pax-row__last::placeholder { color:#9ca3af;font-size:.72rem; }

/* ═══════════════════════════════════════════════
   DEPARTURE SELECTION CARDS (show pages)
═══════════════════════════════════════════════ */
.dep-card-list { display:flex;flex-direction:column;gap:.5rem;margin-bottom:.75rem; }
.dep-card {
  display:grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items:center;gap:.65rem;
  padding:.65rem 1rem;
  border:1.5px solid #e8e3d8;border-radius:10px;
  background:#fff;
  transition:border-color .2s,background .2s,box-shadow .2s;
  cursor:default;
}
.dep-card--link { cursor:pointer; }
.dep-card--link:hover { border-color:#ddd0a8;background:#fffdf9; }
.dep-card--selected { border-color:#c9a84c!important;background:#fffdf5!important;box-shadow:0 2px 14px rgba(199,160,82,.18)!important; }
.dep-card__radio {
  width:16px;height:16px;border-radius:50%;
  border:2px solid #d1c9b8;background:#fff;
  flex-shrink:0;position:relative;
  transition:border-color .2s;
}
.dep-card__radio::after {
  content:'';position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%) scale(0);
  width:7px;height:7px;border-radius:50%;
  background:#C7A052;
  transition:transform .22s cubic-bezier(.4,0,.2,1);
}
.dep-card--link:hover .dep-card__radio { border-color:#c9a84c; }
.dep-card--selected .dep-card__radio { border-color:#C7A052; }
.dep-card--selected .dep-card__radio::after { transform:translate(-50%,-50%) scale(1); }
.dep-card__dates { min-width:0; }
.dep-card__dep { font-size:.8rem;font-weight:700;color:#0a1628; }
.dep-card__ret { font-size:.7rem;color:#64748b;margin-top:.06rem;display:flex;align-items:center;gap:.25rem; }
.dep-card__prices {
  display:flex;flex-wrap:wrap;gap:.15rem .65rem;
  font-size:.69rem;color:#475569;
}
.dep-card__price-item { display:flex;flex-direction:column;align-items:flex-end; }
.dep-card__price-label { font-size:.6rem;color:#94a3b8;line-height:1; }
.dep-card__price-val { font-weight:700;color:#0a1628;font-size:.75rem; }
.dep-card__end { display:flex;align-items:center;gap:.4rem; }
.dep-card__seats {
  font-size:.65rem;font-weight:600;padding:.2rem .5rem;
  border-radius:4px;background:#f1f5f9;color:#475569;white-space:nowrap;
}
.dep-card__seats--low { background:#fef2f2;color:#dc2626; }
.dep-card__slide-wrap {
  overflow:hidden;
  max-width:0;
  transition:max-width .3s cubic-bezier(.4,0,.2,1);
}
.dep-card__slide-wrap--open { max-width:140px; }
.dep-card__slide-btn {
  display:inline-flex;align-items:center;gap:.35rem;
  background:linear-gradient(135deg,#C7A052,#9a7635);
  color:#fff;font-size:.75rem;font-weight:700;
  padding:.45rem .95rem;border-radius:.4rem;
  text-decoration:none;white-space:nowrap;
  transition:filter .15s;
}
.dep-card__slide-btn:hover { filter:brightness(1.1);color:#fff; }
.dep-card--complete {
  cursor:not-allowed;
  background:#f8f8f8!important;
  border-color:#e5e7eb!important;
  opacity:.7;
}
.dep-card--complete .dep-card__dep,
.dep-card--complete .dep-card__price-val { color:#9ca3af!important; }
.dep-card__complete-badge {
  display:inline-flex;align-items:center;gap:.3rem;
  padding:.2rem .55rem;border-radius:999px;
  background:#fee2e2;color:#dc2626;
  font-size:.62rem;font-weight:700;white-space:nowrap;
}

.dep-reserve-wrap { margin-top:.5rem; }
.dep-reserve-btn {
  display:flex;align-items:center;justify-content:center;gap:.45rem;
  background:linear-gradient(135deg,#c9a84c,#b8963e);
  color:#0a1628!important;font-weight:800;font-size:.82rem;
  padding:.65rem 1.25rem;border-radius:9px;
  text-decoration:none;transition:filter .15s,transform .1s;
  letter-spacing:.02em;
}
.dep-reserve-btn:hover { filter:brightness(1.07);transform:translateY(-1px); }
.dep-reserve-btn i { font-size:.78rem; }

.dep-no-sel {
  text-align:center;padding:.85rem;
  border:1.5px dashed #e8e3d8;border-radius:9px;
  color:#94a3b8;font-size:.74rem;background:#fafaf8;
}

@media(max-width:520px) {
  .dep-card { grid-template-columns:1fr auto;gap:.35rem;padding:.5rem .75rem; }
  .dep-card__prices { grid-column:1 / -1;order:3; }
  .pax-row__first, .pax-row__last { min-width:calc(50% - .2rem); }
  .phone-field__dropdown { min-width:180px; }
}

/* intl-tel-input overrides — match existing field__input style */
.iti { width:100%; display:block; }
/* The actual input element — ITI sets padding-left via JS, don't override it */
.iti-phone-input {
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:.6rem .85rem;
  font-size:.83rem;
  font-family:inherit;
  color:#111827;
  background:#fff;
  outline:none;
  transition:border-color .2s;
  box-sizing:border-box;
}
.iti-phone-input:focus { border-color:#c9a84c; }
.iti-phone-input::placeholder { color:#9ca3af; }
/* Flag + dial code button */
.iti__selected-flag {
  background:transparent !important;
  border-right:1px solid #e5e7eb;
  padding:0 8px 0 10px;
}
.iti__selected-flag:hover { background:#f8f9fa !important; }
.iti__selected-dial-code { font-weight:600; font-size:.78rem; color:#0a1628; margin-left:4px; }
/* Country dropdown — appended to body so no z-index parent clipping */
.iti__country-list {
  border:1px solid #e5e7eb !important;
  border-radius:8px !important;
  box-shadow:0 8px 24px rgba(10,22,40,.14) !important;
  z-index:99999 !important;
  max-height:260px;
  font-size:.8rem;
  overflow-y:auto;
}
.iti__country.iti__highlight { background:#faf8f3; }
.iti__dial-code { color:#9ca3af; font-weight:600; }
.iti__search-input {
  border:1px solid #e5e7eb !important;
  border-radius:6px !important;
  padding:.4rem .6rem !important;
  font-size:.8rem !important;
  margin:.4rem .4rem .2rem !important;
  width:calc(100% - .8rem) !important;
  box-sizing:border-box !important;
}
/* ── En Vedette Section ──────────────────────────────────────────── */
.featured-voyage-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f5ee 0%, #fff 60%, #f0f4fa 100%);
}
.featured-voyage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(10,22,40,.15);
  min-height: 420px;
}
.featured-voyage__image-wrap {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.featured-voyage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.featured-voyage:hover .featured-voyage__img { transform: scale(1.04); }
.featured-voyage__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.2);
}
.featured-voyage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.55) 0%, transparent 55%);
}
.featured-voyage__type-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(10,22,40,.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.featured-voyage__price-pill {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--imperium-gold);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 999px;
}
.featured-voyage__price-pill strong { font-weight: 800; }
.featured-voyage__content {
  background: #fff;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.featured-voyage__eyebrow {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--imperium-gold);
}
.featured-voyage__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--imperium-navy);
  line-height: 1.2;
  margin: 0;
}
.featured-voyage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.featured-voyage__meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-2);
  background: var(--surface);
  padding: .3rem .75rem;
  border-radius: 999px;
}
.featured-voyage__meta-item i { color: var(--imperium-gold); font-size: .7rem; }
.featured-voyage__desc {
  font-size: .875rem;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}
.featured-voyage__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.featured-voyage__see-all {
  font-size: .8rem;
  font-weight: 600;
  color: var(--imperium-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
}
.featured-voyage__see-all:hover { color: var(--imperium-gold); }
@media (max-width: 768px) {
  .featured-voyage { grid-template-columns: 1fr; }
  .featured-voyage__image-wrap { min-height: 240px; }
  .featured-voyage__content { padding: 1.75rem 1.5rem; }
  .featured-voyage__title { font-size: 1.5rem; }
}

/* ─── Featured Voyage Entrance Animation ───────────────────── */
.featured-voyage-section { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.featured-voyage-section.fv-revealed { opacity: 1; transform: none; }
.featured-voyage__image-wrap { overflow: hidden; }
.featured-voyage__img { transition: transform .6s ease; }
.featured-voyage:hover .featured-voyage__img { transform: scale(1.05); }
.featured-voyage-section .featured-voyage__eyebrow,
.featured-voyage-section .featured-voyage__title,
.featured-voyage-section .featured-voyage__meta,
.featured-voyage-section .featured-voyage__desc,
.featured-voyage-section .featured-voyage__actions {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.featured-voyage-section.fv-revealed .featured-voyage__eyebrow { opacity:1; transform:none; transition-delay:.25s; }
.featured-voyage-section.fv-revealed .featured-voyage__title  { opacity:1; transform:none; transition-delay:.35s; }
.featured-voyage-section.fv-revealed .featured-voyage__meta   { opacity:1; transform:none; transition-delay:.45s; }
.featured-voyage-section.fv-revealed .featured-voyage__desc   { opacity:1; transform:none; transition-delay:.52s; }
.featured-voyage-section.fv-revealed .featured-voyage__actions { opacity:1; transform:none; transition-delay:.6s; }
.featured-voyage__type-badge {
  opacity: 0; transform: translateY(-8px);
  transition: opacity .4s ease .3s, transform .4s ease .3s;
}
.fv-revealed .featured-voyage__type-badge { opacity:1; transform:none; }

/* ─── Topbar v2 ─────────────────────────────────────────────── */
.topbar-v2 {
  background: #0a1628;
  border-bottom: 1px solid rgba(201,168,76,.18);
  font-size: .82rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.75);
  position: sticky;
  top: 0;
  z-index: 1100;
  overflow: visible;
}
.topbar-v2 .container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.topbar-v2__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  gap: 1rem;
}
/* Left — social icons */
.topbar-v2__left { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; overflow: visible; }
.topbar-v2__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.topbar-v2__social:hover { background: var(--imperium-gold); color: #fff; }
.topbar-v2__social--wa {
  display: inline-flex; align-items: center; gap: .4rem;
  width: auto; padding: 0 .65rem; border-radius: 999px;
  font-size: .8rem; color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
}
.topbar-v2__social--wa:hover { background: #25D366; color: #fff; }
.topbar-v2__wa-num { font-size: .78rem; letter-spacing: .02em; }
.topbar-v2__social--tt:hover { background: #010101; color: #fff; }
/* Facebook dropdown */
.topbar-v2__fb-wrap { position: relative; }
.topbar-v2__fb-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: 10px;
  padding: .35rem;
  min-width: 165px;
  z-index: 9999;
  box-shadow: 0 10px 32px rgba(0,0,0,.15);
}
.topbar-v2__fb-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: #fff;
  border-left: 1px solid rgba(10,22,40,.1);
  border-top: 1px solid rgba(10,22,40,.1);
}
.topbar-v2__fb-item {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .75rem; border-radius: 7px;
  color: #0a1628;
  font-size: .75rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.topbar-v2__fb-item i { color: #1877f2; font-size: .78rem; }
.topbar-v2__fb-item:hover { background: #f1f5f9; color: #0a1628; }

/* Center — service phone numbers */
.topbar-v2__center {
  display: flex; align-items: center; gap: .5rem;
  flex: 1; justify-content: center;
}
.topbar-v2__info {
  display: inline-flex; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .68rem;
  transition: color .2s;
  white-space: nowrap;
}
.topbar-v2__info:hover { color: var(--imperium-gold); }
.topbar-v2__info i { color: var(--imperium-gold); font-size: .65rem; }
.topbar-v2__info-label { color: rgba(255,255,255,.45); font-size: .62rem; margin-right: .15rem; }
.topbar-v2__sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Right — contact link + auth */
.topbar-v2__right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.topbar-v2__link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8);
  font-size: .82rem; font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.topbar-v2__link:hover { color: var(--imperium-gold); }

/* Responsive — hide center on small screens */
@media (max-width: 900px) {
  .topbar-v2__center { display: none; }
}
@media (max-width: 600px) {
  .topbar-v2__wa-num { display: none; }
  .topbar-v2__inner { height: 34px; }
}

/* ─── Elegant Section Headers ───────────────────────────────── */
.section-header-elegant {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-header-elegant__label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--imperium-gold);
  margin-bottom: .6rem;
}
.section-header-elegant__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--imperium-navy);
  line-height: 1.15;
  margin: 0 0 .75rem;
}
.section-header-elegant__line {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin: 0 auto .5rem;
}
.section-header-elegant__line::before,
.section-header-elegant__line::after {
  content: '';
  width: 3rem; height: 1px;
  background: linear-gradient(to right, transparent, var(--imperium-gold));
}
.section-header-elegant__line::after { background: linear-gradient(to left, transparent, var(--imperium-gold)); }
.section-header-elegant__diamond {
  width: 6px; height: 6px;
  background: var(--imperium-gold);
  transform: rotate(45deg);
}
.section-header-elegant__sub {
  font-size: .9rem; color: var(--text-3); margin: 0;
  max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* scroll-reveal for sections */
.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.scroll-reveal.revealed { opacity: 1; transform: none; }
.scroll-reveal-item { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.scroll-reveal-item.revealed { opacity: 1; transform: none; }

/* ─── Contact Page ───────────────────────────────────────────── */

/* 3-column grid: info | map | cards */
.ct-layout {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    gap: 2rem;
    padding: 2.5rem 0;
    align-items: start;
}

/* ── Left: info panel ── */
.ct-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.ct-block {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}
.ct-block__icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: #f0ebe0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #c9a84c; font-size: .85rem;
}
.ct-block__label {
    font-size: .58rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: #6b7280; margin-bottom: .35rem;
}
.ct-block__val {
    font-size: .82rem;
    color: #374151;
    line-height: 1.6;
}
/* Hours table */
.ct-hours { display: flex; flex-direction: column; gap: 0; width: 100%; }
.ct-hours__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .3rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: .78rem;
    color: #374151;
}
.ct-hours__row:last-child { border-bottom: none; }
.ct-badge {
    padding: .1rem .5rem; border-radius: 999px;
    font-size: .6rem; font-weight: 700;
}
.ct-badge--open   { background: #d1fae5; color: #065f46; }
.ct-badge--closed { background: #fee2e2; color: #991b1b; }
/* Divider */
.ct-divider {
    height: 1px;
    background: #e5e7eb;
    margin: .2rem 0;
}
/* Socials */
.ct-socials {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.ct-soc {
    display: flex; align-items: center; gap: .65rem;
    padding: .5rem .85rem;
    border-radius: 8px;
    font-size: .78rem; font-weight: 600;
    text-decoration: none;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    transition: background .18s, color .18s, border-color .18s, transform .15s;
}
.ct-soc:hover { transform: translateX(3px); }
.ct-soc i { font-size: .9rem; width: 18px; text-align: center; flex-shrink: 0; }
.ct-soc--ig:hover { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); color: #fff; border-color: transparent; }
.ct-soc--fb:hover { background: #1877f2; color: #fff; border-color: transparent; }
.ct-soc--tt:hover { background: #010101; color: #fff; border-color: transparent; }

/* ── Center: map ── */
.ct-map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.ct-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* ── Right: service cards ── */
.ct-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ct-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}
.ct-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #c9a84c;
    border-radius: 3px 0 0 3px;
}
.ct-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    border-color: #c9a84c;
}
.ct-card__icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, #001f3f, #1a2f52);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #c9a84c; font-size: 1rem;
}
.ct-card__body {
    flex: 1;
    min-width: 0;
}
.ct-card__svc {
    font-size: .55rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: #9ca3af; margin-bottom: .1rem;
}
.ct-card__name {
    font-size: .95rem; font-weight: 700;
    color: #001f3f;
    margin: 0 0 .35rem;
}
.ct-card__line {
    display: flex; align-items: center; gap: .4rem;
    font-size: .74rem; color: #4b5563;
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ct-card__line + .ct-card__line { margin-top: .15rem; }
.ct-card__line i { color: #c9a84c; font-size: .65rem; flex-shrink: 0; }
.ct-card__line:hover { color: #c9a84c; }
.ct-card__cta {
    flex-shrink: 0;
    width: 34px; height: 34px;
    background: #001f3f;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #c9a84c; font-size: .8rem;
    text-decoration: none;
    transition: background .18s;
}
.ct-card__cta:hover { background: #c9a84c; color: #001f3f; }

/* Responsive */
@media (max-width: 1100px) {
    .ct-layout { grid-template-columns: 240px 1fr 270px; gap: 1.5rem; }
}
@media (max-width: 900px) {
    .ct-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .ct-map { grid-column: 1 / -1; min-height: 320px; }
    .ct-map iframe { min-height: 320px; }
}
@media (max-width: 600px) {
    .ct-layout { grid-template-columns: 1fr; padding: 1.5rem 0; }
    .ct-map { min-height: 260px; }
    .ct-map iframe { min-height: 260px; }
    .ct-card__line { font-size: .7rem; }
}

/* ─── Vol Request Form ──────────────────────────────────────── */
.vr-page {
    min-height: calc(100vh - 44px - 60px);
    background: #f4f6fb;
    padding: 1.25rem 1rem 2rem;
    display: flex; flex-direction: column; align-items: center;
}
.vr-heading { text-align: center; margin-bottom: 1.1rem; }
.vr-heading__eye {
    font-size: .62rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: #c9a84c; margin-bottom: .2rem;
}
.vr-heading__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.35rem, 3.5vw, 1.9rem);
    font-weight: 600; color: #0a1628; margin: 0 0 .2rem;
}
.vr-heading__sub { font-size: .78rem; color: #6b7a99; }
.vr-stepper {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 1.1rem; width: 100%; max-width: 460px;
}
.vr-step-item { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.vr-step-item:not(:last-child)::after {
    content: ''; position: absolute; top: 16px; left: 50%;
    width: 100%; height: 2px; background: #dde3f0; z-index: 0; transition: background .4s;
}
.vr-step-item.done:not(:last-child)::after,
.vr-step-item.active:not(:last-child)::after { background: #c9a84c; }
.vr-step-circle {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid #dde3f0; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .74rem; font-weight: 700; color: #9aa5bc;
    z-index: 1; position: relative; transition: all .35s;
}
.vr-step-item.active .vr-step-circle { background: #0a1628; border-color: #0a1628; color: #c9a84c; box-shadow: 0 0 0 3px rgba(10,22,40,.1); }
.vr-step-item.done .vr-step-circle { background: #c9a84c; border-color: #c9a84c; color: #fff; }
.vr-step-label {
    font-size: .6rem; font-weight: 600; letter-spacing: .05em;
    text-transform: uppercase; color: #9aa5bc; margin-top: .3rem; text-align: center; transition: color .3s;
}
.vr-step-item.active .vr-step-label { color: #0a1628; }
.vr-step-item.done .vr-step-label { color: #c9a84c; }
.vr-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 28px rgba(10,22,40,.09); width: 100%; max-width: 620px; overflow: hidden; }
.vr-progress-track { height: 3px; background: #eef0f7; }
.vr-progress-fill { height: 100%; background: linear-gradient(to right, #c9a84c, #e0c06a); transition: width .5s ease; }
.vr-card-header { padding: .8rem 1.4rem .7rem; border-bottom: 1px solid #f0f2f8; display: flex; align-items: center; gap: .75rem; }
.vr-card-header__icon { width: 34px; height: 34px; flex-shrink: 0; background: #f4f6fb; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #0a1628; font-size: .88rem; }
.vr-card-header__title { font-size: .9rem; font-weight: 700; color: #0a1628; margin: 0; }
.vr-card-header__sub { font-size: .67rem; color: #8a9ab5; margin: 0; }
.vr-body { padding: 1rem 1.4rem .9rem; }
.vr-step-panel { animation: vrSlideIn .3s ease both; }
.vr-step-panel.slide-back { animation: vrSlideBack .3s ease both; }
@keyframes vrSlideIn   { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:none; } }
@keyframes vrSlideBack { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
.vr-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.vr-field { margin-bottom: .55rem; }
.vr-label { display: block; font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #3a4a63; margin-bottom: .22rem; }
.vr-label .req { color: #e74c3c; }
.vr-input { width: 100%; padding: .52rem .8rem; border: 1.5px solid #e2e7f2; border-radius: 8px; font-size: .84rem; color: #0a1628; background: #fafbfd; transition: border-color .2s, box-shadow .2s; outline: none; box-sizing: border-box; appearance: none; }
.vr-input:focus { border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,.12); background: #fff; }
.vr-input:disabled { opacity: .4; cursor: not-allowed; }
.vr-input.has-error { border-color: #e74c3c; }
.vr-hint { font-size: .62rem; color: #e74c3c; margin-top: .18rem; display: none; }
.vr-hint.show { display: block; }
.vr-radio-group { display: flex; gap: .4rem; }
.vr-radio-card { flex: 1; }
.vr-radio-card input { display: none; }
.vr-radio-card label { display: flex; align-items: center; justify-content: center; gap: .35rem; padding: .48rem .5rem; border: 1.5px solid #e2e7f2; border-radius: 8px; cursor: pointer; font-size: .78rem; font-weight: 600; color: #5c6b84; background: #fafbfd; transition: all .2s; white-space: nowrap; }
.vr-radio-card label i { font-size: .88rem; color: #b5bfcc; transition: color .2s; }
.vr-radio-card input:checked + label { border-color: #c9a84c; background: rgba(201,168,76,.07); color: #0a1628; }
.vr-radio-card input:checked + label i { color: #c9a84c; }
.vr-passager { display: grid; grid-template-columns: 1fr auto; gap: .45rem; align-items: end; background: #f8fafd; border: 1px solid #eaeff8; border-radius: 8px; padding: .55rem .75rem; margin-bottom: .4rem; }
.vr-passager-header { display: flex; align-items: center; gap: .4rem; margin-bottom: .3rem; }
.vr-passager-num { width: 18px; height: 18px; border-radius: 50%; background: #0a1628; color: #c9a84c; font-size: .58rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.vr-passager-lbl { font-size: .62rem; font-weight: 700; color: #3a4a63; text-transform: uppercase; letter-spacing: .07em; }
.vr-passager-fields { display: grid; grid-template-columns: 2fr 1fr; gap: .4rem; }
.vr-btn-remove { background: none; border: none; color: #e74c3c; cursor: pointer; padding: .25rem; border-radius: 5px; font-size: .82rem; transition: background .2s; align-self: flex-end; margin-bottom: .1rem; }
.vr-btn-remove:hover { background: rgba(231,76,60,.1); }
.vr-summary { background: #f8fafd; border: 1px solid #eaeff8; border-radius: 9px; padding: .7rem .9rem; display: grid; grid-template-columns: 1fr 1fr; gap: .25rem .7rem; font-size: .78rem; margin-bottom: .75rem; }
.vr-summary-item .lbl { font-size: .64rem; color: #8a9ab5; display: block; }
.vr-summary-item { color: #0a1628; font-weight: 600; }
.vr-nav { display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid #f0f2f8; }
.vr-btn-prev { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem 1rem; border: 1.5px solid #e2e7f2; border-radius: 8px; background: #fff; color: #3a4a63; font-size: .8rem; font-weight: 600; cursor: pointer; transition: border-color .2s, background .2s; }
.vr-btn-prev:hover { border-color: #0a1628; background: #f8fafd; }
.vr-btn-next { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem 1.25rem; background: #c9a84c; border: none; border-radius: 8px; color: #fff; font-size: .84rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; }
.vr-btn-next:hover { background: #b8963e; transform: translateY(-1px); }
.vr-btn-next:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.vr-btn-submit { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.4rem; background: linear-gradient(135deg, #0a1628 0%, #1a2f55 100%); border: none; border-radius: 8px; color: #c9a84c; font-size: .86rem; font-weight: 700; cursor: pointer; transition: opacity .2s, transform .15s; box-shadow: 0 4px 14px rgba(10,22,40,.22); }
.vr-btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.vr-btn-add { display: inline-flex; align-items: center; gap: .35rem; padding: .42rem .85rem; background: transparent; border: 1.5px dashed #c9a84c; border-radius: 7px; color: #c9a84c; font-size: .75rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.vr-btn-add:hover { background: rgba(201,168,76,.07); }
@media (max-width: 640px) {
    .vr-row { grid-template-columns: 1fr; }
    .vr-body { padding: .85rem .85rem .75rem; }
    .vr-card-header { padding: .7rem .85rem; }
}

/* ═══════════════════════════════════════════════════════════
   MES RÉSERVATIONS PAGE
   ═══════════════════════════════════════════════════════════ */
.res-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 2.5rem 1.5rem; }
.res-hero__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 1.25rem; }
.res-hero__icon { font-size: 2.25rem; color: var(--gold); flex-shrink: 0; }
.res-hero__title { font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.res-hero__sub { font-size: .875rem; color: rgba(255,255,255,.65); font-family: Poppins, sans-serif; font-weight: 400; }

.res-page { padding: 2rem 1.5rem 3.5rem; background: var(--surface); min-height: 60vh; }
.res-page .container { max-width: 900px; margin: 0 auto; }

.res-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.res-filter { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem 1rem; border-radius: 50px; border: 1.5px solid var(--border); background: var(--white); color: var(--text-2); font-size: .82rem; font-weight: 500; text-decoration: none; transition: border-color .2s, background .2s, color .2s; }
.res-filter:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.res-filter--active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.res-filter--active:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }
.res-filter__label { font-weight: 600; }
.res-filter__badge { background: var(--gold); color: var(--navy); font-size: .65rem; font-weight: 700; border-radius: 50px; padding: .1rem .45rem; min-width: 20px; text-align: center; line-height: 1.5; }
.res-filter--active .res-filter__badge { background: var(--gold-light); }

.res-count { font-size: .82rem; color: var(--text-3); margin-bottom: 1rem; font-weight: 500; }

.res-list { display: flex; flex-direction: column; gap: 1rem; }

.res-empty { background: var(--white); border-radius: var(--r-lg); padding: 3.5rem 2rem; text-align: center; box-shadow: var(--sh1); }
.res-empty__icon { width: 72px; height: 72px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.75rem; color: var(--gold); }
.res-empty__title { font-size: 1.25rem; color: var(--navy); margin-bottom: .5rem; }
.res-empty__text { font-size: .875rem; color: var(--text-3); margin-bottom: 1.5rem; }
.res-empty__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* Card */
.res-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh2); overflow: hidden; transition: box-shadow .25s; }
.res-card:hover { box-shadow: var(--sh3); }
.res-card--hotel    { border-left: 4px solid #2563eb; }
.res-card--voyage   { border-left: 4px solid var(--gold); }
.res-card--custom_voyage { border-left: 4px solid #7c3aed; }

.res-card__topbar { display: flex; align-items: center; justify-content: space-between; padding: .6rem 1.1rem; background: var(--navy-light); border-bottom: 1px solid var(--border-lt); }
.res-card__type { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }
.res-card__status { display: inline-flex; align-items: center; gap: .35rem; font-size: .75rem; font-weight: 600; padding: .25rem .65rem; border-radius: 50px; }
.res-card__status--confirmed  { background: var(--status-success-bg); color: var(--status-success); }
.res-card__status--pending    { background: var(--status-warning-bg); color: var(--status-warning); }
.res-card__status--pending_review { background: var(--status-warning-bg); color: var(--status-warning); }
.res-card__status--cancelled  { background: var(--status-danger-bg);  color: var(--status-danger); }
.res-card__status--processing { background: var(--status-info-bg);    color: var(--status-info); }
.res-card__status--quoted     { background: var(--gold-pale);          color: var(--gold-dark); }
.res-card__status--expired    { background: #f1f5f9; color: #64748b; }

.res-card__body { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.1rem 1.1rem 1rem; }
.res-card__info { flex: 1; min-width: 0; }
.res-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.res-card__location, .res-card__ref { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--text-3); margin-bottom: .2rem; }
.res-card__location i, .res-card__ref i { color: var(--gold); font-size: .72rem; }

.res-card__details { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .5rem .75rem; margin-top: .65rem; }
.res-card__detail { display: flex; align-items: flex-start; gap: .4rem; }
.res-card__detail > i { color: var(--gold); font-size: .78rem; margin-top: .15rem; flex-shrink: 0; }
.res-card__detail-label { display: block; font-size: .65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.res-card__detail-value { display: block; font-size: .82rem; color: var(--text); font-weight: 500; }

.res-card__aside { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: .65rem; }
.res-card__price { text-align: right; }
.res-card__price-label { display: block; font-size: .65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.res-card__price-amount { display: block; font-size: 1.45rem; font-weight: 800; color: var(--navy); line-height: 1.1; font-family: Poppins, sans-serif; }
.res-card__price-amount--small { font-size: .95rem; color: var(--text-3); }
.res-card__price-currency { font-size: .72rem; color: var(--text-3); font-weight: 500; }
.res-card__price--pending .res-card__price-label { color: var(--gold-dark); }
.res-card__cancel { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .8rem; border-radius: 6px; border: 1.5px solid #fca5a5; background: #fff0f0; color: #dc2626; font-size: .75rem; font-weight: 600; cursor: pointer; transition: background .2s, border-color .2s; }
.res-card__cancel:hover { background: #fee2e2; border-color: #f87171; }

@media (max-width: 600px) {
    .res-hero__title { font-size: 1.4rem; }
    .res-card__body { flex-direction: column; gap: .75rem; }
    .res-card__aside { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: .5rem; }
    .res-card__details { grid-template-columns: 1fr 1fr; }
}

/* ── Listing layout (sidebar + main) ── */
.listing-layout { display: flex; gap: 1.5rem; align-items: flex-start; }
.listing-sidebar { flex-shrink: 0; width: 260px; align-self: flex-start; }
.listing-main { flex: 1; min-width: 0; }

/* Filter panel */
.listing-filters { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.listing-filters__header { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: linear-gradient(135deg,#1e2d4a,#1e3a5f); color: #fff; font-size: .8rem; font-weight: 700; }
.listing-filters__reset { margin-left: auto; font-size: .7rem; color: #fbbf24; font-weight: 600; text-decoration: underline; white-space: nowrap; }
.listing-filters__group { padding: 14px 14px 10px; border-bottom: 1px solid #f1f5f9; }
.listing-filters__label { font-size: .68rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.listing-filters__option { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; cursor: pointer; font-size: .82rem; color: #374151; }
.listing-filters__option input[type="radio"] { accent-color: #c9a227; cursor: pointer; }
.listing-filters__option:last-child { margin-bottom: 0; }

/* Budget dual-range */
.lf-budget-display { display: flex; align-items: center; gap: 5px; font-size: .88rem; font-weight: 700; color: #1e2d4a; margin-bottom: 10px; }
.lf-unit { font-size: .72rem; color: #9ca3af; font-weight: 500; margin-left: 2px; }
.lf-slider { margin: 0 4px; }
.lf-slider .dual-range-slider__range { background: linear-gradient(90deg,#c9a227,#e8c232); }

/* Safety net: no-results hidden by default; JS shows it via style.display='block' */
#lf-no-results { display: none; }
/* JS hides cards not on current page */
.listing-card--hidden { display: none !important; }

@media (max-width: 1023px) {
    .listing-layout { flex-direction: column; }
    .listing-sidebar {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        width: 100% !important;
        max-height: 85vh;
        overflow-y: auto;
        z-index: 200;
        transform: translateY(100%);
        transition: transform .3s ease;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 24px rgba(0,31,63,.15);
        background: #fff;
    }
    .listing-sidebar.results-sidebar--open {
        transform: translateY(0) !important;
    }
    .listing-layout > .mobile-filter-bar {
        width: 100%;
        order: -1;
    }
}

/* ══════════════════════════════════════════════════════════
   x-cloak — hide Alpine elements until initialized
═══════════════════════════════════════════════════════════ */
[x-cloak] { display: none !important; }

/* ══════════════════════════════════════════════════════════
   Hotel results page — booking overlay loader
═══════════════════════════════════════════════════════════ */
#page-loading-overlay {
    background: rgba(15,25,50,.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.plo-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 48px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,.25);
    min-width: 300px;
}
.plo-title { font-size: 15px; font-weight: 700; color: #1e2d4a; margin-bottom: 6px; }
.plo-sub   { font-size: 12px; color: #6b7280; margin-bottom: 24px; }
.plo-bar   { height: 4px; background: #f1f5f9; border-radius: 99px; overflow: hidden; }
.plo-bar-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg,#c9a227,#e8c232);
    border-radius: 99px;
    animation: plo-load 2.4s ease-in-out infinite;
}
@keyframes plo-load {
    0%   { width:0;   margin-left:0 }
    60%  { width:85%; margin-left:0 }
    100% { width:10%; margin-left:100% }
}

/* ══════════════════════════════════════════════════════════
   Password change form
═══════════════════════════════════════════════════════════ */
.password-change-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem;
}
.password-change-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,31,63,.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}
.password-change-header { text-align: center; margin-bottom: 1.5rem; }
.password-change-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #C7A052 0%, #d4af61 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
}
.password-change-icon i { font-size: 1.25rem; color: white; }
.password-change-header h1 { font-size: 1.25rem; font-weight: 700; color: #001F3F; margin: 0 0 0.375rem 0; }
.password-change-header p  { font-size: 0.8125rem; color: #64748b; margin: 0; }
.password-change-error {
    background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.5rem;
    padding: 0.75rem; margin-bottom: 1rem;
    display: flex; gap: 0.5rem; align-items: flex-start;
}
.password-change-error i  { color: #dc2626; margin-top: 0.125rem; }
.password-change-error ul { margin: 0; padding-left: 1rem; font-size: 0.75rem; color: #dc2626; }
.password-change-form     { display: flex; flex-direction: column; gap: 0.875rem; }
.password-change-field label { display: block; font-size: 0.75rem; font-weight: 600; color: #374151; margin-bottom: 0.375rem; }
.password-change-input-wrapper { position: relative; }
.password-change-input-wrapper i {
    position: absolute; left: 0.875rem; top: 50%;
    transform: translateY(-50%); color: #9ca3af; font-size: 0.875rem;
}
.password-change-input-wrapper input {
    width: 100%; padding: 0.625rem 0.875rem 0.625rem 2.5rem;
    border: 1px solid #e5e7eb; border-radius: 0.5rem;
    font-size: 0.875rem; transition: all 0.2s;
}
.password-change-input-wrapper input:focus {
    outline: none; border-color: #C7A052;
    box-shadow: 0 0 0 3px rgba(199,160,82,.1);
}
.password-change-submit {
    width: 100%; padding: 0.75rem;
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    color: white; border: none; border-radius: 0.5rem;
    font-size: 0.875rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; margin-top: 0.5rem; transition: all 0.2s;
}
.password-change-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,31,63,.3); }
.password-change-logout { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #e5e7eb; }
.password-change-logout button {
    width: 100%; padding: 0.625rem;
    background: transparent; color: #64748b;
    border: 1px solid #e5e7eb; border-radius: 0.5rem;
    font-size: 0.8125rem; font-weight: 500; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; transition: all 0.2s;
}
.password-change-logout button:hover { background: #f8fafc; color: #374151; }
.password-change-company { text-align: center; margin-top: 1rem; font-size: 0.75rem; color: #64748b; }
.password-change-company span { font-weight: 600; color: #001F3F; }

/* ══════════════════════════════════════════════════════════
   Futuristic Hotel Search Loader (app layout)
═══════════════════════════════════════════════════════════ */
.hotel-loader {
    position: fixed; inset: 0; z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    overflow: hidden;
}
.hotel-loader__bg { position: absolute; inset: 0; overflow: hidden; }
.hotel-loader__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,31,63,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,31,63,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0% { transform: translate(0,0); } 100% { transform: translate(50px,50px); } }
.hotel-loader__particles { position: absolute; inset: 0; }
.hotel-loader__particle {
    position: absolute; width: 4px; height: 4px;
    background: var(--imperium-gold); border-radius: 50%;
    opacity: 0; animation: particleFloat 4s ease-in-out infinite;
}
.hotel-loader__particle:nth-child(1) { left:10%; top:20%; animation-delay:0s; }
.hotel-loader__particle:nth-child(2) { left:85%; top:15%; animation-delay:.5s; }
.hotel-loader__particle:nth-child(3) { left:20%; top:80%; animation-delay:1s; }
.hotel-loader__particle:nth-child(4) { left:75%; top:70%; animation-delay:1.5s; }
.hotel-loader__particle:nth-child(5) { left:50%; top:10%; animation-delay:2s; }
.hotel-loader__particle:nth-child(6) { left:40%; top:90%; animation-delay:2.5s; }
@keyframes particleFloat {
    0%,100% { opacity:0; transform:translateY(0) scale(1); }
    50%      { opacity:.6; transform:translateY(-30px) scale(1.5); }
}
.hotel-loader__glow { position:absolute; border-radius:50%; filter:blur(80px); opacity:.3; }
.hotel-loader__glow--1 {
    width:400px; height:400px;
    background: radial-gradient(circle, var(--imperium-gold) 0%, transparent 70%);
    top:-100px; right:-100px; animation: glowPulse1 4s ease-in-out infinite;
}
.hotel-loader__glow--2 {
    width:300px; height:300px;
    background: radial-gradient(circle, rgba(0,31,63,.2) 0%, transparent 70%);
    bottom:-50px; left:-50px; animation: glowPulse2 5s ease-in-out infinite;
}
@keyframes glowPulse1 { 0%,100%{opacity:.2;transform:scale(1)} 50%{opacity:.4;transform:scale(1.1)} }
@keyframes glowPulse2 { 0%,100%{opacity:.15;transform:scale(1)} 50%{opacity:.3;transform:scale(1.15)} }
.hotel-loader__content { position:relative; z-index:10; text-align:center; padding:2rem; max-width:450px; }
.hotel-loader__logo { position:relative; width:140px; height:140px; margin:0 auto 2rem; }
.hotel-loader__rings { position:absolute; inset:0; }
.hotel-loader__ring { position:absolute; border-radius:50%; border:2px solid transparent; }
.hotel-loader__ring--1 { inset:0; border-color:rgba(0,31,63,.1); border-top-color:var(--imperium-gold); animation:ringRotate1 2s linear infinite; }
.hotel-loader__ring--2 { inset:15px; border-color:rgba(0,31,63,.08); border-right-color:var(--imperium-navy); animation:ringRotate2 2.5s linear infinite reverse; }
.hotel-loader__ring--3 { inset:30px; border-color:rgba(0,31,63,.05); border-bottom-color:var(--imperium-gold); animation:ringRotate1 3s linear infinite; }
@keyframes ringRotate1 { to { transform:rotate(360deg); } }
@keyframes ringRotate2 { to { transform:rotate(-360deg); } }
.hotel-loader__icon {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:60px; height:60px;
    background: linear-gradient(135deg, var(--imperium-gold) 0%, #d4af6a 100%);
    border-radius:16px; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 0 30px rgba(199,160,82,.5), 0 0 60px rgba(199,160,82,.3), inset 0 0 20px rgba(255,255,255,.2);
    animation: iconFloat 3s ease-in-out infinite;
}
.hotel-loader__icon i { font-size:1.75rem; color:var(--imperium-navy); }
@keyframes iconFloat {
    0%,100% { transform:translate(-50%,-50%) scale(1); }
    50%     { transform:translate(-50%,-55%) scale(1.05); }
}
.hotel-loader__pulse {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:80px; height:80px; border-radius:50%;
    background: var(--imperium-gold); opacity:0;
    animation: pulseWave 2s ease-out infinite;
}
@keyframes pulseWave {
    0%   { transform:translate(-50%,-50%) scale(.8); opacity:.5; }
    100% { transform:translate(-50%,-50%) scale(2);  opacity:0; }
}
.hotel-loader__title {
    color: var(--imperium-navy); font-size:1.75rem; font-weight:700;
    font-family:'Space Grotesk',sans-serif; margin-bottom:.5rem;
    display:flex; align-items:center; justify-content:center; gap:.25rem;
}
.hotel-loader__dots span { animation: dotBounce 1.4s ease-in-out infinite; color:var(--imperium-gold); }
.hotel-loader__dots span:nth-child(1) { animation-delay:0s; }
.hotel-loader__dots span:nth-child(2) { animation-delay:.2s; }
.hotel-loader__dots span:nth-child(3) { animation-delay:.4s; }
@keyframes dotBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }
.hotel-loader__subtitle { color:#64748b; font-size:1rem; margin-bottom:2.5rem; transition:opacity .3s; }
.hotel-loader__progress-container { margin-bottom:2rem; }
.hotel-loader__progress {
    position:relative; width:100%; height:6px;
    background: rgba(0,31,63,.1); border-radius:3px; overflow:hidden; margin-bottom:1rem;
}
.hotel-loader__progress-bar {
    height:100%; width:0%;
    background: linear-gradient(90deg, var(--imperium-gold), #f0d78c, var(--imperium-gold));
    background-size:200% 100%; border-radius:3px;
    animation: progressMove 2s ease-in-out infinite, progressGrow 10s ease-out forwards;
}
.hotel-loader__progress-glow {
    position:absolute; top:0; left:0; height:100%; width:30%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: progressGlowMove 2s ease-in-out infinite;
}
@keyframes progressMove { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes progressGrow  { 0%{width:0%} 15%{width:15%} 35%{width:40%} 60%{width:65%} 85%{width:85%} 100%{width:95%} }
@keyframes progressGlowMove { 0%{transform:translateX(-100%)} 100%{transform:translateX(400%)} }
.hotel-loader__progress-stages { display:flex; justify-content:space-between; font-size:.75rem; color:#94a3b8; }
.hotel-loader__stage { transition:all .3s; }
.hotel-loader__stage.active    { color:var(--imperium-gold); font-weight:600; }
.hotel-loader__stage.completed { color:var(--imperium-navy); }
.hotel-loader__tip {
    display:flex; align-items:center; justify-content:center; gap:.75rem;
    padding:.75rem 1.25rem; background:white; border:1px solid #e2e8f0;
    border-radius:50px; color:#64748b; font-size:.8125rem;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.hotel-loader__tip i { color:var(--imperium-gold); animation:tipPulse 2s ease-in-out infinite; }
@keyframes tipPulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@media (max-width:640px) {
    .hotel-loader__logo { width:120px; height:120px; }
    .hotel-loader__title { font-size:1.5rem; }
    .hotel-loader__progress-stages { font-size:.625rem; }
}

/* ── Clickable Cards ── */
.listing-card--clickable { position: relative; cursor: pointer; }
.listing-card--clickable .listing-card__cta::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: auto; }

.offer-card--clickable { position: relative; cursor: pointer; }
.offer-card--clickable .offer-card__cta::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: auto; }

/* ── Croisiere Special Offers ── */
.vd-special-offers { display:flex; align-items:flex-start; gap:1rem; background:linear-gradient(135deg,#fffbeb,#fef3c7); border:1px solid #f59e0b; border-radius:1rem; padding:1.25rem 1.5rem; margin-bottom:1.5rem; }
.vd-special-offers__icon { width:40px; height:40px; background:linear-gradient(135deg,#C7A052,#d4af6a); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.vd-special-offers__icon i { color:#fff; font-size:.9rem; }
.vd-special-offers__label { display:block; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:#92400e; margin-bottom:.25rem; }
.vd-special-offers__text { font-size:.875rem; color:#78350f; line-height:1.6; margin:0; white-space:pre-line; }

/* ── Coming Soon Badge ── */
.listing-card__soon-badge { position:absolute; top:.5rem; right:.5rem; background:rgba(245,158,11,.9); color:#fff; font-size:.65rem; font-weight:700; padding:.25rem .6rem; border-radius:4px; display:flex; align-items:center; gap:.3rem; z-index:3; backdrop-filter:blur(4px); }
