/* =====================================
   CÀI ĐẶT CHUNG
===================================== */

* {
  box-sizing: border-box;
  font-family:
    "Be Vietnam Pro",
    "Segoe UI",
    Arial,
    sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: #0f172a;
  background: #f8fafc;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}


/* =====================================
   TASKBAR
===================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 999;

  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 14px 5%;

  background: rgba(2, 6, 23, 0.62);

  backdrop-filter:
    blur(18px)
    saturate(160%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(160%);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.18);

  box-shadow:
    0 12px 36px
    rgba(2, 6, 23, 0.22);

  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.nav-scrolled {
  background:
    rgba(2, 6, 23, 0.92);

  box-shadow:
    0 16px 40px
    rgba(2, 6, 23, 0.32);
}


/* Logo */

.logo {
  flex-shrink: 0;

  color: #ffffff;

  font-family:
    "Montserrat",
    "Be Vietnam Pro",
    sans-serif;

  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.3px;

  text-decoration: none;
  white-space: nowrap;

  text-shadow:
    0 2px 10px
    rgba(0, 0, 0, 0.55);
}

.logo span {
  color: #38bdf8;
}


/* Menu */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  margin-left: auto;
}

.nav-links > a,
.nav-dropdown-trigger {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 10px 1px;

  color: #ffffff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;

  transition: 0.25s ease;
}

.nav-links > a::after,
.nav-dropdown-trigger::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 1px;

  width: 0;
  height: 2px;

  border-radius: 999px;
  background: #38bdf8;

  transition: 0.25s ease;
}

.nav-links > a:hover,
.nav-dropdown-trigger:hover {
  color: #bfdbfe;
}

.nav-links > a:hover::after,
.nav-dropdown:hover
.nav-dropdown-trigger::after {
  width: 100%;
}

.nav-dropdown-trigger svg {
  width: 17px;
  height: 17px;

  transition:
    transform 0.25s ease;
}

.nav-dropdown:hover
.nav-dropdown-trigger svg,
.nav-dropdown:focus-within
.nav-dropdown-trigger svg {
  transform: rotate(180deg);
}


/* =====================================
   MENU ĐỊA ĐIỂM
===================================== */

.nav-dropdown {
  position: relative;
}

/* Cầu nối để không bị mất hover */

.nav-dropdown::before {
  content: "";

  position: absolute;
  top: 100%;
  left: -20px;

  width: calc(100% + 40px);
  height: 24px;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;

  width: 350px;

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(10px);

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.nav-dropdown:hover
.nav-dropdown-panel,
.nav-dropdown:focus-within
.nav-dropdown-panel {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);

  pointer-events: auto;
}

.dropdown-card {
  padding: 22px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.98);

  border:
    1px solid
    rgba(226, 232, 240, 0.95);

  box-shadow:
    0 24px 70px
    rgba(15, 23, 42, 0.24);
}

.dropdown-card::before {
  content: "";

  position: absolute;
  top: -7px;
  left: 50%;

  width: 15px;
  height: 15px;

  background: white;

  transform:
    translateX(-50%)
    rotate(45deg);

  border-left:
    1px solid #e2e8f0;

  border-top:
    1px solid #e2e8f0;
}

.dropdown-heading {
  margin-bottom: 18px;
}

.dropdown-heading strong {
  display: block;

  margin-bottom: 5px;

  color: #0f172a;
  font-size: 18px;
}

.dropdown-heading span {
  color: #64748b;

  font-size: 13px;
  line-height: 1.55;
}

.dropdown-field {
  margin-bottom: 14px;
}

.dropdown-field label {
  display: block;

  margin-bottom: 7px;

  color: #334155;

  font-size: 12px;
  font-weight: 850;
}

.dropdown-field select {
  width: 100%;
  height: 46px;

  padding: 0 13px;

  border:
    1px solid #cbd5e1;

  border-radius: 13px;
  outline: none;

  color: #0f172a;
  background: white;

  cursor: pointer;

  transition: 0.2s ease;
}

.dropdown-field select:focus {
  border-color: #2563eb;

  box-shadow:
    0 0 0 4px
    rgba(37, 99, 235, 0.12);
}

.dropdown-reset-btn,
.dropdown-view-btn {
  width: 100%;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 13px;
  font-weight: 850;

  cursor: pointer;
  transition: 0.25s ease;
}

