:root {
  --navy: #102b46;
  --navy-deep: #081827;
  --navy-soft: #193d61;
  --green: #23835e;
  --green-deep: #165d44;
  --green-soft: #e8f4ee;
  --white: #ffffff;
  --sand: #f5f7f4;
  --text: #1d3143;
  --muted: #607486;
  --border: rgba(16, 43, 70, 0.1);
  --shadow: 0 26px 60px rgba(8, 24, 39, 0.08);
  --shadow-soft: 0 14px 30px rgba(8, 24, 39, 0.06);
  --radius: 28px;
  --radius-sm: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(35, 131, 94, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(16, 43, 70, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdfc 0%, #f2f7f8 100%);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(16, 43, 70, 0.06);
  box-shadow: 0 10px 30px rgba(8, 24, 39, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.15rem 0.35rem 0.15rem 0;
}

.brand-logo {
  width: clamp(5.33rem, 8.62vw, 6.58rem);
  height: auto;
  object-fit: contain;
}

.home-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.flights-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.destinations-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.deals-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.about-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.contact-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.destination-detail-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.thailand-page .brand-logo {
  width: clamp(3.19rem, 5.18vw, 3.96rem);
}

.hotel-detail-page .brand-logo {
  width: clamp(2.72rem, 4.4vw, 3.36rem);
}

.brand-footer {
  display: none;
}

.brand-logo-footer {
  width: clamp(5.57rem, 9.41vw, 6.66rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.72rem, 1.25vw, 1rem);
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.97rem;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), rgba(35, 131, 94, 0.12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 2.9rem;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 131, 94, 0.12), rgba(35, 131, 94, 0.2));
  color: var(--navy);
  border: 1px solid rgba(35, 131, 94, 0.14);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.2rem;
}

.nav-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--navy);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.home-slider {
  padding: 1.6rem 0 4.4rem;
}

.home-slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--navy-deep);
  box-shadow: 0 30px 70px rgba(8, 24, 39, 0.16);
}

.home-slider-track {
  position: relative;
  min-height: 38rem;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8%);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    visibility 0s linear 0.9s;
}

.home-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.home-slide.is-enter-next,
.home-slide.is-enter-prev,
.home-slide.is-active.is-leaving-next,
.home-slide.is-active.is-leaving-prev {
  visibility: visible;
}

.home-slide.is-enter-next {
  transform: translateX(100%);
}

.home-slide.is-enter-prev {
  transform: translateX(-100%);
}

.home-slide.is-active.is-leaving-next {
  opacity: 0;
  transform: translateX(-14%);
}

.home-slide.is-active.is-leaving-prev {
  opacity: 0;
  transform: translateX(14%);
}

.home-slide-media,
.home-slide-overlay {
  position: absolute;
  inset: 0;
}

.home-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.78) 0%, rgba(8, 24, 39, 0.46) 48%, rgba(8, 24, 39, 0.16) 100%),
    linear-gradient(180deg, rgba(16, 43, 70, 0.04), rgba(16, 43, 70, 0.36));
}

.home-slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 38rem;
  max-width: 43rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 4rem 3.2rem 4.6rem;
  color: var(--white);
}

.home-slide-content .eyebrow,
.home-slide-content .lead,
.home-slide-price span {
  color: rgba(255, 255, 255, 0.84);
}

.home-slide-content h1 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.9rem, 5.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.home-slide-content .lead {
  margin: 0;
  max-width: 34rem;
}

.home-slide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.home-slide-price {
  display: grid;
  gap: 0.25rem;
}

