:root {
  --bg: #07110f;
  --bg-soft: #0c1715;
  --surface: #111d1a;
  --surface-2: #172622;
  --surface-3: #eef6ef;
  --text: #f8fbf7;
  --text-dark: #17211d;
  --muted: #b8c6be;
  --muted-dark: #5e6d64;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .22);
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --teal: #14b8a6;
  --sage: #9dc183;
  --danger: #ef4444;
  --radius: 8px;
  --pill: 999px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 17, 15, .96), rgba(7, 17, 15, .98)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=70") center top / cover fixed;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(20, 184, 166, .55);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  background: rgba(7, 17, 15, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 15, .94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}

body.auth-page {
  background: #050b0a;
  overflow-x: hidden;
}

.auth-page main {
  min-height: 100vh;
}

.auth-header {
  background: rgba(5, 11, 10, .66);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.auth-header.scrolled {
  background: rgba(5, 11, 10, .88);
}

.auth-header .nav-wrap {
  width: min(1120px, calc(100% - 32px));
}

.auth-signin-btn {
  min-width: 106px;
}

.auth-signin-btn[aria-current="page"] {
  color: #17110a;
  background: linear-gradient(135deg, var(--accent), #facc15);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(245, 158, 11, .28);
}

.nav-wrap {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #11201c;
  background: linear-gradient(135deg, var(--accent), #facc15 58%, var(--sage));
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(245, 158, 11, .26);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #dbe7de;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--pill);
  padding: 0 13px;
  transition: color .2s ease, background .2s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamb,
.search-toggle {
  display: none;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
}

.btn,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: var(--pill);
  padding: 0 22px;
  color: #17110a;
  background: linear-gradient(135deg, var(--accent), #facc15);
  box-shadow: 0 14px 30px rgba(245, 158, 11, .28);
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 158, 11, .38);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .14);
}

.login-btn {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.login-btn:hover {
  background: rgba(255, 255, 255, .15);
}

.btn-small {
  min-height: 42px;
  padding-inline: 17px;
}

.mega-search {
  display: none;
  border-top: 1px solid transparent;
}

.mega-search.active {
  display: block;
  border-color: var(--line);
}

.mega-search form {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 251, 247, .56);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(20, 184, 166, .75);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .12);
}

.hero {
  min-height: 86vh;
  padding: 150px 0 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 15, .94) 0%, rgba(7, 17, 15, .72) 44%, rgba(7, 17, 15, .26) 100%),
    url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=2000&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(7, 17, 15, 0), var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffd166;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: var(--pill);
  background: var(--teal);
}

.hero h1,
.page-title h1,
.section-head h2 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: 88px;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9e8df;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.search-box {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100% - 40px));
  margin: -58px auto 70px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .85fr auto;
  gap: 12px;
  background: rgba(17, 29, 26, .92);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-box .btn {
  min-width: 118px;
}

.section {
  padding: 82px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2,
.page-title h1 {
  margin-top: 12px;
  font-size: 54px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.section-head p {
  max-width: 620px;
  margin: 12px 0 0;
}

.trustbar,
.grid,
.stats,
.footer-grid,
.page-layout,
.two-col,
.form-grid,
.detail-gallery {
  display: grid;
  gap: 20px;
}

.trustbar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -10px;
}

.trust-item,
.card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow-soft);
}

.trust-item {
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item b {
  font-size: 15px;
  line-height: 1.25;
}

.icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: #11201c;
  background: linear-gradient(135deg, var(--teal), var(--sage));
  border-radius: var(--radius);
  font-weight: 900;
}

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

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

.card {
  overflow: hidden;
  color: #fff;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

a.card:hover,
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .25);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  box-shadow: 0 24px 58px rgba(0, 0, 0, .32);
}

.card-img {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #20302b;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

a.card:hover .card-img img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: var(--pill);
  padding: 7px 12px;
  color: #17110a;
  background: linear-gradient(135deg, #facc15, var(--accent));
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  font-size: 12px;
  font-weight: 900;
}

.card-body {
  padding: 22px;
}

.card-body h2,
.card-body h3,
.dest-card h3 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.card-body p {
  margin-top: 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
  color: #d7e5db;
  font-size: 13px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--pill);
  padding: 0 10px;
  background: rgba(255, 255, 255, .07);
}

.price {
  color: #ffd166;
  font-size: 22px;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 18px;
}

.old {
  margin-left: 7px;
  color: #93a299;
  font-size: 14px;
  text-decoration: line-through;
}

