/* ============================================================
   SUNTREK HOLIDAYS — style.css
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --red: #dc2626;
  --red-dark: #991b1b;
  --red-glow: rgba(220, 38, 38, 0.35);
  --gold: #f59e0b;
  --cream: #fdf8f3;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #16161f;
  --mid: #1e1e2e;
  --muted: rgba(255, 255, 255, 0.55);
  --white: #ffffff;
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-cursive: 'Dancing Script', cursive;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: none;
  transition: transform 0.3s var(--ease);
}

.nav-logo-img2 {
  border-left: 1.5px solid rgba(0, 0, 0, 0.12);
  padding-left: 0.75rem;
  margin-left: 0.25rem;
}

.nav-logo-img:hover,
.nav-logo-img2:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(20, 20, 30, 0.78);
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.05);
}

.nav-login-btn {
  margin-left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: #f8fafc;
  color: #1e293b;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid #cbd5e1;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-login-btn .nav-login-icon {
  font-size: 0.85rem;
  line-height: 1;
}

.nav-login-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1.4rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px var(--red-glow);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--red-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 2rem 1.5rem;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  color: rgba(20, 20, 30, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s;
}

.nav-mobile-link:hover {
  color: var(--dark);
}

.nav-mobile-link.nav-mobile-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1rem;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.nav-mobile-link.nav-mobile-login:hover {
  background: #0f172a;
  color: #ffffff;
}

.nav-mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.75rem;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
}

/* ============================================================
   LANDING PAGE HERO
   ============================================================ */
.landing-hero {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: var(--nav-h);
  display: block;
  overflow: hidden;
  background: #0d1b2a;
}

.landing-image-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.landing-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Tagline Overlay on Left */
.landing-overlay-left {
  position: absolute;
  top: 25%;
  left: 7.5rem;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 850px;
  width: max-content;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(10, 20, 35, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.55rem 1.45rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.pill-dot {
  color: var(--red);
  font-size: 0.85rem;
  opacity: 0.85;
}

.landing-headline {
  font-family: var(--font-cursive);
  font-optical-sizing: auto;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75), 0 2px 6px rgba(0, 0, 0, 0.85);
  transform: rotate(-5deg);
  transform-origin: left center;
}

.headline-line2 {
  white-space: nowrap;
  display: inline-block;
  color: #ffffff;
}

.landing-headline em {
  display: inline-block;
  font-family: var(--font-cursive);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #ef4444;
  text-shadow: 0 2px 18px rgba(239, 68, 68, 0.4), 0 2px 6px rgba(0, 0, 0, 0.85);
}

/* ============================================================
   TRIP TYPE CATEGORY RECTANGLE CARDS — Below Landing Page
   ============================================================ */
.trip-category-section {
  position: relative;
  background: transparent;
  padding: 0 2rem 2.2rem;
  margin-top: -245px;
  z-index: 25;
}

.trip-category-container {
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 200px;
}

.trip-cat-card {
  position: relative;
  min-height: 195px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  user-select: none;
}

/* Shift left card (Domestic) to the right by 40px */
#cat-card-domestic {
  left: 40px;
}

/* Left Side: Shrunk / Fitted Image */
.cat-card-left {
  flex: 0 0 40%;
  max-width: 40%;
  position: relative;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
  border-right: 1px solid #f1f5f9;
  transition: background 0.35s var(--ease);
}

.cat-card-img-box {
  width: 100%;
  height: 100%;
  min-height: 175px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.cat-split-img {
  width: 100%;
  height: 100%;
  max-height: 185px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

/* Right Side: Details & Actions */
.cat-card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  background: #ffffff;
}

.cat-card-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  background: #fef2f2;
  border: 1px solid #fee2e2;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.cat-active-tag {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #16a34a;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.cat-desc {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.45;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  background: #ffffff;
  border: 1.5px solid var(--red);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  transition: all 0.25s var(--ease);
  width: fit-content;
  white-space: nowrap;
}

.cat-arrow {
  transition: transform 0.25s var(--ease);
}

/* Hover Effect */
.trip-cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(220, 38, 38, 0.16);
}