.home-slide-price strong {
  color: var(--white);
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.home-slider-controls {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-slider-arrow,
.home-slider-dots button {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.home-slider-arrow {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1.12rem;
  backdrop-filter: blur(16px);
}

.home-slider-arrow:hover,
.home-slider-dots button:hover {
  transform: translateY(-2px);
}

.home-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 24, 39, 0.28);
  backdrop-filter: blur(16px);
}

.home-slider-dots button {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.home-slider-dots button.is-active {
  width: 2rem;
  background: linear-gradient(135deg, var(--green), #8fd2b5);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(35, 131, 94, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-home {
  padding: 6rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2,
.two-column h2,
.deal-card h2,
.contact-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
}

.lead {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 42rem;
}

.destination-hub-subtitle {
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(35, 131, 94, 0.24);
}

.button-secondary {
  background: rgba(16, 43, 70, 0.05);
  color: var(--navy);
  border: 1px solid rgba(16, 43, 70, 0.08);
}

.card-button {
  margin-top: 1rem;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.hero-stats div {
  min-width: 7rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
}

.hero-stats span {
  color: var(--muted);
}

.hero-card,
.info-card,
.cta-panel,
.testimonial-card,
.feature-card,
.destination-card,
.travel-card,
.deal-card,
.contact-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.scenic-card {
  position: relative;
  min-height: 34rem;
  border-radius: 2.2rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 43, 70, 0.14), rgba(16, 43, 70, 0.34));
}

.scenic-layer {
  position: absolute;
  inset: 0;
}

.scenic-layer-one {
  background:
    linear-gradient(180deg, rgba(18, 44, 68, 0.18), rgba(18, 44, 68, 0.55)),
    linear-gradient(140deg, #86c7d8 0%, #dce9ee 35%, #98c08f 65%, #3e6d52 100%);
}

.scenic-layer-two {
  inset: auto 0 0 0;
  height: 58%;
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(8, 32, 29, 0.32)),
    linear-gradient(180deg, rgba(77, 128, 91, 0.85), rgba(31, 61, 45, 0.92));
  clip-path: polygon(0 38%, 18% 28%, 34% 48%, 53% 24%, 72% 42%, 100% 18%, 100% 100%, 0 100%);
}

.floating-panel {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 17rem;
  padding: 1.3rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 20px 40px rgba(8, 24, 39, 0.12);
}

.floating-panel p,
.floating-panel span {
  margin: 0;
  color: var(--muted);
}

.floating-panel strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1.1rem;
}

.section {
  padding: 2.5rem 0 5.5rem;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(232, 244, 238, 0.48), rgba(255, 255, 255, 0));
}

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

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.feature-grid,
.testimonial-grid,
.destination-grid,
.card-grid-three,
.deal-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

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

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

.feature-card,
.testimonial-card {
  padding: 1.85rem;
  border-radius: var(--radius-sm);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-card-media {
  overflow: hidden;
  margin: -0.65rem -0.65rem 0;
  border-radius: 16px;
}

.testimonial-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.testimonial-card:hover .testimonial-card-media img {
  transform: scale(1.04);
}

.testimonial-card strong {
  color: var(--navy);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card h3,
.destination-card h3,
.travel-card h3,
.contact-card h3,
.site-footer h3 {
  margin-top: 0;
  color: var(--navy);
}

.feature-card p,
.testimonial-card p,
.destination-body p,
.travel-card-body p,
.deal-card p,
.contact-card p,
.site-footer p,
.two-column p {
  color: var(--muted);
  line-height: 1.75;
}

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

.popular-destination-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
}

.popular-destination-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(16, 43, 70, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 42px rgba(8, 24, 39, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.popular-destination-card:hover {
  transform: translateY(-8px);
  border-color: rgba(35, 131, 94, 0.18);
  box-shadow: 0 28px 56px rgba(8, 24, 39, 0.14);
}

.popular-destination-card:nth-child(4),
.popular-destination-card:nth-child(5) {
  grid-column: span 6;
}

.popular-destination-media {
  position: relative;
  overflow: hidden;
}

.popular-destination-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 43, 70, 0.04), rgba(16, 43, 70, 0.22));
  pointer-events: none;
}

.popular-destination-media img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.popular-destination-card:hover .popular-destination-media img {
  transform: scale(1.05);
}

.popular-destination-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.55rem;
}

.popular-destination-body span {
  color: var(--green);
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.popular-destination-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.12;
  font-family: "Playfair Display", serif;
}

.popular-destination-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.intro-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.intro-story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.72fr);
  gap: 1.6rem;
  align-items: stretch;
}

.intro-story-copy,
.intro-story-note {
  border-radius: var(--radius);
  border: 1px solid rgba(16, 43, 70, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.intro-story-copy {
  padding: 2.2rem;
}

.intro-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.95;
}

.intro-story-copy p + p {
  margin-top: 1.15rem;
}

.intro-story-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 244, 238, 0.9)),
    rgba(255, 255, 255, 0.92);
}

