@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: 8px 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;
  justify-content: space-between !important;
  min-height: 54px;
  z-index: 1;
}

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

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

.site-logo {
  width: 78px;
  height: 54px;
  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.15rem, 1.45vw, 1.55rem);
  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.62rem, 0.82vw, 0.74rem);
  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: 8px 10px;
  margin-left: auto;
  color: #f8f0df;
  font-size: 0.84rem;
}

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

.contact-strip a:not(.social-circle) {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 215, 90, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  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: 36px;
  height: 36px;
  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: 0.98rem;
}

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

.main-nav {
  border-top: 1px solid rgba(255, 215, 90, 0.22);
  border-bottom: 1px solid rgba(6, 26, 51, 0.1);
  background:
    linear-gradient(90deg, rgba(6, 26, 51, 0.04), transparent 18%, transparent 82%, rgba(242, 183, 5, 0.12)),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #edf5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 28px rgba(6, 26, 51, 0.08);
  padding: 10px 0;
}

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

.navbar-nav {
  gap: 8px;
}

.main-nav .nav-link {
  position: relative;
  color: #08233f;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 15px 7px 14px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav .nav-link::after {
  position: absolute;
  right: 7px;
  bottom: 9px;
  left: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b5fa5, var(--gold), #ffe27b);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.36);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #00589c;
  transform: translateY(-1px);
}

.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  border: 1px solid #c69200;
  border-radius: 6px;
  padding: 8px 16px;
  color: #061a33;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 45%),
    linear-gradient(135deg, #ffe27b 0%, #ffc928 46%, #e7aa00 100%);
  box-shadow: 0 12px 28px rgba(242, 183, 5, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  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(180deg, rgba(255, 255, 255, 0.42), transparent 45%),
    linear-gradient(135deg, #fff0a8 0%, #ffd13d 48%, #f2b705 100%);
  box-shadow: 0 16px 34px rgba(242, 183, 5, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

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

.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(1.45rem, 2.65vw, 2.45rem);
  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;
}

.about-profile-section {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.88), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(242, 183, 5, 0.12), transparent 32%);
}

.about-luxury-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-info-panel,
.about-commitment,
.about-values {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 165, 0.16);
  border-radius: 12px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9)),
    linear-gradient(135deg, rgba(242, 183, 5, 0.08), transparent 58%);
  box-shadow: 0 22px 52px rgba(6, 26, 51, 0.08);
}

.about-info-panel::before,
.about-commitment::before,
.about-values::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold), rgba(242, 183, 5, 0));
}

.about-info-panel h3,
.about-commitment h3 {
  margin: 0 0 18px;
  color: var(--deep-blue);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.12;
}

.about-info-panel p,
.about-commitment p,
.about-values p {
  color: var(--muted);
  line-height: 1.75;
}

.about-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-check-list.compact {
  grid-template-columns: 1fr;
}

.about-check-list li {
  position: relative;
  min-height: 46px;
  border: 1px solid rgba(11, 95, 165, 0.12);
  border-radius: 8px;
  padding: 11px 12px 11px 38px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.35;
}

.about-check-list li::before {
  content: "\F26A";
  position: absolute;
  top: 12px;
  left: 13px;
  color: var(--blue);
  font-family: "bootstrap-icons";
  font-size: 0.95rem;
}

.about-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(242, 183, 5, 0.28);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--deep-blue);
  background: linear-gradient(180deg, #ffffff, #fff8dc);
  box-shadow: 0 10px 24px rgba(6, 26, 51, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

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

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid rgba(11, 95, 165, 0.13);
  border-radius: 12px;
  padding: 13px 16px;
  color: #061a33;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.86)),
    linear-gradient(135deg, rgba(242, 183, 5, 0.08), transparent 58%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 28px rgba(6, 26, 51, 0.06);
  font-weight: 900;
}

.feature-list i {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(242, 183, 5, 0.34);
  border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(135deg, #ffffff, #fff4c7);
  font-size: 0.95rem;
}

.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: 220px;
  display: flex;
  align-items: flex-end;
  padding: 42px 0 34px;
  color: var(--white);
  background-color: var(--deep-blue);
  background-image: linear-gradient(90deg, rgba(6, 26, 51, 0.68), rgba(6, 26, 51, 0.22) 58%, rgba(6, 26, 51, 0.08)), 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-tabs {
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.gallery-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(11, 95, 165, 0.15);
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(6, 26, 51, 0.08);
  font-weight: 950;
}

.gallery-tabs .nav-link.active {
  color: #061a33;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 45%),
    linear-gradient(135deg, #ffe27b, var(--gold));
}

.gallery-tab-content {
  min-height: 320px;
}

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

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.gallery-thumb::after {
  position: absolute;
  inset: 8px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(6, 26, 51, 0.42);
  content: "\F52A";
  font-family: "bootstrap-icons";
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
  opacity: 1;
}

.gallery-grid img,
.gallery-grid video {
  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);
  background: var(--deep-blue);
}

.gallery-grid video {
  display: block;
}

.gallery-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(242, 183, 5, 0.24);
  border-radius: 14px;
  background: #061a33;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.gallery-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #061a33, #0b3e72);
}

.gallery-modal .modal-title {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.gallery-modal .modal-body {
  padding: 0;
}

.gallery-modal .carousel-item img {
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: #020b15;
}

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

.fleet-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.fleet-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(11, 95, 165, 0.12);
  border-radius: 12px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f6faff 58%, #fff8df 100%);
  box-shadow: 0 24px 58px rgba(6, 26, 51, 0.1);
}

.fleet-intro-copy h2 {
  margin: 0 0 16px;
  color: var(--deep-blue);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
}

.fleet-intro-media {
  overflow: hidden;
  border: 1px solid rgba(242, 183, 5, 0.28);
  border-radius: 12px;
  min-height: 360px;
  background: var(--deep-blue);
  box-shadow: 0 28px 70px rgba(6, 26, 51, 0.18);
}

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

.route-page-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 38px 0;
  color: #ffffff;
  background-color: var(--deep-blue);
  background-image: linear-gradient(90deg, rgba(6, 26, 51, 0.72), rgba(6, 26, 51, 0.26) 58%, rgba(6, 26, 51, 0.08)), var(--hero-img);
  background-position: center;
  background-size: cover;
}

.route-page-hero h1 {
  max-width: 680px;
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.65vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
}

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

.route-detail-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.94)),
    radial-gradient(circle at 10% 15%, rgba(242, 183, 5, 0.15), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(11, 95, 165, 0.13), transparent 32%);
}

