@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --ink: #102033;
  --night: #061a33;
  --charcoal: #0b2d55;
  --muted: #66758a;
  --line: #dbe6f2;
  --soft: #f4f8fc;
  --white: #ffffff;
  --gold: #f2b705;
  --gold-light: #ffd75a;
  --green: #177d52;
  --blue: #0b5fa5;
  --deep-blue: #061a33;
  --sky-blue: #eaf4ff;
  --shadow: 0 24px 70px rgba(6, 26, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(242, 183, 5, 0.28);
  box-shadow: 0 18px 44px rgba(6, 26, 51, 0.18);
}

.top-bar {
  background: linear-gradient(135deg, #061a33 0%, #08284d 48%, #0b3e72 100%);
  color: var(--white);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 90, 0.08), transparent);
  content: "";
}

.top-bar .container {
  position: relative;
  min-height: 72px;
  z-index: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 250px;
}

.logo-brand {
  min-width: 420px;
}

.site-logo {
  width: 104px;
  height: 72px;
  object-fit: contain;
  border: 1px solid rgba(255, 215, 90, 0.42);
  border-radius: 8px;
  background: #f9f9f8;
  padding: 5px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.brand-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 215, 90, 0.55);
  border-radius: 8px;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.45rem;
}

.brand-mark strong {
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.brand-mark small {
  display: block;
  color: var(--gold-light);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 14px;
  color: #f8f0df;
  font-size: 1rem;
}

.contact-strip i {
  color: var(--gold-light);
  margin-right: 6px;
}

.contact-strip a:not(.social-circle) {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 215, 90, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5faff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-strip a:not(.social-circle):hover {
  border-color: rgba(255, 215, 90, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.social-circle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facebook {
  color: #ffffff;
  background: #1877f2;
}

.instagram {
  color: #ffffff;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-circle i {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
}

.social-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.main-nav {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  padding: 0;
}

.main-nav .container {
  min-height: 76px;
}

.navbar-nav {
  gap: 2px;
}

.main-nav .nav-link {
  position: relative;
  color: #123454;
  font-size: 0.93rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 26px 15px;
  text-transform: uppercase;
}

.main-nav .nav-link::after {
  position: absolute;
  right: 15px;
  bottom: 14px;
  left: 15px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--blue);
}

.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid #d49f00;
  border-radius: 6px;
  padding: 12px 22px;
  color: #061a33;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 30px rgba(242, 183, 5, 0.28);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-book-btn:hover {
  color: #061a33;
  background: linear-gradient(135deg, #ffe27b, #ffc400);
  box-shadow: 0 18px 36px rgba(242, 183, 5, 0.38);
  transform: translateY(-2px);
}

.nav-book-btn i {
  font-size: 1rem;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-luxury {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--night);
}

.hero-carousel {
  background: var(--deep-blue);
}

.hero-carousel .carousel-item {
  height: 650px;
  min-height: 650px;
}

.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
}

.carousel-caption {
  right: 50%;
  bottom: 50%;
  left: auto;
  max-width: min(760px, calc(100% - 150px));
  width: 100%;
  text-align: center;
  transform: translate(50%, 50%);
}

.carousel-caption span {
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 215, 90, 0.42);
  border-radius: 4px;
  padding: 8px 13px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-caption h1,
.carousel-caption h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.carousel-caption p {
  margin-right: auto;
  margin-left: auto;
  max-width: 590px;
  color: #f5ead8;
  font-size: 1.03rem;
  line-height: 1.7;
}

.taj-caption .price {
  display: inline-block;
  margin: 0 0 10px;
  border-bottom: 4px solid var(--gold);
  color: #ffffff;
  font-size: clamp(1.25rem, 2.35vw, 1.85rem);
  font-weight: 900;
}

.taj-caption blockquote {
  margin: 10px 0 8px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.slider-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  padding: 12px 20px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, #f0c462, #c9963d);
  box-shadow: 0 14px 30px rgba(6, 26, 51, 0.24);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 950;
  line-height: 1;
}

.slider-call-btn:hover {
  color: var(--deep-blue);
  background: linear-gradient(135deg, #ffe27b, #ffc400);
}

.slider-call-btn i {
  color: var(--deep-blue);
  font-size: 1.15em;
}

.hero-luxury > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 51, 0.86), rgba(8, 40, 77, 0.55) 45%, rgba(6, 26, 51, 0.2)), linear-gradient(0deg, rgba(6, 26, 51, 0.78), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-content .lead {
  max-width: 690px;
  color: #f4ead8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  border-radius: 6px;
  font-weight: 900;
}

.btn-gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep-blue);
}

