@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Brand Color Palette from logo */
  --navy: #1B3A72;        /* Logo primary navy blue */
  --navy-2: #122850;      /* Darker shade of navy for hover and section contrasts */
  --navy-3: #0c1b36;      /* Extremely deep navy background */
  --orange: #E8622C;      /* Logo orange */
  --orange-light: rgba(232, 98, 44, 0.08);
  --amber: #F5A628;       /* Logo amber/yellow */
  --amber-light: rgba(245, 166, 40, 0.08);
  --cream: #faf9f6;       /* Premium warm light background */
  --paper: #ffffff;       /* Solid white */
  
  /* Ink & Text Colors */
  --ink: #0f172a;         /* High-contrast dark slate */
  --ink-soft: #475569;    /* Muted body text slate */
  
  /* Utility & Design Tokens */
  --line: rgba(27, 58, 114, 0.08);
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 24px 48px rgba(15, 23, 42, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-2);
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* ===== NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 27, 63, 0.0);
  transition: var(--transition);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0);
}

header.scrolled, header.solid {
  background: rgba(12, 27, 54, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(12, 27, 54, 0.15);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo span.travels {
  color: var(--amber);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transition: var(--transition);
  border-radius: 4px;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(232, 98, 44, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 98, 44, 0.45);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HOME HERO CAROUSEL ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: opacity 1.6s ease, transform 6s ease;
}

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

.slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.72) 0%, 
    rgba(0, 0, 0, 0.55) 50%, 
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 32px 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--amber);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 5.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber) 30%, #ffdf9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--amber); /* Fallback */
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 28px auto 0;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(232, 98, 44, 0.35);
  transition: var(--transition);
  border: none;
}

.btn-primary i {
  transition: transform 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(232, 98, 44, 0.5);
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.btn-ghost i {
  transition: transform 0.25s ease;
}

.btn-ghost:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.btn-ghost:hover i {
  transform: translateX(4px);
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-dots {
  display: flex;
  gap: 12px;
  margin: 0 auto;
}

.hero-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.hero-dot span {
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.active {
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active span {
  animation: fillDot 5.5s linear forwards;
}

@keyframes fillDot {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-caption {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: absolute;
  left: 32px;
}

.hero-arrows {
  display: flex;
  gap: 12px;
  position: absolute;
  right: 32px;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110px;
  z-index: 6;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  animation: cueMove 2s ease-in-out infinite;
}

@keyframes cueMove {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50% { transform: scaleY(0.4); opacity: 1; transform-origin: top; }
}

/* ===== INNER PAGE BANNER ===== */
.banner {
  position: relative;
  height: 65vh;             /* Enhanced height */
  min-height: 480px;        /* Enhanced height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.72) 0%, 
    rgba(0, 0, 0, 0.55) 50%, 
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 32px;
}

.banner .crumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  display: block;
}

.banner h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.banner p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTION LAYOUTS ===== */
section {
  padding: 140px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 70px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  margin-top: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(12, 27, 54, 0.1);
}

.about-img img {
  height: 560px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.8s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

.stat-float {
  position: absolute;
  bottom: 26px;
  left: 26px;
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(12, 27, 54, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-float .num {
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-float .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Space Mono', monospace;
}

.about-copy p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-top: 22px;
}

.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-row div .n {
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--navy);
  line-height: 1;
}

.stat-row div .l {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== MISSION / VISION (MV) ===== */
.mv {
  background: var(--navy-3);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mv::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 44, 0.12), transparent 70%);
  top: -250px;
  right: -250px;
  pointer-events: none;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.mv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.mv-card .tag {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(232, 98, 44, 0.3);
}

.mv-card:nth-child(2) .tag {
  background: var(--amber);
  box-shadow: 0 10px 25px rgba(245, 166, 40, 0.3);
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #fff;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.02rem;
}

.mv-quote {
  margin-top: 70px;
  text-align: center;
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--amber);
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

/* ===== CORE VALUES ===== */
.values {
  background: var(--cream);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px 26px;
  border: 1px solid var(--line);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 58, 114, 0.15);
}

.value-card .vi {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 700;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== SERVICES (Boarding Passes) ===== */
.services {
  background: var(--paper);
}

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

.pass {
  position: relative;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  min-height: 220px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.pass:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 58, 114, 0.16);
}

.pass-main {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pass-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 16px;
  background: rgba(232, 98, 44, 0.08);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pass:hover .pass-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

.pass-main h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 700;
}

.pass-main p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.pass-stub {
  width: 68px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.pass:hover .pass-stub {
  background: var(--navy-2);
}

.pass-stub span {
  writing-mode: vertical-rl;
  color: var(--amber);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(180deg);
  font-weight: 600;
}

.pass-stub::before, .pass-stub::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--paper); /* Matches .services background color */
  border-radius: 50%;
  left: -10px;
  z-index: 2;
}

.pass-stub::before { top: -10px; }
.pass-stub::after { bottom: -10px; }

.pass::before {
  content: '';
  position: absolute;
  right: 68px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 2px dashed rgba(27, 58, 114, 0.15);
  z-index: 1;
}

/* Service Detail Block (Services Page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .sd-img {
  order: 2;
}

.sd-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 27, 54, 0.08);
}

.sd-img img {
  height: 420px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.8s ease;
}

.sd-img:hover img {
  transform: scale(1.03);
}

.sd-num {
  font-family: 'Space Mono', monospace;
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}

.sd-copy h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.sd-copy p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.sd-copy ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.sd-copy ul li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  padding: 12px 0 12px 32px;
  position: relative;
  border-top: 1px solid var(--line);
}

.sd-copy ul li:first-child {
  border-top: none;
}

.sd-copy ul li::before {
  content: '\f178';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-size: 0.9rem;
}

/* ===== DESTINATIONS SECTION ===== */
.dest {
  background: var(--navy-3);
  color: #fff;
}

.dest .section-head h2 {
  color: #fff;
}

.dest .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  grid-column: span 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dest-card:nth-child(1), .dest-card:nth-child(4) {
  grid-row: span 2;
}

.dest-card:nth-child(2), .dest-card:nth-child(3), .dest-card:nth-child(5), .dest-card:nth-child(6) {
  grid-column: span 1;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 27, 54, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.dest-overlay h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
}

.dest-overlay span {
  font-size: 0.72rem;
  color: var(--amber);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Destinations Detail List (Destinations Page) */
.dest-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dest-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dest-row:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 58, 114, 0.15);
}

.dest-row .dr-img {
  height: 250px;
  overflow: hidden;
}

.dest-row .dr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-row:hover .dr-img img {
  transform: scale(1.05);
}

.dest-row .dr-copy {
  padding: 32px 48px 32px 0;
}

.dest-row .dr-copy span {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.dest-row .dr-copy h3 {
  font-size: 1.6rem;
  margin: 10px 0 12px;
  color: var(--navy);
}

.dest-row .dr-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}

/* ===== WHY CHOOSE US ===== */
.why {
  background: var(--cream);
}

.why-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.why-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: var(--transition);
}

.why-stamp {
  width: 80px;
  height: 80px;
  border: 2px dashed var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.4rem;
  background: var(--orange-light);
  transition: var(--transition);
}

.why-item:hover .why-stamp {
  transform: rotate(0deg) scale(1.06);
  background: var(--orange);
  color: #fff;
  border-style: solid;
  box-shadow: 0 8px 20px rgba(232, 98, 44, 0.3);
}

.why-item h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.why-item p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 720px;
}

/* ===== HOW WE WORK ===== */
.how {
  background: var(--paper);
}

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

.how-card {
  padding: 44px 32px;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 58, 114, 0.16);
  background: #ffffff;
}

.how-card .hi {
  font-size: 1.8rem;
  margin-bottom: 22px;
  color: var(--orange);
  background: var(--orange-light);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.how-card:hover .hi {
  background: var(--orange);
  color: #fff;
}

.how-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 700;
}

.how-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== TRUST / ACCREDITATIONS ===== */
.trust {
  background: var(--navy-2);
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.trust-item .ti {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.trust-item:hover .ti {
  background: var(--amber);
  color: var(--navy-3);
  transform: scale(1.05);
}

.trust-item .tt {
  font-size: 0.88rem;
  line-height: 1.45;
}

.trust-item .tt b {
  display: block;
  font-size: 0.98rem;
  color: #fff;
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.01em;
}

/* Certificates Grid (Contact Page) */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cert-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 58, 114, 0.16);
}

.cert-card .ci {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--orange);
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  border: 2px dashed var(--orange);
  transition: var(--transition);
}

