:root {
  --bg-page: #081016;
  --bg-section: #0c131b;
  --bg-card: #141f29;
  --bg-card-2: #18222d;
  --bg-soft: #101922;
  --text-main: #f4f6f8;
  --text-muted: rgba(255, 255, 255, 0.64);
  --text-soft: rgba(255, 255, 255, 0.54);
  --accent: #e1ff00;
  --accent-green: #0E7A35;
  --ring: rgba(225, 255, 0, 0.45);
  --border-soft: rgba(255, 255, 255, 0.05);
  --shadow-1: 0 18px 34px rgba(0, 0, 0, 0.12);
  --shadow-2: 0 24px 46px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

a {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.page-shell {
  background: linear-gradient(180deg, #081016 0%, #0b131b 26%, #091118 100%);
}

/* Inner Page Navbar Section */
.navbar-section {
  position: relative;
  background: rgba(8, 16, 22, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 999;
  padding: 0.8rem 0;
}

.navbar-section .hero-shell {
  padding: 0 1rem;
}

.navbar-section .hero-nav {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-section .brand-mark {
  font-size: 1.35rem;
  white-space: nowrap;
}

.navbar-section .hero-menu {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  align-items: center;
}

.navbar-section .hero-menu .nav-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.navbar-section .hero-menu .nav-link:hover,
.navbar-section .hero-menu .nav-link.active {
  color: var(--accent);
}

.navbar-section .btn-book {
  font-size: 0.6rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(21, 154, 57, 0.18);
}

.navbar-section .navbar-toggler {
  margin-right: -0.5rem;
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
  .navbar-section {
    padding: 0.6rem 0;
  }

  .navbar-section .brand-mark {
    font-size: 1.2rem;
  }

  .navbar-section .collapse.show {
    margin-top: 1rem;
  }
}

/* Tour Hero Section */
.tour-hero-section {
  padding: 1.8rem 0 3.2rem;
  background: var(--bg-page);
  position: relative;
}

.tour-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 250px;
  display: flex;
  align-items: center;
  /* background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.32) 0%, rgba(8, 16, 22, 0.42) 54%, rgba(8, 16, 22, 0.18) 100%),
    url("../images/tour-top-bg.png") center center / cover no-repeat; */
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.2);
}

.tour-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.05) 0%, rgba(8, 16, 22, 0.16) 100%),
    radial-gradient(circle at 18% 22%, rgba(225, 255, 0, 0.06) 0%, transparent 22%);
  pointer-events: none;
  z-index: 1;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 22, 0.22) 0%, rgba(8, 16, 22, 0.2) 48%, rgba(8, 16, 22, 0.12) 100%);
  z-index: 0;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
  padding: 1.9rem 3rem;
  margin-left: 0.5rem;
}

.tour-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-hero-title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 0.96;
  font-weight: 800;
  
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  max-width: 640px;
}

.tour-hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.86rem, 1.5vw, 0.98rem);
  line-height: 1.55;
  font-weight: 400;
  max-width: 600px;
}

/* Tour Escape Grid */
.tour-escapes-section {
  padding: 0 0 4rem;
}

.tour-escapes-section::before {
  display: none;
}

/* About Hero Section */
.about-hero-section {
  padding: 1.8rem 0 3.2rem;
  background: var(--bg-page);
  position: relative;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 295px;
  display: flex;
  align-items: center;
  /* background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.16) 0%, rgba(8, 16, 22, 0.34) 44%, rgba(8, 16, 22, 0.42) 100%),
    url("../images/banner-bg.png") center center / cover no-repeat; */
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.2);
}

.about-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.04) 0%, rgba(8, 16, 22, 0.18) 100%),
    radial-gradient(circle at 20% 20%, rgba(225, 255, 0, 0.08) 0%, transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 22, 0.28) 0%, rgba(8, 16, 22, 0.18) 52%, rgba(8, 16, 22, 0.12) 100%);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
  padding: 1.2rem 1.65rem;
  margin-left: 0.55rem;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 800;
  text-wrap: balance;
  max-width: 650px;
}

.about-hero-subtitle {
  margin: 0;
  max-width: 630px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.45vw, 1.02rem);
  line-height: 1.65;
  font-weight: 400;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 26, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.72rem;
  font-weight: 600;
}

/* About Story Section */
.about-story-section {
  padding: 0 0 4rem;
  background: var(--bg-page);
}

.about-story-shell {
  max-width: 1240px;
}

.about-story-card,
.about-stat-card {
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.about-story-card {
  padding: 1.35rem 1.4rem 1.4rem;
}

.about-story-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-story-title {
  margin: 0 0 0.85rem;
  color: #f7f9fb;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
  max-width: 520px;
}

.about-story-copy {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.75;
  max-width: 540px;
}

.about-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.btn-about-primary,
.btn-about-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 0;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-about-primary {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 154, 57, 0.24);
}

.btn-about-secondary {
  background: #263248;
  color: #fff;
}

.btn-about-primary:hover,
.btn-about-primary:focus-visible {
  background: #1aa743;
  color: #fff;
}

.btn-about-secondary:hover,
.btn-about-secondary:focus-visible {
  background: #314059;
  color: #fff;
}

.about-stats-stack {
  display: grid;
  gap: 0.75rem;
}

.about-stat-card {
  min-height: 92px;
  padding: 1rem 1.1rem;
}

.about-stat-card h3 {
  margin: 0 0 1.1rem;
  color: #f7f9fb;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
  font-weight: 800;
}

.about-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.6;
  max-width: 340px;
}

/* About Principles Section */
.about-principles-section {
  padding: 0 0 4.6rem;
  background: var(--bg-page);
}

.about-principles-shell {
  max-width: 1240px;
}

.about-principles-heading {
  margin-bottom: 2.2rem;
}

.about-principles-subtitle {
  margin: 0.35rem auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-principle-card {
  min-height: 200px;
  padding: 1.25rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.about-principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(18, 26, 38, 0.94);
  color: var(--accent-green);
}

.about-principle-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-principle-card h3 {
  margin: 0 0 0.65rem;
  color: #f7f9fb;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
}

.about-principle-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  line-height: 1.7;
}

/* About Team Section */
.about-team-section {
  padding: 0 0 4.8rem;
  background: var(--bg-page);
}

.about-team-shell {
  max-width: 1240px;
}

.about-team-heading {
  margin-bottom: 2.1rem;
}

.about-team-subtitle {
  margin: 0.35rem auto 0;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  line-height: 1.6;
}

.about-team-card {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.about-team-media {
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
}

.about-team-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-team-body {
  padding: 1rem 1rem 1.05rem;
}

.about-team-role {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-team-body h3 {
  margin: 0 0 0.5rem;
  color: #f7f9fb;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 800;
}

.about-team-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  line-height: 1.7;
}

/* About Journey Section */
.about-journey-section {
  padding: 0 0 4.8rem;
  background: var(--bg-page);
}

.about-journey-shell {
  max-width: 1240px;
}

.about-journey-heading {
  margin-bottom: 2rem;
}

.about-journey-image-card {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.about-journey-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.about-journey-timeline {
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.about-journey-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.8rem;
  border-radius: 12px;
  background: #151f2d;
}

.about-journey-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  background: rgba(18, 26, 38, 0.96);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-journey-copy h3 {
  margin: 0 0 0.3rem;
  color: #f7f9fb;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 700;
}

.about-journey-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.7;
}

/* About CTA Section */
.about-cta-section {
  padding: 0 0 4.2rem;
  background: #081016;
}

.about-cta-shell {
  max-width: 1240px;
}

.about-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 215px;
  border-radius: 22px;
  background: url("../images/about-background.png") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.38);
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 24, 0.22) 0%, rgba(5, 15, 24, 0.56) 100%);
}