.dropdown-reset-btn {
  margin-top: 5px;

  color: #1d4ed8;
  background: #eff6ff;

  border:
    1px solid #bfdbfe;
}

.dropdown-view-btn {
  margin-top: 10px;

  color: white;
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #0ea5e9
    );

  text-decoration: none;
  border: none;
}

.dropdown-reset-btn:hover,
.dropdown-view-btn:hover {
  transform: translateY(-2px);
}


/* =====================================
   TÌM KIẾM KÍNH LÚP
===================================== */

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;

  flex-shrink: 0;
}

.nav-search {
  width: 48px;
  height: 46px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-radius: 999px;

  color: white;

  background:
    rgba(255, 255, 255, 0.12);

  border:
    1px solid
    rgba(255, 255, 255, 0.28);

  transition:
    width 0.35s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-search:hover,
.nav-search:focus-within {
  width: 290px;

  background:
    rgba(15, 23, 42, 0.86);

  box-shadow:
    0 12px 34px
    rgba(2, 6, 23, 0.3);
}

.search-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  cursor: pointer;
}

.search-icon svg {
  width: 21px;
  height: 21px;
}

.nav-search input {
  width: 0;
  min-width: 0;
  height: 100%;

  padding: 0;

  border: none;
  outline: none;

  opacity: 0;

  color: white;
  background: transparent;

  font-size: 14px;

  transition:
    width 0.35s ease,
    opacity 0.2s ease,
    padding 0.35s ease;
}

.nav-search:hover input,
.nav-search:focus-within input {
  width: 225px;

  padding:
    0 18px
    0 2px;

  opacity: 1;
}

.nav-search input::placeholder {
  color:
    rgba(226, 232, 240, 0.8);
}


/* Đăng nhập */

.auth-box {
  display: flex;
  align-items: center;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0 17px;

  border-radius: 999px;

  color: white;

  background:
    rgba(37, 99, 235, 0.42);

  border:
    1px solid
    rgba(147, 197, 253, 0.55);

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  white-space: nowrap;
  transition: 0.25s ease;
}

.login-btn:hover {
  transform: translateY(-2px);

  background:
    rgba(37, 99, 235, 0.58);
}


/* Khi đăng nhập */

.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-name {
  color: white;

  font-size: 13px;
  font-weight: 800;

  white-space: nowrap;
}

.logout-btn {
  min-height: 42px;
  padding: 0 14px;

  border-radius: 999px;

  color: white;

  background:
    rgba(239, 68, 68, 0.42);

  border:
    1px solid
    rgba(254, 202, 202, 0.5);

  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
  transition: 0.25s ease;
}

.logout-btn:hover {
  background:
    rgba(239, 68, 68, 0.58);
}


/* =====================================
   HERO SLIDESHOW LỚN
===================================== */

.hero {
  min-height: 100svh;

  position: relative;
  overflow: hidden;

  background: #020617;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;

  transform: scale(1.07);

  transition:
    opacity 1.2s ease-in-out,
    transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.52) 0%,
      rgba(2, 6, 23, 0.08) 30%,
      rgba(2, 6, 23, 0.04) 66%,
      rgba(2, 6, 23, 0.62) 100%
    );
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 34px;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  transform: translateX(-50%);

  color: white;

  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;

  background:
    linear-gradient(
      to bottom,
      white,
      transparent
    );
}


/* =====================================
   PHẦN CHUNG
===================================== */

.section {
  padding: 90px 8%;
}

.section-title {
  max-width: 780px;

  margin:
    0 auto
    42px;

  text-align: center;
}

.section-title h2 {
  margin:
    0 0
    15px;

  color: #0f172a;

  font-family:
    "Montserrat",
    "Be Vietnam Pro",
    sans-serif;

  font-size:
    clamp(
      32px,
      4vw,
      46px
    );

  line-height: 1.18;
}

.section-title p {
  margin: 0;

  color: #64748b;

  font-size: 16px;
  line-height: 1.75;
}

.section-badge {
  display: inline-block;

  margin-bottom: 18px;
  padding: 9px 16px;

  border-radius: 999px;

  color: #1d4ed8;
  background: #eff6ff;

  border:
    1px solid #bfdbfe;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-badge.light {
  color: #dbeafe;

  background:
    rgba(255, 255, 255, 0.12);

  border-color:
    rgba(255, 255, 255, 0.28);
}