.trip-cat-card:hover .cat-split-img {
  transform: scale(1.05);
}

.trip-cat-card:hover .cat-btn {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--red-glow);
}

.trip-cat-card:hover .cat-arrow {
  transform: translateX(4px);
}

/* Active State */
.trip-cat-card.active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2), 0 16px 36px rgba(220, 38, 38, 0.24);
  transform: translateY(-3px);
  background: #ffffff;
}

.trip-cat-card.active .cat-card-left {
  background: #fef2f2;
}

.trip-cat-card.active .cat-active-tag {
  display: inline-block;
}

.trip-cat-card.active .cat-btn {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--red-glow);
}

.dest-card.card-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .trip-category-section {
    position: relative;
    background: #ffffff;
    margin-top: 0;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .trip-category-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #cat-card-domestic {
    left: 0;
  }
}

@media (max-width: 600px) {
  .trip-category-section {
    padding: 2rem 1.25rem 1rem;
    margin-top: 0;
  }

  .trip-cat-card {
    flex-direction: column;
  }

  .cat-card-left {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 180px;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .cat-card-img-box {
    min-height: auto;
    height: 100%;
  }

  .cat-card-right {
    padding: 1.25rem;
  }

  .cat-title {
    font-size: 1.6rem;
  }
}

/* ============================================================
   ABOUT SECTION — Red & White Theme
   ============================================================ */
.about-section {
  position: relative;
  background: #ffffff;
  color: #1f2937;
  padding: 7rem 2rem;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #dc2626, #f87171, #dc2626);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.about-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.about-badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fee2e2;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.18;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.text-red {
  color: var(--red);
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #4b5563;
}

.about-intro strong {
  color: #111827;
  font-weight: 600;
}

/* Story, Mission, Vision Grid */
.smv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5.5rem;
}

.smv-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 20px;
  padding: 2.75rem 2.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
}

.smv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.10);
  border-color: rgba(220, 38, 38, 0.25);
}

.smv-card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.08);
}

.smv-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fee2e2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.smv-card:hover .smv-icon-wrap {
  transform: scale(1.08);
  background: var(--red);
  color: #ffffff;
}

.smv-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.smv-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.85rem;
  font-family: var(--font-sans);
}

.smv-desc {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.68;
}

/* Why Choose Us Block */
.why-block {
  margin-bottom: 5.5rem;
}

.block-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.2rem;
}

.block-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.block-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.block-sub {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 14px 36px rgba(220, 38, 38, 0.09);
}

.why-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #fef2f2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  background: #fee2e2;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
}

/* Promise & Ready to Explore Banner */
.promise-cta-card {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 60%, #991b1b 100%);
  border-radius: 28px;
  padding: 4.5rem 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.28);
}

.promise-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.promise-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.promise-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(10px);
}

.promise-quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 1.4rem;
  color: #ffffff;
}

.cta-message {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.cta-message strong {
  color: #ffffff;
  font-weight: 700;
}

.about-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.about-cta-btn:hover {
  background: #fef2f2;
  color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

/* ============================================================
   DESTINATIONS SECTION — 4 in a Row, Red & White Theme
   ============================================================ */
.destinations-section {
  position: relative;
  background: #fbfbfe;
  padding: 7rem 2rem;
  border-top: 1px solid #f1f5f9;
}

.destinations-container {
  max-width: 1300px;
  margin: 0 auto;
}

.destinations-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

.destinations-badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fee2e2;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.destinations-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.destinations-sub {
  font-size: 1.12rem;
  color: #4b5563;
  line-height: 1.65;
}

/* 4 In A Row Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 5.5rem;
}

/* Destination Card */
.dest-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.dest-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

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

.dest-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 15, 25, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dest-info {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #ffffff;
  flex-grow: 1;
}

.dest-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.dest-card:hover .dest-btn {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 4px 12px var(--red-glow);
  transform: translateX(2px);
}

/* More Locations (Special CTA card) */
.more-international-card .dest-btn {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.more-international-card:hover .dest-btn {
  background: var(--red-dark);
  box-shadow: 0 4px 14px var(--red-glow);
}

/* ============================================================
   DESTINATION DETAIL PAGE — Red & White Theme
   ============================================================ */
.dest-detail-page {
  background: #fbfbfe;
  min-height: 100vh;
  margin-top: var(--nav-h);
  padding: 2.5rem 2rem 6rem;
}

.dest-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dest-back-bar {
  margin-bottom: 1.5rem;
}

.dest-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  transition: all 0.25s var(--ease);
}

.dest-back-btn:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateX(-3px);
}

/* Detail Hero Banner */
.dest-detail-hero {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  border: 1.5px solid #f1f5f9;
}

.dest-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dest-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 25, 0.92) 0%, rgba(10, 15, 25, 0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: #ffffff;
}