.about-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 215px;
  padding: 1.4rem 1.5rem;
  text-align: center;
}

.about-cta-title {
  margin: 0 0 0.65rem;
  max-width: 780px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  
}

.about-cta-copy {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.7;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn-about-cta-primary,
.btn-about-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 0;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-about-cta-primary {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 154, 57, 0.24);
}

.btn-about-cta-secondary {
  background: #263248;
  color: #fff;
}

.btn-about-cta-primary:hover,
.btn-about-cta-primary:focus-visible {
  background: #1aa743;
  color: #fff;
}

.btn-about-cta-secondary:hover,
.btn-about-cta-secondary:focus-visible {
  background: #314059;
  color: #fff;
}

/* Contact Hero Section */
.contact-hero-section {
  padding: 1.8rem 0 3.2rem;
  background: var(--bg-page);
  position: relative;
}

.contact-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 150px;
  display: flex;
  align-items: center;
  /* background:
    linear-gradient(90deg, rgba(8, 16, 22, 0.28) 0%, rgba(8, 16, 22, 0.38) 54%, rgba(8, 16, 22, 0.16) 100%),
    url("../images/tour-top-bg.png") center center / cover no-repeat; */
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.2);
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.05) 0%, rgba(8, 16, 22, 0.16) 100%),
    radial-gradient(circle at 18% 22%, rgba(225, 255, 0, 0.06) 0%, transparent 22%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 22, 0.22) 0%, rgba(8, 16, 22, 0.2) 48%, rgba(8, 16, 22, 0.12) 100%);
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
  padding: 1.1rem 1.6rem;
  margin-left: 0.55rem;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-hero-title {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.95;
  font-weight: 800;
  
  text-wrap: balance;
  max-width: 610px;
}

.contact-hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.72rem, 1.25vw, 0.82rem);
  line-height: 1.45;
  font-weight: 400;
  max-width: 610px;
}

/* Contact Touch Section */
.contact-touch-section {
  padding: 0 0 4rem;
  background: var(--bg-page);
}

.contact-touch-shell {
  max-width: 980px;
}

.contact-touch-card,
.contact-form-card,
.contact-benefit-card {
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.contact-touch-card {
  padding: 1.35rem 1.5rem 1.45rem;
  text-align: center;
}

.contact-touch-kicker,
.contact-form-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-touch-title,
.contact-form-title {
  margin: 0.45rem auto 0.65rem;
  color: #f7f9fb;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
  font-weight: 800;
  max-width: 690px;
}

.contact-touch-copy,
.contact-form-copy {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  line-height: 1.65;
}

.contact-touch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-touch-item {
  padding: 0.95rem 0.9rem;
  border-radius: 12px;
  background: #151f2d;
  text-align: left;
}

.contact-touch-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-touch-item strong {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-form-card {
  margin-top: 1rem;
  padding: 1.35rem 1.5rem 1.4rem;
  text-align: center;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #151f2d;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #f7f9fb;
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  font-size: 0.75rem;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-input:focus,
.contact-textarea:focus {
  background: #182131;
  border-color: rgba(225, 255, 0, 0.18);
  box-shadow: none;
  color: #fff;
}

.contact-textarea {
  grid-column: 1 / -1;
  min-height: 110px;
  resize: vertical;
}

.btn-contact-send {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 150px;
  min-height: 40px;
  padding: 0.7rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent-green);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(21, 154, 57, 0.24);
}

.btn-contact-send:hover,
.btn-contact-send:focus-visible {
  background: #1aa743;
  color: #fff;
}

.contact-form-note {
  margin: 0.8rem auto 0;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  line-height: 1.55;
}

.contact-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-benefit-card {
  padding: 0.95rem 0.95rem 1rem;
}

.contact-benefit-card h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.25;
  font-weight: 700;
}

.contact-benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  line-height: 1.65;
}

/* Itinerary Section */
.itinerary-section {
  padding: 1.8rem 0 4.2rem;
  background: var(--bg-page);
}

.itinerary-shell {
  max-width: 1240px;
}

.itinerary-panel,
.itinerary-day-card,
.itinerary-side-card {
  background: linear-gradient(180deg, rgba(17, 25, 36, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.itinerary-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.itinerary-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}

.itinerary-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.itinerary-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.16) 0%, rgba(8, 14, 22, 0.36) 62%, rgba(8, 14, 22, 0.58) 100%),
    linear-gradient(90deg, rgba(8, 14, 22, 0.22) 0%, rgba(8, 14, 22, 0.08) 45%, rgba(8, 14, 22, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.itinerary-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.45rem 1.55rem 1.35rem;
  max-width: 86%;
}

.itinerary-hero-pill {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.itinerary-hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.95rem);
  line-height: 0.95;
  font-weight: 800;
  
  text-wrap: balance;
}

.itinerary-hero-copy {
  margin: 0.7rem 0 0;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.73rem;
  line-height: 1.6;
}

.itinerary-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.btn-itinerary-reserve,
.btn-itinerary-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 0;
}

.btn-itinerary-reserve {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 154, 57, 0.24);
}

.btn-itinerary-download {
  background: #263248;
  color: #fff;
}

.btn-itinerary-reserve:hover,
.btn-itinerary-reserve:focus-visible {
  background: #1aa743;
  color: #fff;
}

.btn-itinerary-download:hover,
.btn-itinerary-download:focus-visible {
  background: #314059;
  color: #fff;
}

.itinerary-snapshot {
  padding: 1.15rem 1.2rem 1.1rem;
}

.itinerary-eyebrow,
.itinerary-side-kicker {
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.itinerary-title {
  margin: 0.3rem 0 1rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
  font-weight: 700;
}

.snapshot-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.snapshot-item {
  padding: 0.8rem 0.85rem;
  border-radius: 12px;
  background: #151f2d;
}

.snapshot-label {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
}

.snapshot-value {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.snapshot-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.7;
}

.itinerary-layout {
  align-items: flex-start;
}

.itinerary-days {
  display: grid;
  gap: 0.95rem;
}

.itinerary-day-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 124px;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
}

.itinerary-day-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  border-radius: 14px;
  background: #152031;
  color: var(--accent);
  text-align: center;
}

.itinerary-day-pill span {
  font-size: 0.82rem;
  font-weight: 800;
}

.itinerary-day-pill small {
  margin-top: 0.2rem;
  color: rgba(225, 255, 0, 0.72);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
}

.itinerary-day-copy h3 {
  margin: 0 0 0.35rem;
  color: #f6f8fa;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
}

.itinerary-day-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.7;
}

.itinerary-day-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1.3 / 1;
}