/* =====================================
   NÚT CHUNG
===================================== */

.primary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 24px;

  border-radius: 14px;

  text-decoration: none;
  font-size: 15px;
  font-weight: 850;

  transition: 0.25s ease;
}

.primary-btn {
  color: white;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #0ea5e9
    );

  box-shadow:
    0 16px 32px
    rgba(14, 165, 233, 0.28);
}

.outline-btn {
  color: #1d4ed8;
  background: white;

  border:
    1px solid #bfdbfe;
}

.primary-btn:hover,
.outline-btn:hover {
  transform: translateY(-3px);
}


/* =====================================
   GIỚI THIỆU WEBSITE
===================================== */

.intro-section {
  padding: 100px 8%;

  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.1),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(14, 165, 233, 0.1),
      transparent 30%
    ),
    #ffffff;
}

.intro-content {
  max-width: 1180px;
  margin: 0 auto;

  text-align: center;
}

.intro-content > h1 {
  max-width: 950px;

  margin:
    0 auto
    24px;

  color: #0f172a;

  font-family:
    "Montserrat",
    "Be Vietnam Pro",
    sans-serif;

  font-size:
    clamp(
      38px,
      5vw,
      62px
    );

  line-height: 1.12;
  letter-spacing: -1.6px;
}

.intro-description {
  max-width: 890px;

  margin: 0 auto;

  color: #64748b;

  font-size: 17px;
  line-height: 1.85;
}


/* =====================================
   THẺ MINH HỌA TÍNH NĂNG
===================================== */

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

  gap: 24px;

  margin-top: 52px;
}

.showcase-card {
  overflow: hidden;

  text-align: left;

  border-radius: 26px;

  background: white;

  border:
    1px solid #e2e8f0;

  box-shadow:
    0 20px 55px
    rgba(15, 23, 42, 0.09);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 30px 75px
    rgba(15, 23, 42, 0.16);
}

.showcase-image {
  height: 230px;

  position: relative;
  overflow: hidden;
}

.showcase-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(2, 6, 23, 0.56),
      transparent 62%
    );
}

.showcase-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}

.showcase-card:hover
.showcase-image img {
  transform: scale(1.08);
}

.showcase-number {
  position: absolute;
  left: 18px;
  bottom: 16px;

  z-index: 1;

  color: white;

  font-size: 28px;
  font-weight: 900;

  text-shadow:
    0 3px 10px
    rgba(0, 0, 0, 0.4);
}

.showcase-content {
  padding: 25px;
}

.showcase-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 15px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #0ea5e9
    );

  box-shadow:
    0 12px 25px
    rgba(14, 165, 233, 0.24);
}

.showcase-icon svg {
  width: 24px;
  height: 24px;
}

.showcase-content h2 {
  margin:
    0 0
    11px;

  color: #0f172a;

  font-size: 22px;
}

.showcase-content p {
  min-height: 95px;

  margin:
    0 0
    18px;

  color: #64748b;

  font-size: 14px;
  line-height: 1.72;
}

.showcase-content > a {
  color: #1d4ed8;

  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.showcase-content > a:hover {
  color: #0284c7;
}

.intro-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;

  margin-top: 42px;
};

/* =====================================
   DANH SÁCH ĐỊA ĐIỂM
===================================== */

.destinations {
  background: #eef6ff;
}

.result-line {
  max-width: 1120px;

  margin:
    -14px auto
    28px;

  color: #475569;

  text-align: center;
  font-size: 14px;
  font-weight: 750;
}

.destination-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(270px, 1fr)
    );

  gap: 24px;
}

.destination-card {
  overflow: hidden;

  border-radius: 24px;

  background: white;

  border:
    1px solid
    rgba(226, 232, 240, 0.9);

  box-shadow:
    0 20px 55px
    rgba(15, 23, 42, 0.1);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.destination-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 28px 72px
    rgba(15, 23, 42, 0.16);
}

.destination-img {
  height: 200px;

  position: relative;

  background-size: cover;
  background-position: center;
}

.destination-img::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(2, 6, 23, 0.52),
      transparent 62%
    );
}