.dest-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  box-shadow: var(--shadow-soft);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .82));
}

.dest-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .45s ease;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
}

.dest-card p {
  margin: 0;
  color: #dbe7de;
}

.banner {
  min-height: 410px;
  display: flex;
  align-items: center;
  padding: 54px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 17, 15, .9), rgba(7, 17, 15, .42)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=82") center / cover;
  box-shadow: var(--shadow);
}

.banner > div {
  max-width: 650px;
}

.banner h2 {
  margin: 12px 0;
  font-size: 50px;
  line-height: 1.05;
}

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

.stat {
  padding: 28px 20px;
  text-align: center;
}

.stat b {
  display: block;
  color: #ffd166;
  font-size: 44px;
  line-height: 1;
}

.stat p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.faq-q {
  position: relative;
  padding: 18px 52px 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #11201c;
  background: var(--sage);
}

.faq-a,
.accordion-content {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.active .faq-a,
.active .accordion-content {
  display: block;
}

.faq-item.active .faq-q::after {
  content: "-";
}

.page-hero {
  min-height: 400px;
  display: flex;
  align-items: end;
  padding: 150px 0 72px;
  background:
    linear-gradient(90deg, rgba(7, 17, 15, .93), rgba(7, 17, 15, .45)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1700&q=82") center / cover;
}

.page-title {
  max-width: 860px;
}

.page-title .muted {
  max-width: 720px;
  color: #dbe7de;
  font-size: 18px;
}

.page-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.detail-gallery {
  grid-template-columns: 2fr 1fr;
  margin-bottom: 20px;
}

.detail-gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  padding: 24px;
}

.booking-card .btn {
  width: 100%;
  margin-top: 16px;
}

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

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

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

.alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.success {
  color: #caffdf;
  background: #0d3b2b;
}

.error {
  color: #ffd0d0;
  background: #441d1d;
}

.auth-hero {
  min-height: 100vh;
  padding: 136px 0 74px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 11, 10, .96) 0%, rgba(7, 17, 15, .76) 47%, rgba(7, 17, 15, .34) 100%),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.auth-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 10, .78));
  pointer-events: none;
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 462px);
  align-items: center;
  gap: 56px;
  min-width: 0;
}

.auth-copy {
  max-width: 650px;
  min-width: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.auth-copy h1 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: 62px;
  line-height: 1.02;
}

.auth-copy p {
  max-width: 560px;
  margin: 0;
  color: #dce9e2;
  font-size: 19px;
}

.auth-card {
  width: 100%;
  min-width: 0;
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .075)),
    rgba(9, 18, 16, .9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(22px);
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--teal), var(--accent), var(--sage));
}

.auth-card-header {
  margin-bottom: 24px;
}

.auth-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 10px;
  border: 1px solid rgba(250, 204, 21, .24);
  border-radius: var(--pill);
  color: #ffe7a3;
  background: rgba(245, 158, 11, .1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 31px;
  line-height: 1.15;
}

.auth-card-header p {
  margin: 0;
  color: #c4d2cb;
}

.auth-message {
  margin-bottom: 16px;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 800;
}

.auth-message.success {
  border: 1px solid rgba(157, 193, 131, .35);
}

.auth-message.error {
  border: 1px solid rgba(239, 68, 68, .35);
}

.auth-panel {
  display: none;
  animation: authPanelIn .34s cubic-bezier(.22, 1, .36, 1) both;
}

.auth-panel.active {
  display: block;
}

.auth-panel[hidden] {
  display: none;
}

@keyframes authPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #edf6f1;
  font-size: 13px;
  font-weight: 900;
}

.auth-card input {
  min-height: 54px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(5, 11, 10, .46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.auth-card input:hover {
  border-color: rgba(255, 255, 255, .3);
}

.auth-card input:focus {
  border-color: rgba(250, 204, 21, .82);
  background: rgba(5, 11, 10, .66);
  box-shadow:
    0 0 0 4px rgba(245, 158, 11, .16),
    0 16px 34px rgba(20, 184, 166, .09);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.password-toggle:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-50%) scale(1.03);
}

.password-toggle span {
  position: relative;
  width: 19px;
  height: 12px;
  display: block;
  border: 2px solid #dce9e2;
  border-radius: 50%;
}

.password-toggle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dce9e2;
  transform: translate(-50%, -50%);
}

.password-toggle.is-visible span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 25px;
  height: 2px;
  background: #dce9e2;
  transform: rotate(-35deg);
}