.intro-story-note span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-story-note p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.destination-card,
.travel-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.destination-body,
.travel-card-body {
  padding: 1.55rem;
}

.destination-body span {
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.destination-visual {
  min-height: 15rem;
  background-size: cover;
  background-position: center;
}

.visual-cape {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.32), rgba(35, 131, 94, 0.12)), url("assets/images/destinations/shared/cape-town.jpg");
}

.visual-mauritius {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.24), rgba(35, 131, 94, 0.14)), url("assets/images/destinations/shared/mauritius.jpg");
}

.visual-dubai {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.34), rgba(35, 131, 94, 0.08)), url("assets/images/destinations/shared/dubai.jpg");
}

.visual-zanzibar {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.24), rgba(35, 131, 94, 0.14)), url("assets/images/destinations/shared/zanzibar-handpicked.jpg");
}

.visual-thailand {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.24), rgba(35, 131, 94, 0.12)), url("assets/images/home-slider/thailand.jpg");
}

.visual-kruger {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.28), rgba(35, 131, 94, 0.08)), url("assets/images/destinations/shared/kruger.jpg");
}

.visual-paris {
  background-image: linear-gradient(135deg, rgba(15, 39, 64, 0.28), rgba(35, 131, 94, 0.08)), url("assets/images/destinations/shared/europe.jpg");
}

.visual-cape,
.visual-mauritius,
.visual-dubai,
.visual-zanzibar,
.visual-thailand,
.visual-kruger,
.visual-paris {
  background-size: cover;
  background-position: center;
}

.cta-panel {
  border-radius: var(--radius);
  padding: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(16, 43, 70, 0.98), rgba(18, 78, 74, 0.92)),
    var(--navy);
  box-shadow: 0 28px 56px rgba(8, 24, 39, 0.16);
}

.cta-panel h2,
.cta-panel .eyebrow {
  color: var(--white);
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: start;
}

.info-card,
.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.check-list {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

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

.destination-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--white);
}

.destination-hub-grid,
.gallery-grid,
.faq-grid {
  display: grid;
  gap: 1.4rem;
}

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

.destination-hub-card {
  box-shadow: 0 22px 46px rgba(8, 24, 39, 0.1);
}

.destination-hub-link {
  display: block;
  height: 100%;
}

.destination-hub-media {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
}

.destination-hub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.destination-hub-card:hover .destination-hub-media img {
  transform: scale(1.05);
}

.destination-detail-hero {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
}

.destination-detail-hero-image,
.destination-detail-hero-overlay {
  position: absolute;
  inset: 0;
}

.destination-detail-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-detail-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 24, 39, 0.28), rgba(8, 24, 39, 0.68)),
    linear-gradient(120deg, rgba(16, 43, 70, 0.14), rgba(35, 131, 94, 0.08));
}

.destination-detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.2rem;
  color: var(--white);
}

.mauritius-hero {
  position: relative;
  min-height: 40rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
}

.mauritius-hero-image,
.mauritius-hero-overlay {
  position: absolute;
  inset: 0;
}

.mauritius-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mauritius-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0.2), rgba(7, 18, 31, 0.76)),
    linear-gradient(120deg, rgba(16, 43, 70, 0.32), rgba(35, 131, 94, 0.12));
}

.mauritius-hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 4.75rem;
  color: var(--white);
}

.mauritius-hero-content h1,
.mauritius-hero-content .lead {
  color: var(--white);
  max-width: 42rem;
}

.mauritius-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.mauritius-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.mauritius-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.8rem;
  align-items: start;
}

.mauritius-intro-copy p:last-child {
  margin-bottom: 0;
}