.dest-detail-tag {
  align-self: flex-start;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 16px var(--red-glow);
}

.dest-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.dest-detail-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.meta-item strong {
  color: #fed7aa;
}

/* 2-Column Content Grid */
.dest-detail-content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.dest-detail-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.detail-section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.detail-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}

.detail-desc-content p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4b5563;
}

.detail-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.detail-highlights-list li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #374151;
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.55;
}

.detail-highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Right Column: Inquiry Form */
.inquiry-card {
  background: #ffffff;
  border: 1.5px solid rgba(220, 38, 38, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.08);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.inquiry-badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fee2e2;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.inquiry-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.inquiry-sub {
  font-size: 0.92rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.form-input,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  color: #111827;
  transition: all 0.2s var(--ease);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.inquiry-submit-btn {
  margin-top: 0.5rem;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--red-glow);
  transition: all 0.25s var(--ease);
}

.inquiry-submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--red-glow);
}

@media (max-width: 992px) {
  .dest-detail-content-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-card {
    position: static;
  }
}

/* ============================================================
   ENQUIRY & CONTACT SECTION — Red & White Theme
   ============================================================ */
.enquiry-section {
  position: relative;
  background: #fbfbfe;
  padding: 6.5rem 2rem;
  border-top: 1px solid #f1f5f9;
}

.enquiry-container {
  max-width: 1260px;
  margin: 0 auto;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Left: Info Box */
.enquiry-info-box {
  display: flex;
  flex-direction: column;
}

.enquiry-badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fee2e2;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.enquiry-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.enquiry-desc {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: #ffffff;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-channel-item:hover {
  transform: translateX(6px);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.1);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fef2f2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon.whatsapp-icon {
  background: #dcfce7;
  color: #16a34a;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.channel-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}

.channel-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.channel-val:hover {
  color: var(--red);
}

.enquiry-trust-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.trust-check {
  color: #16a34a;
  font-weight: 900;
  font-size: 1.1rem;
}

/* Right: Form Card */
.home-enquiry-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.6rem;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.form-sub {
  font-size: 0.92rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.home-form {
  display: flex;
  flex-direction: column;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #374151;
}

.form-ctrl {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
  color: #111827;
  transition: all 0.2s var(--ease);
}

.form-ctrl:focus {
  outline: none;
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-ctrl option {
  background: #ffffff;
  color: #111827;
}

/* Agreement Checkbox Row */
.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.4rem;
  margin-bottom: 0.95rem;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.45;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--red);
  flex-shrink: 0;
  margin: 0;
}

.form-checkbox-label {
  font-size: 0.86rem;
  color: #374151;
  cursor: pointer;
  margin: 0;
  display: inline;
}

.form-checkbox-label a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s var(--ease);
}

.form-checkbox-label a:hover {
  color: var(--red-hover);
}

/* Cloudflare Turnstile Container */
.turnstile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.65rem 0 0.95rem;
  min-height: 65px;
}

.enquiry-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #16a34a;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
  margin-top: 0.5rem;
}

.enquiry-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.45);
}

.enquiry-success-msg {
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid #bbf7d0;
  text-align: center;
}

/* Privacy Policy Box inside Enquiry Cards */
.enquiry-privacy-policy {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
  text-align: left;
}

.enquiry-privacy-policy .privacy-policy-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: #1e293b;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.01em;
}

.enquiry-privacy-policy p {
  margin-bottom: 0.45rem;
  color: #64748b;
  font-size: 0.82rem;
}