.route-detail-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 26, 51, 0.04), transparent 24%, transparent 76%, rgba(242, 183, 5, 0.08));
  content: "";
}

.route-detail-section .container {
  position: relative;
  z-index: 1;
}

.route-detail-card,
.route-book-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(11, 95, 165, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 253, 255, 0.9)),
    linear-gradient(135deg, rgba(242, 183, 5, 0.08), transparent 48%);
  box-shadow: 0 30px 80px rgba(6, 26, 51, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.route-detail-card::before,
.route-book-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), #ffe27b);
  content: "";
}

.route-detail-card::after,
.route-book-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(242, 183, 5, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

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

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

.route-detail-card p,
.route-book-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.route-book-card {
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 249, 255, 0.92)),
    linear-gradient(135deg, rgba(255, 215, 90, 0.13), transparent 52%);
}

.route-book-card .btn {
  width: calc(50% - 7px);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(6, 26, 51, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.route-book-card .btn.w-100 {
  display: inline-flex;
  width: calc(50% - 12px) !important;
  margin-right: 5px;
  margin-left: 5px;
}

.route-book-card .btn + .btn,
.route-book-card .btn.mt-3 {
  margin-top: 0 !important;
}

.route-book-card .btn i {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
}

.route-book-card .btn:hover {
  transform: translateY(-2px);
}

.route-book-card .btn-gold {
  border: 1px solid #d49f00;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 48%),
    linear-gradient(135deg, #ffe992 0%, #ffc72a 42%, #f0b000 100%);
  color: #061a33;
  box-shadow: 0 18px 34px rgba(242, 183, 5, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.route-book-card .btn-gold i {
  color: #061a33;
  background: rgba(255, 255, 255, 0.58);
}

.route-book-card .btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, #061a33 0%, #0b2d55 54%, #0a1c31 100%);
  box-shadow: 0 18px 34px rgba(6, 26, 51, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.route-book-card .btn-dark i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

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

.contact-phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.contact-phone-row i {
  flex: 0 0 auto;
}

.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-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  content: "";
}

.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 {
  background: rgba(255, 255, 255, 0.9);
}

.enquiry-luxury .enquiry-form::before {
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

.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-form .form-control,
.enquiry-luxury .form-control {
  min-height: 58px;
  border-color: #cfdeed;
  background: #fbfdff;
  font-size: 1rem;
  font-weight: 600;
}

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

.captcha-label {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-blue);
  font-weight: 900;
}

.enquiry-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.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-size: 0.86rem;
  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-phone-row span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.footer-phone-row a {
  white-space: nowrap;
}

.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: center;
  }

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

  .main-nav .nav-link {
    padding: 10px 6px;
    font-size: 0.68rem;
  }

  .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;
  }

  .fleet-intro {
    grid-template-columns: 1fr;
  }

  .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 {
    justify-content: center !important;
    min-height: 0;
    align-items: center !important;
    text-align: center;
  }

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

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

  .contact-strip {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
    font-size: 0.64rem;
  }

  .contact-strip a:not(.social-circle) {
    min-width: 0;
    min-height: 32px;
    justify-content: center;
    padding: 5px 7px;
    white-space: nowrap;
  }

  .contact-strip a[href^="mailto"] {
    flex: 0 1 auto;
    justify-content: center;
  }

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

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

  .contact-strip i {
    margin-right: 4px;
  }

  .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: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 0px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(6, 26, 51, 0.16);
    padding: 0;
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }

  .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: 9px 2px;
    font-size: 0.72rem;
  }

  .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: 1.6rem;
  }

  .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,
  .about-luxury-grid,
  .about-check-list,
  .route-grid,
  .route-card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .route-detail-card,
  .route-book-card {
    border-radius: 12px;
    padding: 26px;
  }

  .route-book-card .btn,
  .route-book-card .btn.w-100 {
    width: min(100%, 300px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .route-book-card .btn + .btn,
  .route-book-card .btn.mt-3 {
    margin-top: 12px !important;
  }

  .route-detail-card::after,
  .route-book-card::after {
    width: 58px;
    height: 58px;
  }

  .feature-list span {
    min-height: 56px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .about-info-panel,
  .about-commitment,
  .about-values {
    border-radius: 10px;
    padding: 24px;
  }

  .about-check-list li {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .about-pill-grid span {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .profile-showcase {
    padding: 10px;
  }

  .fleet-intro-copy {
    padding: 24px;
  }

  .fleet-intro-copy h2 {
    font-size: 2rem;
  }

  .fleet-intro-media {
    min-height: 260px;
  }

  .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: 190px;
    padding: 34px 0 28px;
  }

  .route-page-hero {
    min-height: 210px;
    padding: 32px 0;
  }

  .route-page-hero h1 {
    font-size: 1.55rem;
  }

  .route-page-hero p:not(.eyebrow) {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

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

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