.mauritius-collection-nav,
.mauritius-trust-card,
.mauritius-collection-section {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mauritius-collection-nav {
  padding: 1.6rem;
  border-radius: var(--radius);
}

.mauritius-collection-links {
  display: grid;
  gap: 0.75rem;
}

.mauritius-collection-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(16, 43, 70, 0.04);
  color: var(--navy);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mauritius-collection-link::after {
  content: "Explore";
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mauritius-collection-link:hover {
  transform: translateY(-2px);
  background: rgba(35, 131, 94, 0.1);
  box-shadow: 0 14px 28px rgba(8, 24, 39, 0.08);
}

.mauritius-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.mauritius-trust-card {
  padding: 1.55rem;
  border-radius: var(--radius-sm);
}

.mauritius-trust-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 131, 94, 0.16), rgba(16, 43, 70, 0.08));
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mauritius-trust-card h3 {
  margin: 0 0 0.55rem;
}

.mauritius-trust-card p,
.mauritius-collection-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mauritius-collections-stack {
  display: grid;
  gap: 1.6rem;
}

.mauritius-collection-section {
  padding: 1.8rem;
  border-radius: var(--radius);
}

.mauritius-collection-heading {
  margin-bottom: 1.3rem;
}

.mauritius-collection-heading h2 {
  margin: 0 0 0.65rem;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.mauritius-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.mauritius-package-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(16, 43, 70, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 247, 0.96));
  box-shadow: 0 22px 44px rgba(8, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hotel-click-card {
  cursor: pointer;
}

.mauritius-package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 131, 94, 0.18);
  box-shadow: 0 28px 52px rgba(8, 24, 39, 0.12);
}

.mauritius-package-media {
  overflow: hidden;
}

.mauritius-package-media img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mauritius-package-card:hover .mauritius-package-media img {
  transform: scale(1.04);
}

.mauritius-package-body {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
}

.mauritius-package-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.mauritius-package-label {
  margin: 0 0 0.4rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mauritius-package-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.38rem;
  line-height: 1.2;
}

.mauritius-package-stars {
  flex-shrink: 0;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 43, 70, 0.05);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mauritius-package-description,
.mauritius-package-description p {
  color: var(--muted);
  line-height: 1.72;
}

.mauritius-package-description {
  display: grid;
  gap: 0.65rem;
}

.mauritius-package-description p {
  margin: 0;
}

.mauritius-package-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.mauritius-package-facts div,
.mauritius-package-inclusions {
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(16, 43, 70, 0.04);
}

.mauritius-package-facts span,
.mauritius-package-inclusions span,
.mauritius-package-price span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mauritius-package-facts strong,
.mauritius-package-price strong {
  color: var(--navy);
  line-height: 1.5;
}

.mauritius-package-inclusions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.mauritius-package-inclusions {
  display: grid;
  gap: 0.45rem;
}

.mauritius-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.mauritius-package-price strong {
  font-size: 1.42rem;
}

.mauritius-package-footer .button {
  min-width: 10rem;
}

.mauritius-package-footer .offer-actions {
  flex: 1 1 28rem;
}

.mauritius-package-footer .offer-actions .button {
  min-width: 0;
}

.mauritius-quote-panel {
  box-shadow: 0 30px 56px rgba(8, 24, 39, 0.18);
}

.destination-detail-hero-content h1,
.destination-detail-hero-content .lead {
  color: var(--white);
}

.destination-detail-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.destination-overview-grid {
  align-items: stretch;
}

.destination-overview-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.95rem 1rem 1.05rem;
  color: var(--navy);
  font-weight: 700;
}

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

.faq-item {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.destination-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(16, 43, 70, 0.05);
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(16, 43, 70, 0.07);
}

.destination-sections {
  display: grid;
  gap: 2rem;
}

.offer-section {
  padding: 2.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.offer-heading {
  margin-bottom: 1.5rem;
}

.offer-hero-banner {
  position: relative;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(8, 24, 39, 0.12);
}

.offer-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 43, 70, 0.08), rgba(16, 43, 70, 0.22));
  pointer-events: none;
}

.offer-hero-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.offer-group-heading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.35rem;
  padding: 1rem 0 0.25rem;
}

.offer-group-heading h3,
.offer-group-heading p {
  margin: 0;
}

.offer-group-heading h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.35;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem;
  border: 1px solid rgba(16, 43, 70, 0.09);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 245, 0.92)),
    linear-gradient(135deg, rgba(35, 131, 94, 0.05), rgba(16, 43, 70, 0.02));
  box-shadow: 0 16px 36px rgba(8, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 131, 94, 0.2);
  box-shadow: 0 24px 46px rgba(8, 24, 39, 0.1);
}