.itinerary-day-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.itinerary-side-stack {
  display: grid;
  gap: 0.95rem;
  position: sticky;
  top: 1rem;
}

.itinerary-side-card {
  padding: 1rem 1rem 1.05rem;
}

.itinerary-side-title {
  margin: 0.3rem 0 0.85rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.itinerary-list {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  line-height: 1.8;
}

.itinerary-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.itinerary-thumb-grid img {
  width: 100%;
  aspect-ratio: 1.2 / 0.86;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.btn-itinerary-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  min-height: 42px;
  border-radius: 999px;
  background: var(--accent-green);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(21, 154, 57, 0.24);
}

.btn-itinerary-enquire:hover,
.btn-itinerary-enquire:focus-visible {
  background: #1aa743;
  color: #fff;
}

/* Responsive adjustments for tour hero */
@media (max-width: 768px) {
  .tour-hero-section {
    padding: 1.25rem 0 2.5rem;
  }

  .tour-hero-card {
    min-height: 320px;
    border-radius: 20px;
  }

  .tour-hero-content {
    padding: 2rem 1.7rem;
    margin-left: 0;
  }

  .tour-hero-title {
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 480px) {
  .tour-hero-section {
    padding: 1rem 0 2rem;
  }

  .tour-hero-card {
    min-height: 280px;
    border-radius: 16px;
  }

  .tour-hero-content {
    padding: 1.55rem 1.3rem;
  }

  .tour-kicker {
    font-size: 0.7rem;
    margin-bottom: 0.55rem;
  }

  .tour-hero-title {
    font-size: clamp(1.9rem, 11vw, 2.55rem);
    line-height: 1;
  }

  .tour-hero-subtitle {
    font-size: 0.8rem;
  }

  .tour-escapes-section {
    padding: 0 0 3.25rem;
  }

  .about-hero-section {
    padding: 1.25rem 0 2.5rem;
  }

  .about-hero-card {
    min-height: 250px;
    border-radius: 20px;
  }

  .about-hero-content {
    padding: 1.05rem 1.25rem;
    margin-left: 0;
  }

  .about-hero-title {
    font-size: clamp(2rem, 8vw, 2.9rem);
  }

  .about-hero-subtitle {
    font-size: 0.86rem;
  }

  .about-story-section {
    padding: 0 0 3.2rem;
  }

  .about-story-card {
    padding: 1.15rem 1.2rem 1.2rem;
  }

  .about-story-title {
    font-size: clamp(1.65rem, 5vw, 2.3rem);
  }

  .about-story-copy {
    font-size: 0.76rem;
  }

  .about-stat-card {
    min-height: 86px;
  }

  .contact-hero-section {
    padding: 1.25rem 0 2.5rem;
  }

  .contact-hero-card {
    min-height: 135px;
    border-radius: 20px;
  }

  .contact-hero-content {
    padding: 1rem 1.25rem;
    margin-left: 0;
  }

  .contact-kicker {
    font-size: 0.62rem;
    margin-bottom: 0.35rem;
  }

  .contact-hero-title {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .contact-hero-subtitle {
    font-size: 0.68rem;
  }

  .about-story-section {
    padding: 0 0 2.8rem;
  }

  .about-story-card {
    padding: 1rem 1.05rem 1.05rem;
  }

  .about-story-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }

  .about-story-copy {
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .about-story-actions {
    gap: 0.5rem;
  }

  .btn-about-primary,
  .btn-about-secondary {
    min-height: 36px;
    padding: 0.6rem 0.95rem;
    font-size: 0.6rem;
  }

  .about-stat-card {
    padding: 0.9rem 1rem;
  }

  .about-stat-card h3 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    margin-bottom: 0.8rem;
  }

  .about-stat-card p {
    font-size: 0.68rem;
  }

  .about-principles-section {
    padding: 0 0 3.5rem;
  }

  .about-principles-heading {
    margin-bottom: 1.8rem;
  }

  .about-principles-subtitle {
    font-size: 0.8rem;
  }

  .about-principle-card {
    min-height: 180px;
    padding: 1.1rem 1.1rem 1.05rem;
  }

  .about-principle-card h3 {
    font-size: 0.98rem;
  }

  .about-principle-card p {
    font-size: 0.72rem;
  }

  .about-team-section {
    padding: 0 0 3.5rem;
  }

  .about-team-heading {
    margin-bottom: 1.8rem;
  }

  .about-team-subtitle {
    font-size: 0.8rem;
  }

  .about-team-body {
    padding: 0.95rem 0.95rem 1rem;
  }

  .about-team-body p {
    font-size: 0.7rem;
  }

  .about-journey-section {
    padding: 0 0 3.5rem;
  }

  .about-journey-heading {
    margin-bottom: 1.7rem;
  }

  .about-journey-image-card img {
    aspect-ratio: 1.35 / 1;
  }

  .about-journey-timeline {
    padding: 0.95rem;
  }

  .about-journey-item {
    padding: 0.75rem;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .about-journey-year {
    min-height: 48px;
    font-size: 0.66rem;
  }

  .about-journey-copy h3 {
    font-size: 0.94rem;
  }

  .about-journey-copy p {
    font-size: 0.68rem;
  }

  .about-cta-section {
    padding: 0 0 3.4rem;
  }

  .about-cta-card {
    min-height: 190px;
    border-radius: 20px;
  }

  .about-cta-content {
    min-height: 190px;
    padding: 1.2rem 1.2rem;
  }

  .about-cta-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .about-cta-copy {
    font-size: 0.74rem;
  }

  .about-cta-actions {
    gap: 0.5rem;
  }

  .btn-about-cta-primary,
  .btn-about-cta-secondary {
    min-height: 36px;
    padding: 0.55rem 0.9rem;
  }

  .contact-touch-section {
    padding: 0 0 3.2rem;
  }

  .contact-touch-card,
  .contact-form-card {
    padding: 1.1rem 1.15rem 1.15rem;
  }

  .contact-touch-grid,
  .contact-benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .btn-contact-send {
    min-width: 100%;
  }

  .itinerary-section {
    padding: 1.4rem 0 3.5rem;
  }

  .itinerary-hero-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-hero-media {
    min-height: 260px;
  }

  .itinerary-hero-content {
    max-width: 100%;
    padding: 1.25rem 1.2rem 1.15rem;
  }

  .itinerary-hero-copy {
    max-width: 100%;
  }

  .itinerary-hero-actions {
    gap: 0.5rem;
  }

  .btn-itinerary-reserve,
  .btn-itinerary-download {
    min-height: 36px;
    padding: 0.55rem 0.9rem;
  }

  .snapshot-matrix {
    grid-template-columns: 1fr;
  }

  .itinerary-day-card {
    grid-template-columns: 1fr;
  }

  .itinerary-day-pill {
    min-height: 58px;
    width: 100%;
    flex-direction: row;
    gap: 0.35rem;
  }

  .itinerary-day-media {
    aspect-ratio: 1.55 / 0.9;
  }

  .itinerary-side-stack {
    position: static;
  }

  .itinerary-hero-title {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: var(--text-main);
  background-color: #12222e;
  background-position: center 18%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center 36%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(8, 16, 22, 0.08) 0%, rgba(8, 16, 22, 0) 42%, rgba(8, 16, 22, 0.28) 100%);
  pointer-events: none;
}

.hero-nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-shell,
.why-choose-shell,
.highlights-shell,
.curated-shell,
.packages-shell,
.testimonials-shell,
.gallery-shell {
  max-width: 1240px;
}

.hero-nav {
  padding-top: 1.3rem;
}

.brand-mark {
  font-size: 1.55rem;
  font-weight: 700;
  color: #f9fafb;
}

.hero-menu .nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.35rem 1.15rem;
  transition: color 0.2s ease;
}

.hero-menu .nav-link.active,
.hero-menu .nav-link:hover,
.hero-menu .nav-link:focus-visible {
  color: var(--accent);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-book,
.btn-escape,
.btn-curated,
.btn-journey {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-book {
  background: var(--accent-green);
  color: #fff;
  font-size: 0.62rem;
  padding: 0.92rem 1.45rem;
  border: 1.5px solid transparent;
  box-shadow: 0 10px 24px rgba(21, 154, 57, 0.22);
}

.btn-nav-login {
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.92rem 1.45rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
button.btn-nav-login { cursor: pointer; }
.btn-nav-login:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(225, 255, 0, 0.06);
}

.btn-escape {
  background: var(--accent);
  color: #101010;
  font-size: 0.84rem;
  padding: 1.05rem 1.7rem;
  box-shadow: 0 14px 34px rgba(225, 255, 0, 0.2);
}

.btn-curated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.9rem 1.8rem;
  background: var(--accent-green);
  color: #fff;
  font-size: 0.68rem;
  box-shadow: 0 10px 24px rgba(21, 154, 57, 0.22);
}

.btn-journey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2.2rem;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.9rem;
  box-shadow: 0 16px 32px rgba(225, 255, 0, 0.2);
}

.btn-book:hover,
.btn-book:focus-visible,
.btn-escape:hover,
.btn-escape:focus-visible,
.btn-curated:hover,
.btn-curated:focus-visible,
.btn-journey:hover,
.btn-journey:focus-visible {
  transform: translateY(-2px);
}

.btn-book:hover,
.btn-book:focus-visible,
.btn-curated:hover,
.btn-curated:focus-visible {
  background: #1aa841;
  color: #fff;
}

.btn-escape:hover,
.btn-escape:focus-visible,
.btn-journey:hover,
.btn-journey:focus-visible {
  background: #f9ff56;
  color: #0a0a0a;
}

/* Booking Modal */
.booking-modal .modal-dialog {
  max-width: 760px;
}

.booking-modal-content {
  background: linear-gradient(180deg, rgba(14, 21, 31, 0.98), rgba(11, 17, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.booking-modal-header {
  padding: 1.4rem 1.5rem 0.5rem;
  align-items: flex-start;
}

.booking-modal-kicker {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-modal-title {
  margin: 0;
  color: #f7f9fb;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
  font-weight: 800;
}

.booking-modal-body {
  padding: 0.5rem 1.5rem 1.5rem;
}

.booking-modal-copy {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.65;
}

.booking-form {
  display: block;
}

.booking-input,
.booking-textarea {
  width: 100%;
  background: #151f2d;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #f7f9fb;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font-size: 0.76rem;
}

.booking-input::placeholder,
.booking-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.booking-input:focus,
.booking-textarea:focus {
  background: #182131;
  border-color: rgba(225, 255, 0, 0.18);
  box-shadow: none;
  color: #fff;
}

.booking-textarea {
  min-height: 118px;
  resize: vertical;
}

.booking-form-note {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  line-height: 1.5;
  max-width: 390px;
}

.btn-booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent-green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(21, 154, 57, 0.24);
}

.btn-booking-submit:hover,
.btn-booking-submit:focus-visible {
  background: #1aa743;
  color: #fff;
}

.booking-modal .btn-close {
  opacity: 1;
}

.booking-modal .btn-close:focus {
  box-shadow: none;
}

.profile-update-modal .modal-dialog {
  max-width: 620px;
}

.profile-update-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.profile-update-option {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
}

.profile-update-option.active {
  color: #081016;
  background: var(--accent);
  border-color: var(--accent);
}

.profile-update-content {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.profile-update-submit {
  width: fit-content;
  margin-top: 0.45rem;
}

.profile-address-input {
  min-height: 118px;
  resize: vertical;
}

.hero-content {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 0 5.5rem;
}

.hero-copy {
  max-width: 690px;
  margin-top: -2.8rem;
}

.hero-title {
  max-width: 620px;
  margin: 0 auto 1.45rem;
  font-size: clamp(3rem, 6vw, 4.7rem);
  line-height: 0.92;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  max-width: 550px;
  margin: 0 auto 2.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  line-height: 1.7;
  font-weight: 500;
}

.section-heading {
  margin-bottom: 3.2rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  font-weight: 700;
}

.why-choose-section {
  background: #101922;
  padding: 5.4rem 0 6rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 1.45rem 1.2rem 1.3rem;
  background: #141f29;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: #07a535;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  margin: 0 0 0.75rem;
  color: #f5f7f9;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
}

.feature-text {
  max-width: 220px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.7;
  font-weight: 500;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(225, 255, 0, 0.1);
  box-shadow: var(--shadow-2);
}

.highlights-section,
.packages-section,
.testimonials-section,
.gallery-section {
  position: relative;
}

.highlights-section {
  background: transparent;
  padding: 5.8rem 0 6.3rem;
}

.highlights-shell {
  max-width: 1240px;
}

.section-heading-left {
  text-align: left;
  margin-bottom: 2.3rem;
}

.section-accent-line {
  display: block;
  width: 46px;
  height: 4px;
  margin-top: 0.95rem;
  border-radius: 999px;
  background: var(--accent);
}

.escape-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--bg-card-2);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.escape-media {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
}

.escape-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.escape-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 22px;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: capitalize;
}

.escape-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
}
.escape-badge-wrap .escape-badge {
  position: static;
  white-space: nowrap;
}

.escape-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0.9rem 0.9rem 0.8rem;
}

.escape-title {
  margin: 0 0 0.7rem;
  color: #f2f5f7;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
}

.escape-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 36px;
  border-radius: 999px;
  background: #1d2835;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.escape-link:hover,
.escape-link:focus-visible {
  background: #243243;
  color: #fff;
  transform: translateY(-1px);
}

.escape-card:hover,
.escape-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(225, 255, 0, 0.1);
  box-shadow: var(--shadow-2);
}

.curated-stays-section {
  background: transparent;
  padding: 0 0 6.5rem;
}

.curated-copy {
  padding: 1rem 0 0;
}

.curated-title {
  max-width: 470px;
  margin: 0 0 1.35rem;
  color: #f4f6f8;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
}

.curated-text {
  margin: 0 0 1.45rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 500;
}

.special-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
  padding: 0.8rem 1rem 0.8rem 0.8rem;
  border-radius: 14px;
  background: #13202b;
  border: 1px solid var(--border-soft);
}