.tag-row {
  position: absolute;
  left: 16px;
  bottom: 16px;

  z-index: 1;

  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tag {
  padding: 7px 10px;

  border-radius: 999px;

  color: white;

  background:
    rgba(15, 23, 42, 0.75);

  font-size: 11px;
  font-weight: 800;

  backdrop-filter: blur(8px);
}

.destination-content {
  padding: 22px;
}

.destination-content h3 {
  margin:
    0 0
    10px;

  color: #0f172a;

  font-size: 23px;
}

.destination-content > p {
  display: -webkit-box;
  overflow: hidden;

  min-height: 72px;

  margin:
    0 0
    18px;

  color: #64748b;

  font-size: 14px;
  line-height: 1.7;

  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 18px;

  color: #334155;

  font-size: 13px;
  font-weight: 750;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 14px;

  border-radius: 12px;

  color: white;
  background: #2563eb;

  text-decoration: none;
  font-size: 13px;
  font-weight: 850;

  transition: 0.25s ease;
}

.tts-card-btn {
  color: #1d4ed8;
  background: #eff6ff;

  border:
    1px solid #bfdbfe;
}

.small-btn:hover {
  transform: translateY(-2px);
}

.empty-state {
  display: none;

  padding: 40px;

  border-radius: 22px;

  text-align: center;

  color: #64748b;
  background: white;

  border:
    1px solid #e2e8f0;
}


/* =====================================
   PRE-FOOTER
===================================== */

.pre-footer {
  padding: 95px 8%;

  background:
    linear-gradient(
      rgba(248, 250, 252, 0.94),
      rgba(239, 246, 255, 0.96)
    );
}

.pre-footer-card {
  max-width: 1120px;

  margin: 0 auto;
  padding: 58px;

  position: relative;
  overflow: hidden;

  border-radius: 34px;

  color: white;
  text-align: center;

  background:
    linear-gradient(
      rgba(15, 23, 42, 0.78),
      rgba(30, 64, 175, 0.66)
    ),
    url("/assets/images/bg-vietnam.jpg");

  background-size: cover;
  background-position: center;

  box-shadow:
    0 28px 80px
    rgba(15, 23, 42, 0.22);
}

.pre-footer-card > * {
  position: relative;
  z-index: 1;
}

.pre-footer-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(14, 165, 233, 0.28),
      transparent 32%
    );
}

.pre-footer-badge {
  display: inline-block;

  margin-bottom: 20px;
  padding: 9px 16px;

  border-radius: 999px;

  color: #dbeafe;

  background:
    rgba(255, 255, 255, 0.14);

  border:
    1px solid
    rgba(255, 255, 255, 0.28);

  font-size: 13px;
  font-weight: 850;
}

.pre-footer-card h2 {
  max-width: 780px;

  margin:
    0 auto
    18px;

  font-family:
    "Montserrat",
    "Be Vietnam Pro",
    sans-serif;

  font-size:
    clamp(
      34px,
      4vw,
      48px
    );

  line-height: 1.2;
}

.pre-footer-card > p {
  max-width: 760px;

  margin:
    0 auto
    34px;

  color: #e2e8f0;

  font-size: 15px;
  line-height: 1.8;
}

.pre-footer-features {
  max-width: 760px;

  display: grid;
  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 16px;

  margin:
    0 auto
    34px;
}

.pre-footer-features div {
  padding: 18px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.12);

  border:
    1px solid
    rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(10px);
}

.pre-footer-features strong {
  display: block;

  margin-bottom: 6px;

  color: #93c5fd;

  font-size: 23px;
}

.pre-footer-features span {
  font-size: 13px;
  font-weight: 750;
}

.pre-footer-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pre-footer-primary,
.pre-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 49px;
  padding: 0 22px;

  border-radius: 14px;

  color: white;

  text-decoration: none;
  font-size: 14px;
  font-weight: 850;

  transition: 0.25s ease;
}

.pre-footer-primary {
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #0ea5e9
    );
}

.pre-footer-secondary {
  background:
    rgba(255, 255, 255, 0.12);

  border:
    1px solid
    rgba(255, 255, 255, 0.32);
}

.pre-footer-primary:hover,
.pre-footer-secondary:hover {
  transform: translateY(-3px);
}


/* =====================================
   FOOTER
===================================== */