.offer-card-media {
  overflow: hidden;
  border-radius: 18px;
  margin: -0.2rem -0.2rem 0.25rem;
  box-shadow: 0 14px 28px rgba(8, 24, 39, 0.08);
}

.offer-card-media img {
  display: block;
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.offer-card:hover .offer-card-media img {
  transform: scale(1.04);
}

.offer-card h3,
.offer-card p {
  margin: 0;
}

.offer-card h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.3;
}

.offer-overview {
  color: var(--text) !important;
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 34ch;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.65;
}

.offer-destination {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.25rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-meta {
  color: var(--green) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.offer-star-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0.78rem;
  border-radius: 12px;
  background: rgba(35, 131, 94, 0.08);
  color: var(--navy) !important;
  font-size: 0.86rem;
  line-height: 1.35;
}

.offer-star-rating span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-star-rating strong {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.offer-travel-dates {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(16, 43, 70, 0.05);
  color: var(--navy) !important;
  font-weight: 700;
  line-height: 1.5;
}

.offer-card .deal-price {
  margin-top: 0.3rem;
}

.offer-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.45rem;
}

.offer-actions .button {
  width: 100%;
}

.button-whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: #147a3d;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.hotel-detail-hero {
  position: relative;
  min-height: 34rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}

.hotel-detail-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-detail-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.86), rgba(8, 24, 39, 0.52) 48%, rgba(8, 24, 39, 0.22)),
    linear-gradient(180deg, rgba(8, 24, 39, 0.08), rgba(8, 24, 39, 0.62));
}

.hotel-detail-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 34rem;
  max-width: 50rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hotel-detail-hero-content h1 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
}

.hotel-detail-hero-content .eyebrow,
.hotel-detail-hero-content .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hotel-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.hotel-detail-main,
.hotel-detail-summary,
.hotel-detail-inclusions,
.hotel-terms {
  border: 1px solid rgba(16, 43, 70, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hotel-detail-main {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
}

.hotel-detail-main h2,
.hotel-detail-main p {
  margin: 0;
}

.hotel-detail-main h2 {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.hotel-detail-main p,
.hotel-detail-copy p,
.hotel-detail-inclusions p,
.hotel-terms li {
  color: var(--muted);
  line-height: 1.75;
}

.hotel-detail-copy {
  display: grid;
  gap: 0.75rem;
}

.hotel-detail-copy p {
  margin: 0;
}

.hotel-detail-image-card {
  overflow: hidden;
  border-radius: 1.25rem;
}

.hotel-detail-image-card img {
  display: block;
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.hotel-detail-summary {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.75rem;
  padding: 1.3rem;
}

.hotel-detail-summary div {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(16, 43, 70, 0.045), rgba(35, 131, 94, 0.075));
}

.hotel-detail-summary span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-detail-summary strong {
  color: var(--navy);
  line-height: 1.45;
}

.hotel-detail-inclusions,
.hotel-terms {
  padding: 1.6rem;
}

.hotel-detail-inclusion-copy {
  max-width: 68rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(16, 43, 70, 0.045);
}

.hotel-terms .section-heading {
  margin-bottom: 1rem;
}

@media (max-width: 980px) {
  .hotel-detail-grid {
    grid-template-columns: 1fr;
  }

  .hotel-detail-summary {
    position: static;
  }

  .offer-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hotel-detail-hero,
  .hotel-detail-hero-content {
    min-height: 28rem;
  }

  .hotel-detail-hero-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hotel-detail-main,
  .hotel-detail-summary,
  .hotel-detail-inclusions,
  .hotel-terms {
    padding: 1.2rem;
  }

  .hotel-detail-image-card img {
    height: 16rem;
  }
}

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

.deal-card {
  padding: 1.95rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.deal-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
}

.deal-price {
  margin: 1rem 0 0.2rem;
  color: var(--navy) !important;
  font-size: 1.8rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--navy);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 43, 70, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(8, 24, 39, 0.03);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(35, 131, 94, 0.42);
  box-shadow: 0 0 0 4px rgba(35, 131, 94, 0.08);
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.flights-highlight,
.flight-hero-panel,
.flight-option-card,
.flight-point-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.flights-highlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(35, 131, 94, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 247, 0.96));
}

.flights-highlight-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.flights-highlight-copy h2,
.flight-quote-intro h2,
.flight-option-card h3 {
  margin: 0;
  color: var(--navy);
}

.flights-highlight-copy p:not(.eyebrow),
.flight-quote-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.flights-highlight-points,
.flight-quote-points {
  display: grid;
  gap: 1rem;
}

.flight-point-card {
  padding: 1.35rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.flight-point-icon,
.flight-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 131, 94, 0.16), rgba(16, 43, 70, 0.12));
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.flight-point-card h3,
.flight-point-card p {
  margin: 0.85rem 0 0;
}