.special-chip-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.special-chip-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.special-chip-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.special-chip-copy strong {
  color: #f4f6f8;
  font-size: 0.74rem;
  font-weight: 700;
}

.special-chip-copy small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
  font-weight: 500;
}

.villa-hero-card {
  overflow: hidden;
  min-height: 430px;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.villa-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 138px;
  border-radius: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-card img,
.offer-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer-card img {
  object-fit: cover;
}

.offer-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.5) 100%);
}

.offer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 4rem 3rem;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 20px;
  margin-bottom: 0.75rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: #6e2b3a;
  color: #fff;
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-title {
  max-width: 405px;
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  line-height: 1.45;
  font-weight: 500;
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.packages-section {
  background: #0c131b;
  padding: 5rem 0;
}

.packages-heading {
  margin-bottom: 2.7rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.95rem;
  background: linear-gradient(180deg, rgba(16, 26, 36, 0.96), rgba(18, 29, 42, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(225, 255, 0, 0.1);
  box-shadow: var(--shadow-2);
}

.package-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1.2 / 0.9;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-body {
  padding: 0.9rem 0.55rem 0.35rem;
}

.package-title {
  margin: 0 0 0.35rem;
  color: #f4f6f8;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.package-duration {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonials-section {
  background: linear-gradient(180deg, #09101a 0%, #0d1720 100%);
  padding: 5rem 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: 2rem 1.9rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonial-card--sky {
  background: linear-gradient(180deg, rgba(9, 26, 47, 0.96), rgba(18, 51, 73, 0.96));
}

.testimonial-card--burgundy {
  background: linear-gradient(180deg, rgba(54, 28, 40, 0.96), rgba(41, 29, 48, 0.96));
}

.testimonial-card--forest {
  background: linear-gradient(180deg, rgba(20, 36, 31, 0.96), rgba(22, 38, 49, 0.96));
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(225, 255, 0, 0.15);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.26);
}

.testimonial-quote {
  margin: 0;
  color: #f4f6f8;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
}

.testimonial-author {
  margin-top: 1.7rem;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.testimonial-meta {
  text-align: left;
}

.testimonial-name {
  margin: 0 0 0.2rem;
  color: #f4f6f8;
  font-size: 0.94rem;
  font-weight: 700;
}

.testimonial-location {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
}

.gallery-section {
  background: linear-gradient(180deg, #0b121b 0%, #09101a 100%);
  padding: 5rem 0;
}

.gallery-shell {
  max-width: 1180px;
}

.gallery-shell .section-heading {
  margin-bottom: 3rem;
}

.gallery-subtitle {
  margin: 0.45rem auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-grid {
  align-items: stretch;
}

.gallery-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(225, 255, 0, 0.12);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
}

.cta-section {
  background: #081016;
  padding: 5rem 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 3.5rem 3rem;
  /* background: url("../images/overlay_background.png") center / cover no-repeat; */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.38);
  color: var(--text-main);
  background-color: #12222e;
  background-position: center 18%;
  
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 88, 146, 0.08), rgba(5, 31, 52, 0.3));
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1rem 0;
}

.cta-inner .section-kicker {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.cta-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3rem);
  max-width: 590px;
  line-height: 1.08;
  font-weight: 800;
  position: relative;
  z-index: 1;
  margin: 0 0 1.2rem;
}

.cta-copy {
  margin: 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.92;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* New inner pages */
.inner-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.inner-hero-section {
  padding: 1.8rem 0 3.2rem;
  background: var(--bg-page);
}

.inner-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.2);
}

.inner-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 16, 22, 0.46) 0%, rgba(8, 16, 22, 0.24) 56%, rgba(8, 16, 22, 0.16) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 2rem 3rem;
}