.footer {
  padding: 72px 8%;

  color: white;
  text-align: center;

  background:
    linear-gradient(
      rgba(2, 6, 23, 0.82),
      rgba(2, 6, 23, 0.92)
    ),
    url("/assets/images/bg-vietnam-1.jpg");

  background-size: cover;
  background-position: center;
}

.footer-content {
  max-width: 720px;
  margin: 0 auto;
}

.footer-content h2 {
  margin:
    0 0
    14px;

  font-size: 30px;
}

.footer-content p {
  margin:
    0 auto
    22px;

  color: #e2e8f0;

  font-size: 14px;
  line-height: 1.75;
}

.footer-content > span {
  color: #94a3b8;
  font-size: 13px;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  margin:
    24px auto
    0;

  padding: 11px 19px;

  border-radius: 999px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #0ea5e9
    );

  text-decoration: none;
  font-size: 13px;
  font-weight: 850;

  transition: 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1180px) {
  .navbar {
    gap: 18px;
    padding:
      14px
      3%;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-search:hover,
  .nav-search:focus-within {
    width: 235px;
  }

  .nav-search:hover input,
  .nav-search:focus-within input {
    width: 175px;
  }
}


@media (max-width: 980px) {
  .navbar {
    position: relative;

    flex-wrap: wrap;

    padding:
      16px
      24px;

    background: #020617;
  }

  .logo {
    margin-right: auto;
  }

  .nav-links {
    order: 3;

    width: 100%;

    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-dropdown-panel {
    left: auto;
    right: 0;

    transform:
      translateX(0)
      translateY(10px);
  }

  .nav-dropdown:hover
  .nav-dropdown-panel,
  .nav-dropdown:focus-within
  .nav-dropdown-panel {
    transform:
      translateX(0)
      translateY(0);
  }

  .dropdown-card::before {
    left: auto;
    right: 40px;
  }

  .hero {
    min-height: 86vh;
  }

  .feature-showcase,
  .promotion-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    display: grid;
    grid-template-columns:
      minmax(250px, 0.9fr)
      minmax(0, 1fr);
  }

  .showcase-image {
    height: 100%;
    min-height: 310px;
  }

  .showcase-content > p {
    min-height: 0;
  }

  .promotion-heading {
    grid-template-columns: 1fr;
  }

  .promotion-card {
    min-height: 330px;
  }
}


@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    margin: 0;
    text-align: center;
  }

  .nav-actions {
    width: 100%;

    justify-content: center;
    margin: 0;
  }

  .nav-search {
    width: 48px;
  }

  .nav-search:hover,
  .nav-search:focus-within {
    width: min(100%, 330px);
  }

  .nav-search:hover input,
  .nav-search:focus-within input {
    width: calc(100% - 48px);
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links > a,
  .nav-dropdown-trigger {
    font-size: 13px;
  }

  .nav-dropdown-panel {
    position: fixed;

    top: 155px;
    left: 18px;
    right: 18px;

    width: auto;

    transform:
      translateY(10px);
  }

  .nav-dropdown:hover
  .nav-dropdown-panel,
  .nav-dropdown:focus-within
  .nav-dropdown-panel {
    transform:
      translateY(0);
  }

  .dropdown-card::before {
    display: none;
  }

  .hero {
    min-height: 72vh;
  }

  .intro-section,
  .promotion-section,
  .section,
  .pre-footer {
    padding:
      68px
      22px;
  }

  .intro-content > h1 {
    font-size: 36px;
  }

  .intro-description {
    font-size: 15px;
  }

  .showcase-card {
    display: block;
  }

  .showcase-image {
    height: 220px;
    min-height: 0;
  }

  .promotion-heading h2 {
    font-size: 34px;
  }

  .pre-footer-card {
    padding:
      38px
      22px;

    border-radius: 26px;
  }

  .pre-footer-features {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .login-btn {
    padding:
      0 13px;

    font-size: 12px;
  }

  .nav-links {
    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 5px;

    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links > a,
  .nav-dropdown {
    flex-shrink: 0;
  }

  .hero {
    min-height: 64vh;
  }

  .intro-content > h1 {
    font-size: 31px;
  }

  .showcase-content {
    padding: 22px;
  }

  .promotion-card {
    min-height: 360px;
  }

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

  .card-actions {
    flex-direction: column;
  }

  .small-btn {
    width: 100%;
  }
}