.flight-point-card p {
  color: var(--muted);
}

.flight-hero {
  padding: 1.6rem 0 1rem;
}

.flight-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 42vw, 500px);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: calc(var(--radius) + 0.35rem);
  background:
    radial-gradient(circle at top right, rgba(143, 210, 181, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(8, 24, 39, 0.96), rgba(16, 43, 70, 0.92));
  isolation: isolate;
}

.flight-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(8, 24, 39, 0.84), rgba(8, 24, 39, 0.58) 44%, rgba(8, 24, 39, 0.86)),
    url("assets/images/home-slider/south-africa.jpg") left center / 58% auto no-repeat,
    url("assets/images/home-slider/europe.jpg") right center / 58% auto no-repeat;
  opacity: 0.78;
  transform: scale(1.02);
}

.flight-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 220'%3E%3Cpath fill='rgba(255,255,255,0.18)' d='M391 84c-9-14-31-15-50-4l-80 46-128-68-30 17 94 86-68 39-48-24-24 14 57 58 96-55 48 44 29-17-28-71 94-54c22-13 44-26 38-37Z'/%3E%3C/svg%3E") right 2rem top 1rem / min(42vw, 24rem) auto no-repeat,
    linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at bottom right, rgba(35, 131, 94, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(8, 24, 39, 0.18), rgba(8, 24, 39, 0.42));
  pointer-events: none;
}

.flight-hero-panel > * {
  position: relative;
  z-index: 1;
}

.flight-hero-panel h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.flight-hero-panel .eyebrow,
.flight-hero-panel .lead {
  color: rgba(255, 255, 255, 0.86);
}

.flight-hero-panel .lead {
  max-width: 38rem;
}

.flight-airline-section {
  padding-top: 0.8rem;
  padding-bottom: 2.8rem;
}

.flight-airline-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 43, 70, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 238, 0.62));
  box-shadow: var(--shadow);
}

.flight-airline-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 39, 0.02), rgba(8, 24, 39, 0.16)),
    radial-gradient(circle at top right, rgba(35, 131, 94, 0.12), transparent 28%);
  pointer-events: none;
}

.flight-airline-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.flight-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.flight-option-card {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.flight-option-card:hover,
.flight-point-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(35, 131, 94, 0.16);
}

.flight-option-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.flight-option-card p {
  margin: 0;
  color: var(--muted);
}

.flight-quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}

.flight-quote-intro {
  display: grid;
  gap: 1rem;
}

.flight-quote-form .button {
  width: 100%;
}

.contact-details .mini-note {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(16, 43, 70, 0.1);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-strip-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(35, 131, 94, 0.08);
}

.contact-strip-links a,
.footer-bottom-links a,
.footer-grid a {
  transition: opacity 0.2s ease, color 0.2s ease;
}