.inner-hero-content h1 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
}

.inner-hero-content p {
  margin: 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* .gallery-page-hero {
  background: url("../images/mountain-retreat.png") center / cover no-repeat;
} */

/* .faq-page-hero {
  background: url("../images/tour-top-bg.png") center / cover no-repeat;
} */

.gallery-page-section,
.faq-section,
.account-section,
.profile-section {
  padding: 0 0 5rem;
  background: linear-gradient(180deg, #081016 0%, #0b131b 100%);
}

.gallery-page-section .gallery-card img {
  aspect-ratio: 1.08 / 0.82;
}

.gallery-lightbox-trigger {
  position: relative;
  width: 100%;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.gallery-lightbox-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 16, 22, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.gallery-lightbox-trigger span {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gallery-lightbox-trigger:hover::before,
.gallery-lightbox-trigger:focus-visible::before,
.gallery-lightbox-trigger:hover span,
.gallery-lightbox-trigger:focus-visible span {
  opacity: 1;
}

.gallery-lightbox-trigger:hover span,
.gallery-lightbox-trigger:focus-visible span {
  transform: translateY(0);
}

.gallery-lightbox .modal-dialog {
  max-width: min(1120px, calc(100% - 2rem));
}

.gallery-lightbox-content {
  position: relative;
  overflow: hidden;
  background: #081016;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-content img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #05090d;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  padding: 0.7rem;
  background-color: rgba(8, 16, 22, 0.72);
  border-radius: 50%;
  opacity: 1;
}

.gallery-lightbox-caption {
  padding: 0.9rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.faq-shell {
  max-width: 940px;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 29, 42, 0.98), rgba(14, 24, 34, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.faq-item .accordion-button {
  background: transparent;
  color: #f4f6f8;
  border: none;
  box-shadow: none;
  padding: 1.25rem 1.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--accent);
}

.faq-item .accordion-button::after {
  filter: invert(1);
  opacity: 0.8;
}

.faq-item .accordion-body {
  padding: 0 1.35rem 1.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.75;
}

.account-shell,
.profile-shell {
  max-width: 1140px;
}

.account-visual-card,
.account-form-card,
.profile-hero-card,
.profile-panel,
.profile-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.account-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.3rem;
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.08) 0%, rgba(8, 16, 22, 0.78) 100%),
    url("../images/kashmir-valleys.png") center / cover no-repeat;
}

/* .login-visual-card {
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.08) 0%, rgba(8, 16, 22, 0.78) 100%),
    url("../images/ladakh-expedition.png") center / cover no-repeat;
} */

.account-visual-card h1 {
  margin: 0 0 0.8rem;
  max-width: 560px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.account-visual-card p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.account-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.account-stat-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
}

.account-stat-row strong {
  color: var(--accent);
}

.account-form-card {
  padding: 2.2rem;
  background: linear-gradient(180deg, rgba(20, 31, 41, 0.98), rgba(15, 25, 35, 0.98));
}

.account-form-card h2,
.profile-panel h2 {
  margin: 0 0 1.35rem;
  color: #f4f6f8;
  font-size: 1.45rem;
  font-weight: 800;
}

.account-form {
  display: grid;
  gap: 0.8rem;
}

.account-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.account-input {
  min-height: 48px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.account-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.account-input:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(225, 255, 0, 0.28);
  box-shadow: 0 0 0 0.18rem rgba(225, 255, 0, 0.08);
}

.account-form-options {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.2rem 0 0.6rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.account-form-options a,
.account-bottom-copy a {
  color: var(--accent);
  font-weight: 700;
}

.account-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.account-check input {
  accent-color: var(--accent-green);
}

.btn-account-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  color: #fff;
  background: var(--accent-green);
  border: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.btn-account-primary:hover,
.btn-account-primary:focus-visible {
  color: #fff;
  background: #11903f;
}

.account-bottom-copy {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  line-height: 1.7;
}

.profile-hero-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.55rem;
  background:
    linear-gradient(90deg, rgba(20, 31, 41, 0.96), rgba(17, 32, 42, 0.9)),
    url("../images/banner-bg.png") center / cover no-repeat;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #081016;
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
}

.profile-hero-card h1 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 800;
}

.profile-hero-card p {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.profile-panel {
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(18, 29, 42, 0.98), rgba(14, 24, 34, 0.98));
}

.profile-bookings-panel {
  display: grid;
  gap: 1rem;
}

.profile-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.profile-panel-heading h2 {
  margin-bottom: 0;
}

.profile-small-action {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.profile-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.profile-list span,
.profile-mini-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-list strong {
  color: #f4f6f8;
  font-size: 0.95rem;
}

.booking-tour-list {
  display: grid;
  gap: 0.9rem;
}

.booking-tour-card {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
}

.booking-tour-card img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-radius: 14px;
}

.booking-tour-info {
  min-width: 0;
}

.booking-tour-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.booking-id {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
}

.booking-tour-card h3 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.booking-tour-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.booking-tour-side {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
  min-width: 118px;
  text-align: right;
}

.booking-tour-side strong {
  color: #fff;
  font-size: 1rem;
}

.booking-tour-side span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-tour-side a {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

/* ═══════════════════════════════════════════════
   Tour Detail Page  (td-*)
   ═══════════════════════════════════════════════ */

/* Hero */
.td-hero-section { padding: 1.2rem 0 0; background: var(--bg-page); }
.td-hero-card {
  position: relative; overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.td-hero-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,16,22,.88) 0%, rgba(8,16,22,.45) 48%, rgba(8,16,22,.18) 100%);
  pointer-events: none;
}
.td-hero-shell { position: relative; z-index: 2; padding: 2rem 1rem 2.4rem; max-width: 1240px; margin: 0 auto; }
.td-hero-content { max-width: 760px; }
.td-hero-title {
  margin: 0.45rem 0 1rem; color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,.4); text-wrap: balance;
}
.td-hero-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.1rem; }
.td-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .32rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92); font-size: .7rem; font-weight: 600;
  backdrop-filter: blur(6px);
}
.td-chip svg { width: 12px; height: 12px; stroke: currentColor; flex-shrink: 0; }
.td-hero-price { margin: 0 0 1.4rem; color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500; }
.td-hero-price strong { color: var(--accent); font-size: 1.6rem; font-weight: 800; margin: 0 .2rem; }
.td-price-type { font-size: .7rem; color: rgba(255,255,255,.55); }
.td-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.td-btn-ghost {
  display: inline-flex; align-items: center; padding: .9rem 1.6rem;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92); font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(4px);
  transition: border-color .2s, color .2s, background .2s;
}
.td-btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(225,255,0,.06); }