.enquiry-privacy-policy p:last-child {
  margin-bottom: 0;
}

/* Terms & Conditions & Booking Policy Table */
.policy-table-wrapper {
  overflow-x: auto;
  margin-top: 0.5rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
}

.policy-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.policy-table tr:last-child {
  border-bottom: none;
}

.policy-label {
  width: 30%;
  min-width: 160px;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.92rem;
  vertical-align: top;
  border-right: 1px solid #e5e7eb;
}

.policy-value {
  padding: 1rem 1.25rem;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  vertical-align: top;
}

.policy-value ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.policy-value ul li {
  color: #374151;
}

.policy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

.policy-link-btn:hover {
  color: var(--red-hover);
}

/* Card-level Policy Box (in Enquiry Forms) */
.enquiry-terms-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 1.15rem;
  overflow: hidden;
}

.enquiry-terms-header {
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.enquiry-terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.enquiry-terms-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.enquiry-terms-table tr:last-child {
  border-bottom: none;
}

.enquiry-terms-table th {
  text-align: left;
  padding: 0.75rem 0.9rem;
  background: #fafafa;
  color: #334155;
  font-weight: 600;
  width: 32%;
  min-width: 120px;
  vertical-align: top;
  border-right: 1px solid #f1f5f9;
}

.enquiry-terms-table td {
  padding: 0.75rem 0.9rem;
  color: #475569;
  line-height: 1.5;
  vertical-align: top;
}

.enquiry-terms-table ul {
  list-style: disc;
  padding-left: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Terms Modal */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.policy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.policy-modal-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  max-width: 660px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
}

.policy-modal-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.policy-modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
}

.policy-modal-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}

.policy-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.policy-modal-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.modal-policy-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.modal-policy-section ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modal-policy-section p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #0d1117;
  color: #9ca3af;
  padding: 5.5rem 2rem 2.5rem;
  border-top: 1px solid #1f2937;
}

.footer-container {
  max-width: 1260px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 40px;
  object-fit: contain;
}

.footer-logo-img2 {
  max-width: 110px;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #9ca3af;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ef4444;
}

.footer-contact-item {
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: #9ca3af;
}

.footer-contact-item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #ef4444;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 992px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .home-enquiry-card {
    padding: 2rem 1.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .nav-logo-img {
    height: 44px;
  }

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

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 56px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .nav-logo-img {
    height: 30px;
    max-width: 100px;
    object-fit: contain;
  }

  .nav-logo-img2 {
    padding-left: 0.35rem;
    margin-left: 0.1rem;
    max-width: 90px;
    object-fit: contain;
  }

  /* Landing Hero for Mobile */
  .landing-hero {
    height: 360px;
    min-height: 360px;
    margin-top: var(--nav-h);
    position: relative;
    overflow: hidden;
  }

  .landing-image-container {
    height: 100%;
    width: 100%;
    position: relative;
  }

  .landing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Soft dark overlay on mobile so text is crystal-clear */
  .landing-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 35, 0.65) 0%, rgba(10, 20, 35, 0.35) 60%, rgba(10, 20, 35, 0.7) 100%);
    pointer-events: none;
  }

  .landing-overlay-left {
    left: 1.25rem;
    right: 1.25rem;
    max-width: calc(100% - 2.5rem);
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    gap: 1.1rem;
    align-items: flex-start;
  }

  .landing-pill {
    font-size: 0.72rem;
    padding: 0.38rem 0.95rem;
    gap: 0.45rem;
    letter-spacing: 0.1em;
  }

  .landing-headline {
    font-size: clamp(2rem, 6.5vw, 2.5rem);
    line-height: 1.2;
    transform: none;
  }

  .headline-line2 {
    white-space: normal;
    display: inline;
  }

  .about-section {
    padding: 4.5rem 1.25rem;
  }

  .smv-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .destinations-section {
    padding: 4.5rem 1.25rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .promise-cta-card {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 50px;
  }

  .nav-logo-img {
    height: 32px;
  }

  .landing-hero {
    height: 320px;
    min-height: 320px;
  }

  .landing-headline {
    font-size: 1.85rem;
  }

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