.contact-strip-links a:hover,
.footer-bottom-links a:hover,
.footer-grid a:hover {
  opacity: 0.82;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  min-height: 3.6rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #179c4a);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(23, 156, 74, 0.26);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-social {
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social h3 {
  margin-bottom: 0.9rem;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  background: rgba(35, 131, 94, 0.16);
  border-color: rgba(143, 210, 181, 0.32);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 131, 94, 0.95), rgba(22, 93, 68, 0.95));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-bottom {
  padding: 1.6rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-layout {
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(8, 24, 39, 0.08);
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-family: "Playfair Display", serif;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .offer-grid,
  .mauritius-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .destination-grid,
  .popular-destination-grid,
  .destination-hub-grid,
  .flight-option-grid,
  .card-grid-three,
  .deal-grid,
  .two-column,
  .contact-layout,
  .flight-quote-layout,
  .testimonial-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mauritius-intro-grid,
  .mauritius-package-grid {
    grid-template-columns: 1fr;
  }

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

  .split-heading,
  .cta-panel,
  .contact-strip,
  .flights-highlight {
    align-items: start;
    flex-direction: column;
  }

  .scenic-card {
    min-height: 24rem;
  }

  .popular-destination-card,
  .popular-destination-card:nth-child(4),
  .popular-destination-card:nth-child(5) {
    grid-column: span 12;
  }

  .home-slider-track,
  .home-slide-content {
    min-height: 31rem;
  }

  .home-slide-content {
    max-width: 100%;
    padding: 3rem 2rem 5.2rem;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
  }

  .brand {
    padding-right: 0.15rem;
  }

  .brand-logo {
    width: clamp(4.55rem, 19.6vw, 5.49rem);
  }

  .home-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .flights-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .destinations-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .deals-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .about-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .contact-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .destination-detail-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .thailand-page .brand-logo {
    width: clamp(2.73rem, 11.76vw, 3.29rem);
  }

  .hotel-detail-page .brand-logo {
    width: clamp(2.32rem, 10vw, 2.8rem);
  }

  .brand-logo-footer {
    width: clamp(5.18rem, 23.52vw, 6.08rem);
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    margin-top: 0.45rem;
    padding: 0.85rem;
    border: 1px solid rgba(16, 43, 70, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 36px rgba(8, 24, 39, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.65rem 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 0.35rem;
    justify-content: center;
    text-align: center;
  }

  .home-slider {
    padding-top: 1rem;
  }

  .home-slider-shell {
    border-radius: 1.4rem;
  }

  .home-slider-track,
  .home-slide-content {
    min-height: 32rem;
  }

  .destination-detail-hero {
    min-height: 28rem;
  }

  .mauritius-hero {
    min-height: 30rem;
  }

  .destination-detail-hero-content {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .home-slide-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .section {
    padding: 1.8rem 0 4rem;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .offer-actions {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    font-size: 0.92rem;
  }

  .footer-grid,
  .footer-bottom-links div,
  .contact-strip-links {
    gap: 0.75rem;
  }

  .footer-social-links {
    width: 100%;
  }

  .home-slide-footer {
    align-items: start;
    flex-direction: column;
  }

  .home-slide-footer .button {
    width: 100%;
  }

  .home-slider-controls {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    justify-content: space-between;
  }

  .home-slider-dots {
    flex: 1;
    justify-content: center;
  }

  .mauritius-package-facts {
    grid-template-columns: 1fr;
  }

  .mauritius-package-footer {
    align-items: start;
    flex-direction: column;
  }

  .mauritius-package-footer .button {
    width: 100%;
    min-width: 0;
  }

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

  .flight-hero-panel {
    min-height: clamp(220px, 58vw, 320px);
    padding: 1.8rem 1.35rem;
    border-radius: 1.15rem;
  }

  .flight-hero {
    padding: 1rem 0 0.8rem;
  }

  .flight-hero-panel::before {
    background:
      linear-gradient(115deg, rgba(8, 24, 39, 0.86), rgba(8, 24, 39, 0.62) 46%, rgba(8, 24, 39, 0.88)),
      url("assets/images/home-slider/south-africa.jpg") center / cover no-repeat;
  }

  .flight-hero-panel::after {
    background:
      linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 36%),
      radial-gradient(circle at bottom right, rgba(35, 131, 94, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(8, 24, 39, 0.18), rgba(8, 24, 39, 0.42));
  }

  .flights-highlight {
    grid-template-columns: 1fr;
    padding: 1.55rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: auto;
  }
}

@media (max-width: 680px) {
  .offer-grid,
  .footer-grid,
  .destination-hub-grid,
  .gallery-grid,
  .faq-grid,
  .mauritius-trust-grid {
    grid-template-columns: 1fr;
  }

  .popular-destination-media img {
    height: 14rem;
  }

  .home-slide-content {
    padding: 2.2rem 1.2rem 5rem;
  }

  .home-slider-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero-actions,
  .contact-strip-links,
  .flights-highlight-points,
  .footer-bottom-links div {
    width: 100%;
  }

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

  .hero-actions .button,
  .contact-strip-links a,
  .footer-bottom-links div a {
    width: 100%;
  }

  .footer-social-links a {
    width: 100%;
    justify-content: center;
  }

  .contact-strip,
  .flights-highlight,
  .offer-section,
  .cta-panel,
  .contact-card,
  .info-card,
  .legal-card {
    padding: 1.55rem;
  }

  .offer-hero-banner img {
    aspect-ratio: 16 / 9;
  }

  .offer-card-media img {
    height: 11.25rem;
  }

  .mauritius-hero-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .intro-story-copy,
  .intro-story-note {
    padding: 1.55rem;
  }

  .flight-option-card,
  .flight-point-card {
    padding: 1.35rem;
  }

  .mauritius-package-media img {
    height: 13rem;
  }

  .mauritius-collection-section,
  .mauritius-collection-nav {
    padding: 1.4rem;
  }
}

.f1-hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 4.4rem;
  background:
    linear-gradient(120deg, rgba(8, 24, 39, 0.88), rgba(16, 43, 70, 0.62)),
    url("assets/images/destinations/dubai/hero.jpg") center/cover no-repeat;
}

.f1-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, rgba(8, 24, 39, 0), rgba(8, 24, 39, 0.42));
}

.f1-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  color: var(--white);
}

.f1-hero-inner .eyebrow,
.f1-hero-inner .lead {
  color: rgba(255, 255, 255, 0.86);
}

.f1-hero-inner h1 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.f1-intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.f1-intro-pill,
.f1-mini-card,
.f1-highlight,
.f1-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.f1-intro-pill {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.8);
}