.auth-row {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 18px;
}

.auth-switch button,
.text-button {
  border: 0;
  padding: 0;
  color: #ffd166;
  background: transparent;
  font-weight: 900;
  transition: color .2s ease, transform .2s ease;
}

.text-button:hover,
.auth-switch button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.auth-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  overflow: hidden;
}

.auth-submit:hover {
  transform: translateY(-3px);
}

.auth-switch {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: center;
}

.footer {
  padding: 70px 0 26px;
  background: rgba(5, 11, 10, .98);
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  align-items: start;
}

.footer h4 {
  margin: 0 0 14px;
}

.footer p {
  color: var(--muted);
}

.footer a:not(.logo) {
  display: block;
  margin: 9px 0;
  color: #cbd8d0;
  transition: color .2s ease;
}

.footer a:not(.logo):hover {
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.socials span {
  min-width: 38px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter button {
  min-width: 78px;
  box-shadow: none;
}

.pay {
  font-size: 13px;
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8e9d94;
  text-align: center;
  font-size: 14px;
}

.whatsapp,
.mobile-cta,
.backtop {
  position: fixed;
  z-index: 90;
}

.whatsapp {
  right: 20px;
  bottom: 82px;
  border-radius: var(--pill);
  padding: 12px 16px;
  color: #06100d;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .28);
  font-weight: 900;
}

.mobile-cta {
  display: none;
  left: 16px;
  right: 16px;
  bottom: 14px;
  min-height: 52px;
  place-items: center;
  border-radius: var(--radius);
  color: #17110a;
  background: linear-gradient(135deg, var(--accent), #facc15);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
  font-weight: 900;
}

.backtop {
  right: 20px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

@media (max-width: 1100px) {
  .nav {
    gap: 0;
  }

  .nav a {
    padding-inline: 10px;
  }

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

  .search-box .btn {
    grid-column: 1 / -1;
  }

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

  .auth-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .auth-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .auth-card {
    max-width: 520px;
    justify-self: center;
  }
}

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

  .nav-wrap {
    min-height: 72px;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 17, 15, .98);
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    min-height: 46px;
    justify-content: center;
  }

  .hamb,
  .search-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .book-btn {
    display: none;
  }

  .nav-actions .login-btn {
    display: inline-flex;
  }

  .hero {
    min-height: 760px;
    padding-top: 128px;
    background-position: 58% center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 58px;
  }

  .search-box,
  .grid,
  .grid-4,
  .trustbar,
  .stats,
  .page-layout,
  .two-col,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    margin-top: -44px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .page-title h1 {
    font-size: 42px;
  }

  .banner {
    padding: 34px;
  }

  .banner h2 {
    font-size: 38px;
  }

  .auth-hero {
    padding: 118px 0 66px;
    background-position: 58% center;
  }

  .auth-copy h1 {
    font-size: 44px;
  }

  .auth-copy p {
    font-size: 18px;
  }

  .section-head .btn {
    margin-top: 18px;
  }

  .page-hero {
    min-height: 330px;
    padding-top: 128px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .sidebar {
    position: static;
  }

  .newsletter {
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }

  .whatsapp {
    bottom: 78px;
  }

  .backtop {
    display: none;
  }
}

@media (max-width: 560px) {
  .container,
  .copyright {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap,
  .hero-content,
  .search-box,
  .mega-search form {
    width: calc(100% - 28px);
  }

  .logo {
    font-size: 17px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-head h2,
  .page-title h1 {
    font-size: 34px;
  }

  .hero-actions .btn,
  .search-box .btn {
    width: 100%;
  }

  .nav-actions {
    gap: 7px;
  }

  .auth-header .nav-wrap {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .nav-actions .login-btn {
    min-height: 40px;
    padding-inline: 13px;
  }

  .auth-signin-btn {
    min-width: 88px;
  }

  .card-body,
  .booking-card {
    padding: 18px;
  }

  .auth-hero {
    padding: 102px 0 46px;
  }

  .auth-copy h1 {
    font-size: 32px;
  }

  .auth-copy p {
    font-size: 16px;
  }

  .auth-layout {
    gap: 26px;
  }

  .auth-card {
    width: 100%;
    max-width: 100%;
    padding: 22px;
  }

  .auth-card h2 {
    font-size: 26px;
  }

  .auth-card input,
  .auth-submit {
    min-height: 50px;
  }

  .banner {
    min-height: 360px;
    padding: 26px;
  }

  .banner h2 {
    font-size: 32px;
  }
}