.btn-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--deep-blue);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.hero-panel {
  display: flex;
  flex-wrap: wrap;
  max-width: 840px;
  margin-top: 70px;
  border: 1px solid rgba(255, 215, 90, 0.35);
  background: rgba(6, 26, 51, 0.68);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  flex: 1 1 220px;
  min-height: 82px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 215, 90, 0.25);
  color: #edf6ff;
}

.hero-panel span:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.section-space {
  padding: 92px 0;
}

.profile-centre {
  background: var(--soft);
  text-align: center;
}

.profile-luxury {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8fc, #ffffff);
}

.profile-luxury::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.08), transparent 42%, rgba(242, 183, 5, 0.12));
  content: "";
}

.profile-luxury .container {
  position: relative;
  z-index: 1;
}

.profile-image {
  max-width: 820px;
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.profile-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 6px;
}

.profile-copy {
  max-width: 980px;
}

.profile-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.profile-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: stretch;
  border: 1px solid rgba(11, 95, 165, 0.16);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(6, 26, 51, 0.12);
  text-align: left;
}

.profile-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--deep-blue);
}

.profile-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 26, 51, 0.62));
  content: "";
}

.profile-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
}

.profile-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  min-width: 170px;
  border: 1px solid rgba(255, 215, 90, 0.45);
  border-radius: 10px;
  padding: 18px;
  color: #ffffff;
  background: rgba(6, 26, 51, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.profile-badge strong,
.profile-badge span {
  display: block;
}

.profile-badge strong {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.profile-badge span {
  margin-top: 6px;
  font-weight: 800;
}

.profile-showcase .profile-copy {
  max-width: none;
  padding: 18px 18px 18px 0;
}

.profile-showcase .profile-copy p {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.85;
}

.profile-lead {
  color: var(--deep-blue) !important;
  font-size: 1.15rem !important;
  font-weight: 800;
}

.profile-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.profile-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--deep-blue);
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  font-weight: 900;
}

.profile-highlights i {
  color: var(--blue);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split-showcase h2,
.contact-card h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-card,
.value-card,
.fleet-card,
.contact-card,
.stat-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(22, 20, 18, 0.07);
}

.service-card,
.value-card {
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.value-card:hover,
.fleet-card:hover,
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card i,
.value-card i,
.fleet-card i {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--sky-blue);
  border: 1px solid var(--line);
  font-size: 1.45rem;
}

.service-card h3,
.value-card h3,
.fleet-card h3,
.tour-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 700;
}

.service-card p,
.value-card p,
.fleet-card p,
.tour-card p,
.large-copy,
.split-showcase p,
.contact-card p,
.stat-card p {
  color: var(--muted);
  line-height: 1.72;
}

.split-showcase {
  background: var(--soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  font-weight: 800;
}

.feature-list i {
  color: var(--blue);
}

.image-stack {
  position: relative;
}

.image-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  border: 1px solid rgba(255, 215, 90, 0.45);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: rgba(6, 26, 51, 0.86);
}

.image-note strong,
.image-note span {
  display: block;
}