.f1-intro-pill strong {
  color: var(--navy);
}

.f1-intro-pill span {
  color: var(--muted);
  font-size: 0.95rem;
}

.f1-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.f1-mini-card,
.f1-card {
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.f1-mini-card:hover,
.f1-card:hover,
.f1-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(8, 24, 39, 0.12);
}

.f1-mini-media img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.f1-mini-body {
  display: grid;
  gap: 0.55rem;
  padding: 1.4rem;
}

.f1-mini-body span,
.f1-card-kicker {
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.f1-mini-body h3,
.f1-card-body h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  line-height: 1.16;
}

.f1-mini-body p,
.f1-card-body p {
  margin: 0;
  color: var(--muted);
}

.f1-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 244, 238, 0.7));
}

.f1-highlight-copy {
  display: grid;
  gap: 0.85rem;
}

.f1-highlight-copy h2,
.f1-concierge h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  line-height: 1.1;
}

.f1-highlight-media img {
  width: 100%;
  height: 18rem;
  border-radius: 1.3rem;
  object-fit: cover;
}

.f1-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.f1-card-media {
  position: relative;
}

.f1-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 39, 0.02), rgba(8, 24, 39, 0.2));
}

.f1-card-media img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
}

.f1-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.45rem;
}

.f1-card-placeholder {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(16, 43, 70, 0.04), rgba(35, 131, 94, 0.08));
  border: 1px solid rgba(16, 43, 70, 0.08);
}

.f1-card-placeholder p strong {
  color: var(--navy);
}

.f1-concierge {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 980px) {
  .f1-mini-grid,
  .f1-package-grid,
  .f1-intro-band,
  .f1-highlight,
  .f1-concierge {
    grid-template-columns: 1fr;
  }

  .f1-highlight-media img {
    height: 16rem;
  }
}

@media (max-width: 680px) {
  .destination-hub-subtitle {
    font-size: 0.95rem;
  }

  .f1-hero {
    padding: 4.2rem 0 3.3rem;
  }

  .f1-card-body,
  .f1-mini-body,
  .f1-highlight,
  .f1-intro-pill {
    padding: 1.25rem;
  }

  .f1-card-media img,
  .f1-mini-media img,
  .f1-highlight-media img {
    height: 13rem;
  }
}