.cert-card:hover .ci {
  background: var(--orange);
  color: #fff;
  border-style: solid;
  transform: scale(1.06);
}

.cert-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 98, 44, 0.1), transparent 70%);
  bottom: -200px;
  left: -200px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.cta-band .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 25px rgba(232, 98, 44, 0.3);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.ci-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ci-row .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(27, 58, 114, 0.15);
}

.ci-row b {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
  color: var(--navy);
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
}

.ci-row span {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(27, 58, 114, 0.12);
  border-radius: 12px;
  margin-bottom: 24px;
  font-family: inherit;
  font-size: 0.94rem;
  background: #fbfbfc;
  transition: var(--transition);
  color: var(--ink);
}

.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: none;
  border-color: var(--navy);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(27, 58, 114, 0.06);
}

.form-card textarea {
  resize: vertical;
  min-height: 120px;
}

.form-card button {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(232, 98, 44, 0.3);
  transition: var(--transition);
}

.form-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 98, 44, 0.45);
}

.map-box {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Avenir Light', 'Avenir-Light', 'Avenir Next', 'Avenir', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.foot-grid p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.65);
}

.foot-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-family: 'Space Mono', monospace;
}

.foot-col a, .foot-col div {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.foot-col a:hover {
  color: var(--amber);
  transform: translateX(4px);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .wrap {
    padding: 0 24px;
  }
  
  .about-grid {
    gap: 50px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0 120px;
  }
  
  .hero-content {
    padding: 10px 24px 60px;
  }
  
  header {
    padding: 16px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-img img {
    height: 420px;
  }
  
  .values-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-item {
    grid-template-columns: 90px 1fr;
    gap: 24px;
  }
  
  .why-stamp {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }
  
  .service-detail, .service-detail.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail.reverse .sd-img {
    order: 0;
  }
  
  .dest-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .dest-row .dr-copy {
    padding: 0 24px 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .cert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 100px 0;
  }
  
  .values-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .how-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .hero-controls {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
  }
  
  .hero-caption {
    position: static;
    width: auto;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.72rem;
  }
  
  .hero-dots {
    margin: 0;
    order: 2;
  }
  
  .hero-arrows {
    position: static;
    margin: 0;
    display: flex;
    gap: 16px;
    order: 1;
  }
  
  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  
  .scroll-cue {
    display: none;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 30px 24px;
  }
}