/* Quick Stats */
.td-stats-section {
  background: var(--bg-section); padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.td-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.td-stat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.2rem 1rem; background: var(--bg-card);
  border: 1px solid var(--border-soft); border-radius: 14px;
  transition: border-color .2s;
}
.td-stat-card:hover { border-color: rgba(225,255,0,.1); }
.td-stat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(14,122,53,.16); margin-bottom: .6rem; flex-shrink: 0;
}
.td-stat-icon svg { width: 18px; height: 18px; stroke: #4ade80; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.td-stat-label { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-soft); margin-bottom: .3rem; }
.td-stat-value { font-size: .88rem; font-weight: 700; color: var(--text-main); line-height: 1.3; }

/* Content shell */
.td-content-section { padding: 2rem 0; border-top: 1px solid var(--border-soft); }
.td-content-shell { max-width: 1240px; margin: 0 auto; padding: 0 1rem; }
.td-section-heading {
  font-size: 1.15rem; font-weight: 700; color: var(--text-main);
  margin: 0 0 1rem; padding-bottom: .6rem; position: relative;
}

/* Two-column main body */
.td-main-body { padding: 2rem 0 2.5rem; }
.td-block {
  padding-bottom: 1.75rem; margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-soft);
}
.td-block-last { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* Sidebar card */
.td-sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 1.4rem; position: sticky; top: 1.5rem;
}
.td-sb-price-wrap { text-align: center; margin-bottom: .6rem; }
.td-sb-from { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-soft); display: block; }
.td-sb-price { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1.1; margin: .15rem 0; }
.td-sb-price-type { font-size: .68rem; color: var(--text-soft); }
.td-sb-divider { border-color: var(--border-soft); margin: .9rem 0; }
.td-sb-details { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.td-sb-details li {
  display: grid; grid-template-columns: 16px 1fr auto;
  align-items: start; gap: .5rem;
}
.td-sb-details li svg {
  width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px;
  stroke: var(--accent-green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.td-sb-detail-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--text-soft); padding-top: 1px; }
.td-sb-detail-val { font-size: .8rem; font-weight: 600; color: var(--text-main); text-align: right; line-height: 1.35; }
.td-sb-enquiry-btn {
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  padding: .65rem 1rem; border-radius: 999px; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; border: 1.5px solid var(--border-soft);
  color: var(--text-main); background: transparent; transition: border-color .2s, color .2s;
}
.td-sb-enquiry-btn:hover { border-color: var(--accent); color: var(--accent); }
.td-sb-dep-note { font-size: .7rem; color: var(--text-soft); text-align: center; margin: .65rem 0 0; }

/* Gallery Bootstrap Modal */
.tour-image-modal-dialog { max-width: 850px; }
.tour-image-modal-content {
  background: var(--bg-card-2); border: 1px solid var(--border-soft);
  border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.tour-image-modal-close {
  position: absolute; top: .65rem; right: .65rem; z-index: 10;
  width: 2rem; height: 2rem; border-radius: 50%; border: none;
  background: rgba(255,255,255,.13); color: #fff; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s;
}
.tour-image-modal-close:hover { background: rgba(255,255,255,.28); }
.tour-image-modal-body { padding: 0; }
.tour-image-modal-img { width: 100%; max-height: 80vh; object-fit: contain; display: block; background: #000; }
.tour-image-modal-caption {
  padding: .5rem 1rem; font-size: .75rem; color: var(--text-soft); text-align: center;
}
.tour-image-modal-caption:empty { display: none; }
.td-section-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 34px; height: 3px; border-radius: 99px; background: var(--accent);
}

/* Overview */
.td-overview-lead {
  font-size: 1rem; font-weight: 600; color: var(--text-main);
  line-height: 1.7; margin: 0 0 1.1rem;
}
.td-overview-body {
  font-size: .88rem; color: var(--text-muted); line-height: 1.9;
  white-space: pre-line;
}

/* Photo Gallery grid */
.td-pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.td-pg-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--bg-card-2);
  cursor: pointer;
}
.td-pg-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease, opacity .3s ease;
}
.td-pg-cell:hover img { transform: scale(1.06); opacity: .88; }