.image-note strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.dark-section {
  color: var(--white);
  background: linear-gradient(135deg, #061a33, #0b3e72);
}

.dark-section .section-heading h2 {
  color: var(--white);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.route-numbered {
  counter-reset: route;
}

.route-numbered span {
  position: relative;
  padding-left: 52px;
}

.route-numbered span::before {
  position: absolute;
  left: 14px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  counter-increment: route;
  content: counter(route);
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.route-image-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 215, 90, 0.32);
  border-radius: 10px;
  background: #09223f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.route-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 51, 0.08), rgba(6, 26, 51, 0.86));
  content: "";
}

.route-image-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

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

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

.route-image-card h3,
.route-image-card p {
  position: relative;
  z-index: 1;
}

.route-image-card h3 {
  margin: 0;
  padding: 0 22px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.18;
}

.route-image-card p {
  margin: 8px 0 0;
  padding: 0 22px 24px;
  color: #dcecff;
  font-size: 0.92rem;
  font-weight: 700;
}

.route-grid a,
.route-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 13px 15px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.route-grid.compact a {
  border-color: rgba(255, 215, 90, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f9ff;
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(135deg, #061a33, #0b5fa5);
}

.cta-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 94px 0 72px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(6, 26, 51, 0.84), rgba(11, 95, 165, 0.36)), var(--hero-img);
  background-position: center;
  background-size: cover;
}

.large-copy {
  font-size: 1.08rem;
}

.stat-card {
  padding: 34px;
  background: linear-gradient(135deg, #061a33, #0b3e72);
  color: var(--white);
}

.stat-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin: 14px 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.stat-card p {
  color: #eee3cf;
}

.fleet-card {
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-card.featured {
  border-color: rgba(242, 183, 5, 0.5);
  background: linear-gradient(180deg, #ffffff, #fff7d8);
}

.fleet-card.featured i {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.fleet-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.fleet-card li {
  color: var(--muted);
  font-weight: 700;
}

.fleet-card li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.tour-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(22, 20, 18, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-card div {
  padding: 24px;
}

.gallery-page {
  background: var(--soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(22, 20, 18, 0.08);
}

.contact-card {
  padding: 32px;
  background: var(--soft);
}

.route-page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: linear-gradient(90deg, rgba(6, 26, 51, 0.88), rgba(11, 95, 165, 0.46)), var(--hero-img);
  background-position: center;
  background-size: cover;
}

.route-page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: 1;
}

.route-page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 26px;
  color: #eaf4ff;
  font-size: 1.15rem;
  font-weight: 600;
}

.route-detail-section {
  background: var(--soft);
}

.route-detail-card,
.route-book-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(6, 26, 51, 0.08);
}

.route-detail-card {
  padding: 36px;
}

.route-detail-card h2,
.route-book-card h3 {
  margin: 0 0 16px;
  color: var(--deep-blue);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.route-detail-card p,
.route-book-card p {
  color: var(--muted);
}

.route-book-card {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #f2f8ff);
}

.contact-card i {
  color: var(--blue);
  margin-right: 8px;
}

.enquiry-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-luxury {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fc 48%, #eaf4ff 100%);
}

.enquiry-luxury::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 20%, rgba(242, 183, 5, 0.12), transparent 30%), radial-gradient(circle at 85% 18%, rgba(11, 95, 165, 0.12), transparent 32%);
  content: "";
}

.enquiry-luxury .container {
  position: relative;
  z-index: 1;
}

.enquiry-luxury h2 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--deep-blue);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.04;
}

.enquiry-luxury .large-copy {
  max-width: 620px;
  color: #516987;
  font-size: 1.08rem;
  line-height: 1.85;
}

.enquiry-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.enquiry-contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid rgba(11, 95, 165, 0.18);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(6, 26, 51, 0.08);
  font-weight: 900;
}

.enquiry-contact-row i {
  color: var(--blue);
}

.enquiry-luxury .enquiry-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 165, 0.16);
  border-radius: 14px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(6, 26, 51, 0.14);
}

.enquiry-luxury .enquiry-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  content: "";
}

.form-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.form-title > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--deep-blue);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.35rem;
}

.form-title strong,
.form-title small {
  display: block;
}

.form-title strong {
  color: var(--deep-blue);
  font-size: 1.2rem;
  font-weight: 950;
}

.form-title small {
  color: var(--muted);
  font-weight: 700;
}

.enquiry-luxury .form-control {
  min-height: 58px;
  border-color: #cfdeed;
  background: #fbfdff;
  font-size: 1rem;
  font-weight: 600;
}

.enquiry-luxury textarea.form-control {
  min-height: 132px;
}

.enquiry-submit {
  min-height: 56px;
  border-radius: 7px;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-control {
  min-height: 50px;
  border-color: #dcd3c4;
  border-radius: 6px;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(11, 95, 165, 0.16);
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 330px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  padding: 58px 0 92px;
  color: #e8f3ff;
  background: linear-gradient(135deg, #061a33, #08284d);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-footer a {
  color: var(--gold-light);
}

.luxury-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 30px;
  border-top: 4px solid var(--gold);
}

.luxury-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 90, 0.08), transparent);
  content: "";
}

.luxury-footer .container {
  position: relative;
  z-index: 1;
}

.footer-widget {
  height: 100%;
}

.footer-widget h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-widget h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  content: "";
}

.footer-logo {
  width: 118px;
  height: 82px;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 215, 90, 0.32);
  border-radius: 8px;
  padding: 5px;
  background: #ffffff;
}

.footer-widget p {
  margin: 0;
  color: #d7e8fb;
  line-height: 1.75;
}

.footer-menu,
.footer-contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8f3ff;
  font-weight: 800;
}

.footer-menu a::before {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.footer-menu a:hover,
.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d7e8fb;
  line-height: 1.55;
}

.footer-contact-list i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold-light);
}

.footer-contact-list a {
  color: #d7e8fb;
}

.footer-map {
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(255, 215, 90, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: #d7e8fb;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  border: 1px solid rgba(255, 215, 90, 0.24);
  border-radius: 999px;
  padding: 10px 16px;
  color: #f3f9ff;
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  padding: 0;
  color: var(--white);
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.float-btn i {
  margin: 0;
  font-size: 1.55rem;
}

.whatsapp-btn {
  background: var(--green);
}

.call-btn {
  background: var(--blue);
}

@media (max-width: 991.98px) {
  .logo-brand {
    min-width: 0;
  }

  .contact-strip {
    justify-content: flex-start;
  }

  .navbar-collapse {
    padding: 10px 0 18px;
  }

  .main-nav .nav-link {
    padding: 12px 6px;
  }

  .main-nav .nav-link::after {
    right: 6px;
    bottom: 6px;
    left: 6px;
  }

  .nav-book-btn {
    width: 100%;
    margin-top: 10px;
  }

  .hero-luxury {
    min-height: 720px;
  }

  .route-grid,
  .route-card-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-showcase .profile-copy {
    padding: 6px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .site-header {
    display: block;
    position: sticky;
    background: var(--deep-blue);
  }

  .top-bar {
    padding: 10px 0 12px;
  }

  .top-bar .container {
    min-height: 0;
    align-items: flex-start !important;
    padding-right: 72px;
  }

  .brand-mark {
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark > span {
    min-width: 0;
  }

  .contact-strip {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 7px;
    font-size: 0.72rem;
  }

  .contact-strip a:not(.social-circle) {
    min-width: 0;
    min-height: 34px;
    justify-content: center;
    overflow: hidden;
    padding: 6px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-strip a[href^="mailto"] {
    justify-content: flex-start;
  }

  .social-circle {
    width: 34px;
    height: 34px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .social-circle i {
    font-size: 0.95rem;
  }

  .site-logo {
    width: 70px;
    height: 50px;
    padding: 3px;
  }

  .brand-mark strong {
    font-size: 1.02rem;
    white-space: nowrap;
  }

  .brand-mark small {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .main-nav {
    position: absolute;
    top: 14px;
    right: 12px;
    width: auto;
    background: transparent;
    border-top: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
  }

  .navbar-toggler {
    width: 46px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(11, 95, 165, 0.38);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(6, 26, 51, 0.12);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(11, 95, 165, 0.18);
  }

  .main-nav .container {
    width: auto;
    min-height: 0;
    justify-content: flex-end;
    padding: 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 46px;
    right: 0;
    min-width: min(300px, calc(100vw - 24px));
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(11, 95, 165, 0.14);
    border-radius: 10px;
    padding: 8px 12px 14px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(6, 26, 51, 0.12);
  }

  .main-nav .nav-link {
    border-bottom: 1px solid #eef3f8;
    padding: 11px 2px;
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .nav-book-btn {
    margin-top: 12px;
    min-height: 44px;
  }

  .hero-carousel .carousel-item {
    height: 480px;
    min-height: 480px;
  }

  .carousel-caption {
    right: 50%;
    bottom: 50%;
    left: auto;
    max-width: calc(100% - 36px);
    transform: translate(50%, 50%);
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .taj-caption .price {
    font-size: 1.25rem;
  }

  .slider-call-btn {
    min-height: 48px;
    padding: 10px 16px;
    font-size: 1rem;
  }

  .hero-luxury {
    min-height: 740px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 22px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

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

  .hero-panel {
    margin-top: 38px;
  }

  .hero-panel span {
    flex-basis: 100%;
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 215, 90, 0.25);
  }

  .hero-panel span:last-child {
    border-bottom: 0;
  }

  .section-space {
    padding: 64px 0;
  }

  .feature-list,
  .route-grid,
  .route-card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .profile-showcase {
    padding: 10px;
  }

  .profile-media,
  .profile-media img {
    min-height: 280px;
  }

  .profile-badge {
    right: 14px;
    bottom: 14px;
    min-width: 145px;
    padding: 14px;
  }

  .profile-badge strong {
    font-size: 1.75rem;
  }

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

  .route-image-card {
    min-height: 260px;
  }

  .page-hero {
    min-height: 380px;
    padding-bottom: 56px;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .float-btn {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
  }
}