/* Itinerary */
.td-itin-accordion .accordion-item {
  background: var(--bg-card); border: 1px solid var(--border-soft) !important;
  border-radius: 12px !important; margin-bottom: .55rem; overflow: hidden;
}
.td-itin-accordion .accordion-button {
  background: var(--bg-card); color: var(--text-main);
  font-size: .88rem; font-weight: 700;
  padding: .95rem 1.2rem; box-shadow: none !important;
  border-radius: 12px !important; gap: .5rem;
}
.td-itin-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card-2); color: #fff; border-radius: 12px 12px 0 0 !important;
}
.td-itin-accordion .accordion-button::after { filter: invert(1) brightness(1.5); }
.td-itin-accordion .accordion-body {
  background: var(--bg-card-2); border-top: 1px solid var(--border-soft);
  color: var(--text-muted); font-size: .86rem; line-height: 1.8;
  padding: 1rem 1.2rem 1.25rem; white-space: pre-line;
}
.td-day-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .2rem .7rem; border-radius: 999px;
  background: var(--accent); color: #0a1208;
  font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px;
  flex-shrink: 0;
}
.td-itin-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.td-itin-meta-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--text-soft);
  background: rgba(255,255,255,.04); border: 1px solid var(--border-soft);
  padding: .28rem .75rem; border-radius: 999px;
}
.td-itin-meta-pill svg { width: 11px; height: 11px; stroke: var(--accent-green); fill: none; stroke-width: 2; stroke-linecap: round; }

/* Departures */
.td-dep-grid { display: flex; flex-direction: column; gap: .55rem; }
.td-dep-row {
  display: grid; grid-template-columns: 1fr 1fr auto auto;
  align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: .85rem 1.1rem;
  font-size: .85rem; color: var(--text-main);
}
.td-dep-label { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-soft); margin-bottom: .2rem; }
.td-dep-date { font-weight: 600; color: var(--text-main); }
.td-dep-badge {
  display: inline-flex; align-items: center; padding: .28rem .8rem;
  border-radius: 999px; font-size: .62rem; font-weight: 700; text-transform: uppercase;
  background: rgba(14,122,53,.18); color: #4ade80;
}
.td-dep-seats { font-size: .78rem; color: var(--text-soft); white-space: nowrap; }

/* Inclusions / Exclusions */
.td-ie-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 1.5rem;
}
.td-ie-heading { font-size: .92rem; font-weight: 700; color: var(--text-main); margin: 0 0 1rem; display: flex; align-items: center; gap: .5rem; }
.td-ie-heading svg { width: 18px; height: 18px; flex-shrink: 0; }
.td-ie-list { list-style: none; padding: 0; margin: 0; }
.td-ie-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .5rem 0; border-bottom: 1px solid var(--border-soft);
  font-size: .84rem; color: var(--text-muted); line-height: 1.55;
}
.td-ie-list li:last-child { border-bottom: none; }
.td-ie-icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.td-ie-icon.inc { background: rgba(74,222,128,.15); color: #4ade80; }
.td-ie-icon.exc { background: rgba(248,113,113,.12); color: #f87171; }
.td-ie-icon svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* Terms / Cancellation */
.td-terms-accordion .accordion-item {
  background: var(--bg-card); border: 1px solid var(--border-soft) !important;
  border-radius: 12px !important; margin-bottom: .55rem; overflow: hidden;
}
.td-terms-accordion .accordion-button {
  background: var(--bg-card); color: var(--text-main);
  font-size: .88rem; font-weight: 700; padding: .95rem 1.2rem;
  box-shadow: none !important; border-radius: 12px !important;
}
.td-terms-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card-2); color: var(--accent); border-radius: 12px 12px 0 0 !important;
}
.td-terms-accordion .accordion-button::after { filter: invert(1) brightness(1.5); }
.td-terms-accordion .accordion-body {
  background: var(--bg-card-2); border-top: 1px solid var(--border-soft);
  color: var(--text-muted); font-size: .85rem; line-height: 1.85;
  padding: 1rem 1.2rem 1.25rem; white-space: pre-line;
}

/* Related Tours */
.td-related-section { padding: 3.5rem 0 4.5rem; border-top: 1px solid var(--border-soft); }

/* ═══════════════════════════════════════════════
   Trek Cards  (trek-*)
   ═══════════════════════════════════════════════ */
.trek-card-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: .6rem; }
.trek-diff-badge {
  display: inline-flex; align-items: center; padding: .18rem .6rem;
  border-radius: 999px; font-size: .56rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
}
.trek-diff-1 { background: rgba(74,222,128,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.22); }
.trek-diff-2 { background: rgba(251,191,36,.15); color: #fbbf24; border: 1px solid rgba(251,191,36,.22); }
.trek-diff-3 { background: rgba(251,146,60,.15); color: #fb923c; border: 1px solid rgba(251,146,60,.22); }
.trek-diff-4 { background: rgba(248,113,113,.15); color: #f87171; border: 1px solid rgba(248,113,113,.22); }
.trek-meta-pill {
  display: inline-flex; align-items: center; padding: .18rem .6rem;
  border-radius: 999px; font-size: .56rem; font-weight: 600;
  color: var(--text-soft); background: rgba(255,255,255,.05); border: 1px solid var(--border-soft);
}

/* ═══════════════════════════════════════════════
   Trek Detail Hero difficulty chip
   ═══════════════════════════════════════════════ */
.td-chip-diff-1 { border-color: rgba(74,222,128,.35); color: #4ade80; }
.td-chip-diff-2 { border-color: rgba(251,191,36,.35); color: #fbbf24; }
.td-chip-diff-3 { border-color: rgba(251,146,60,.35); color: #fb923c; }
.td-chip-diff-4 { border-color: rgba(248,113,113,.35); color: #f87171; }

/* Trek stat value colors */
.tk-diff-1 { color: #4ade80; }
.tk-diff-2 { color: #fbbf24; }
.tk-diff-3 { color: #fb923c; }
.tk-diff-4 { color: #f87171; }

/* Trek Highlights Grid */
.tk-highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem;
}
.tk-highlight-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: .85rem .5rem; background: var(--bg-card);
  border: 1px solid var(--border-soft); border-radius: 12px;
}
.tk-hi-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14,122,53,.12); display: flex; align-items: center; justify-content: center;
  margin-bottom: .4rem; flex-shrink: 0;
}
.tk-hi-icon svg { width: 14px; height: 14px; stroke: #4ade80; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tk-hi-label { font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-soft); margin-bottom: .18rem; }
.tk-hi-value { font-size: .78rem; font-weight: 700; color: var(--text-main); line-height: 1.3; }

/* Trek sidebar difficulty wrap */
.tk-sb-diff-wrap { margin-bottom: 0; }

/* Responsive */
@media (max-width: 991px) {
  .td-stats-row { grid-template-columns: repeat(2, 1fr); }
  .td-sidebar-card { position: static; margin-top: 0; }
  .tk-highlights-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .td-hero-card { min-height: 280px; }
  .td-hero-shell { padding: 1.5rem 1rem 2rem; }
  .td-hero-title { font-size: 1.6rem; }
  .td-pg-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .tk-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .td-dep-row { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .td-dep-seats { grid-column: 1 / 3; }
  .td-stats-row { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .td-stat-card { padding: .9rem .6rem; }
  .tour-image-modal-dialog { max-width: 96vw; margin: .5rem auto; }
}

.booking-tour-side .booking-cancel-link {
  color: #ff8f8f;
}

.booking-tour-side .booking-cancel-link:hover,
.booking-tour-side .booking-cancel-link:focus-visible {
  color: #ffc2c2;
}

.trip-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.trip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.trip-status {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  color: #081016;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.trip-card .trip-status {
  margin-bottom: 0.65rem;
}

.trip-status-warning {
  color: #1b1303;
  background: #ffbd59;
}

.trip-status-complete {
  color: #dbe7ef;
  background: rgba(255, 255, 255, 0.12);
}

.trip-card h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
}

.trip-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.65;
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.trip-meta span {
  padding: 0.45rem 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.profile-mini-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
}

.profile-mini-card strong {
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .navbar-section .hero-menu .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 767.98px) {
  .inner-hero-section {
    padding: 1.2rem 0 2.5rem;
  }

  .inner-hero-card {
    min-height: 250px;
    border-radius: 22px;
  }

  .inner-hero-content {
    padding: 1.5rem;
  }

  .gallery-page-section,
  .faq-section,
  .account-section,
  .profile-section {
    padding-bottom: 4rem;
  }

  .account-visual-card {
    min-height: 360px;
    padding: 1.5rem;
    border-radius: 20px;
  }

  .account-form-card,
  .profile-panel {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .account-form-options,
  .profile-hero-card,
  .profile-panel-heading,
  .booking-tour-card,
  .trip-card {
    grid-template-columns: 1fr;
  }

  .account-form-options {
    display: grid;
  }

  .profile-update-options {
    grid-template-columns: 1fr;
  }

  .profile-update-submit {
    width: 100%;
  }

  .profile-hero-card {
    align-items: start;
  }

  .profile-panel-heading {
    display: grid;
  }

  .profile-hero-card .btn-account-primary {
    width: 100%;
  }

  .profile-small-action,
  .booking-tour-side {
    width: 100%;
  }

  .booking-tour-card img {
    height: 180px;
  }

  .booking-tour-side {
    justify-items: start;
    text-align: left;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .trip-card img {
    height: 210px;
  }
}

.site-footer {
  background: #081016;
  color: rgba(255, 255, 255, 0.9);
  padding: 3.4rem 0;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.footer-desc {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
  line-height: 1.7;
}

.footer-social {
  margin-top: 0.6rem;
}

.footer-icon {
  width: 20px;
  height: 20px;
  opacity: 0.95;
  margin-right: 0.6rem;
}

.footer-heading {
  color: #f4f6f8;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 0.28rem 0;
  font-size: 0.93rem;
}

.footer-list li a:hover {
  color: var(--accent);
}

.footer-newsletter {
  gap: 0.6rem;
  display: flex;
  align-items: center;
  position: relative;
}

.footer-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 28px;
  outline: none;
  min-width: 0;
}
.footer-input::placeholder {
    color: #93A0AE;
}

.btn-join {
  border-radius: 24px;
  padding: 0.5rem 1rem;
  background: var(--accent-green);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(21, 154, 57, 0.14);
  position: absolute;
  right: 6px;
  height: 32px;
  line-height: 100%;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  margin: 0;
}

@media (max-width: 991.98px) {
  .hero-nav {
    padding-top: 1rem;
  }

  .navbar-collapse {
    background: rgba(8, 16, 22, 0.72);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    margin-top: 1rem;
    padding: 1rem 1.1rem;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-menu .nav-link {
    padding: 0.55rem 0;
  }

  .btn-book {
    display: inline-flex;
    margin-top: 0.75rem;
  }

  .why-choose-section {
    padding: 4.75rem 0 5rem;
  }

  .highlights-section {
    padding: 4.9rem 0 5.2rem;
  }

  .curated-stays-section {
    padding: 0 0 5.3rem;
  }

  .villa-hero-card {
    min-height: 360px;
  }

  .packages-section {
    padding: 0 0 5.4rem;
  }

  .testimonials-section {
    padding: 5.2rem 0 5.8rem;
  }

  .gallery-section {
    padding: 5.2rem 0 6rem;
  }

  .cta-section {
    padding: 5.8rem 0 6.4rem;
  }

  .cta-card {
    padding: 3rem 2.8rem;
  }
}

@media (max-width: 767.98px) {
  .brand-mark {
    font-size: 1.25rem;
  }

  .hero-section {
    background-position: 60% center;
  }

  .hero-content {
    min-height: calc(100vh - 82px);
    padding: 3.25rem 0 4rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
    line-height: 0.96;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .btn-escape {
    font-size: 0.79rem;
    padding: 0.92rem 1.35rem;
  }

  .why-choose-section {
    padding: 4rem 0 4.25rem;
  }

  .section-heading {
    margin-bottom: 2.4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.35rem 1rem 1.2rem;
  }

  .highlights-section {
    padding: 4.1rem 0 4.4rem;
  }

  .highlights-section::before,
  .curated-stays-section::before,
  .packages-section::before,
  .testimonials-section::before,
  .gallery-section::before {
    width: calc(100% - 2rem);
    transform: translateY(-4.1rem);
  }

  .section-heading-left {
    margin-bottom: 2rem;
  }

  .escape-body {
    padding: 0.85rem 0.85rem 0.8rem;
  }

  .curated-stays-section {
    padding: 0 0 4.4rem;
  }

  .curated-title {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 0.98;
  }

  .curated-text {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .special-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .villa-hero-card {
    min-height: 280px;
  }

  .offer-card {
    min-height: 156px;
  }

  .offer-content {
    padding: 1.45rem 1.2rem 1.2rem;
  }

  .packages-section {
    padding: 0 0 4.5rem;
  }

  .packages-heading {
    margin-bottom: 2.2rem;
  }

  .package-body {
    padding: 0.85rem 0.5rem 0.25rem;
  }

  .testimonials-section {
    padding: 4.6rem 0 5rem;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 1.65rem 1.45rem;
    border-radius: 22px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .gallery-section {
    padding: 4.8rem 0 5.4rem;
  }

  .gallery-shell .section-heading {
    margin-bottom: 2.2rem;
  }

  .cta-section {
    padding: 4.8rem 0 5.4rem;
  }

  .cta-card {
    min-height: 240px;
    padding: 2.5rem 2rem;
    border-radius: 24px;
  }

  .cta-title {
    margin-bottom: 0.9rem;
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .cta-copy {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .btn-journey {
    margin-top: 1rem;
    width: 100%;
  }

  .booking-modal-header {
    padding: 1.2rem 1.25rem 0.4rem;
  }

  .booking-modal-body {
    padding: 0.45rem 1.25rem 1.25rem;
  }

  .booking-modal-copy {
    font-size: 0.72rem;
  }

  .booking-textarea {
    min-height: 108px;
  }

  .site-footer {
    padding: 2.8rem 0;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-input {
    border-radius: 10px;
    width: 100%;
  }

  .btn-join {
    width: 100%;
    border-radius: 10px;
  }
}
