:root {

  --emerald: #014e42;
  --gold: #d4af37;
  --border-soft: #e0e0e0;
  --bg-soft: #fafafa;
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
  padding: 1rem 2rem;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: var(--emerald);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-name {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

.navbar.scrolled .company-name {
  color: var(--gold);
}

/* Desktop menu */
.nav-right .nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  color: #fff;
}

.nav-right .nav-menu a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Side drawer styles */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background-color: var(--emerald);
  color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 1001;
}

.drawer.open {
  right: 0;
}

.drawer-header {
  padding: 1rem;
  text-align: right;
}

.drawer-close {
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-menu {
  list-style: none;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
}



.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  z-index: -1;
}


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 177.77vh; /* 100vh * (16/9 aspect ratio) */
  height: 100vh;
  pointer-events: none; /* so clicks pass through */
}


.hero-overlay {
  position: relative;
  z-index: -1;
  height: 100%;
  padding: 8rem 2rem 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  color: #ffffff;
  margin: 0 auto;
}

/* Desktop search container */
.search-bar-desktop {
  position: absolute;
  bottom: 15rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1000px);
  z-index: 3;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  padding: 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.search-bar-desktop input,
.search-bar-desktop button,
.search-guests-desktop {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--gold);
  font-size: 0.95rem;
}

.search-bar-desktop input {
  min-width: 150px;
  flex: 1 1 160px;
}

/* Search button */
.search-btn,
.modal-search-btn {
  background: var(--emerald);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Desktop guests field */
.search-guests-desktop {
  position: relative;
  cursor: pointer;
  flex: 1 1 180px;
  background: #fff;
}

.search-guests-desktop .guest-summary {
  display: block;
  font-size: 0.9rem;
}

/* Desktop dropdown */
.guest-dropdown-desktop {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1rem 1rem 0.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  min-width: 260px;
  z-index: 100;
}

/* Rows */
.guest-row,
.modal-guest-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 0.8rem;
}

.guest-row label,
.modal-guest-row label {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Controls */
.guest-controls,
.modal-guest-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guest-controls button,
.modal-guest-controls button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.guest-controls span,
.modal-guest-controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 500;
}

/* Actions bottom of desktop dropdown */
.guest-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.guest-actions .btn-clear,
.guest-actions .btn-apply {
  flex: 1;
  padding: 0.5rem 0.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.guest-actions .btn-clear {
  background: #ffffff;
  border-color: var(--border-soft);
}

.guest-actions .btn-apply {
  background: var(--emerald);
  color: #ffffff;
}

/* Mobile trigger button */
.mobile-search-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.9rem 2rem;
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 200;
}

/* Modal wrapper */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
  z-index: 300;
}

.search-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 360px;
  border-radius: 14px;
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-back {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
}

.modal-title {
  font-size: 1rem;
  font-weight: bold;
}

/* Modal inputs */
.modal-content input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--gold);
  font-size: 0.95rem;
}

/* Mobile guests field (summary) */
.modal-guests {
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff;
}

/* Dropdown inside modal */
.modal-guest-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1rem 1rem 0.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  z-index: 110;
}

/* Modal search button */
.modal-search-btn {
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.7rem;
  border-radius: 10px;
  border: none;
  background: var(--emerald);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

/* Responsive behaviour */
@media (max-width: 768px) {
  .search-bar-desktop {
    display: none;
  }

  .mobile-search-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .modal-guest-row {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
  }
  .modal-guest-controls {
    justify-content: flex-end;
  }
}


/* =========================
   DESTINATIONS SECTION
   ========================= */
.destinations {
  position: relative;
  align-content: center;
  padding: 4rem 2rem 3rem;
 
  color: #f8f8f8;

  /* background image + gradient overlay (overlay handled in ::before) */
 background-color: #fff;
}




.destinations-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* above gradient overlay */
}

/* header */
.dest-header {
  max-width: 750px;
  margin-bottom: 2rem;
   
}

.dest-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dest-title {
   font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
   color: #014e42;
}

.dest-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color:  #000;
}

/* carousel wrapper */
.dest-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

/* horizontal strip */
.dest-strip {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* hide scrollbars but keep scrolling */
.dest-strip {
  scrollbar-width: none; /* Firefox */
}
.dest-strip::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}
.dest-strip {
  -webkit-overflow-scrolling: touch;  /* adds smooth, native momentum on iOS */
}


/* square cards */
.dest-card {
  flex: 0 0 260px;
  max-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(180, 140, 7, 1);
 
  scroll-snap-align: start;
}

.dest-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* square */
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
}

.dest-name {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

/* CTA */
.dest-cta {
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #1b1b1b;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dest-cta:hover {
  background: #f0d46a;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* arrows */
.dest-arrow {
  position: relative;
  z-index: 2;
  width: 46px;              /* bigger */
  height: 46px;             /* bigger */
  border-radius: 50px;     /* fully round */
  border: none;
  background: var(--gold);  /* golden */
  color: #1b1b1b;           /* dark text */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;        /* slightly larger arrow symbol */
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.dest-arrow:hover {
  background: #f0d46a;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}

.dest-arrow-left {
  margin-right: 0.75rem;
}

.dest-arrow-right {
  margin-left: 0.75rem;
}


.dest-arrow-left {
  margin-right: 0.75rem;
}

.dest-arrow-right {
  margin-left: 0.75rem;
}

.dest-arrow:hover {
  background: rgba(212,175,55,0.8);
  transform: translateY(-1px);
}

/* responsive tweaks */
@media (max-width: 768px) {
  .destinations {
    padding: 3rem 1.25rem 2.5rem;
  }

  .dest-title {
    font-size: 1.8rem;
  }

  .dest-carousel {
    gap: 0.5rem;
  }

  .dest-card {
    flex: 0 0 72vw;
    max-width: 48vw;
  }

  .dest-arrow-left {
    margin-right: 0.25rem;
  }

  .dest-arrow-right {
    margin-left: 0.25rem;
  }
}

/* =========================
   ACTIVE PACKAGES SECTION
   ========================= */
.packages {
  background:  #fff;
  padding: 4rem 2rem 4rem;
}

.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.packages-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.packages-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.packages-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: #014e42;
}

.packages-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #014e42;
}

/* grid layout */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

/* cards */
.package-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  overflow: hidden;
  color: #ffffff; /* text on dark overlay */
  display: flex;
}

/* dark overlay over the background image */
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 0;
}

/* content wrapper */
.package-content {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fafafa;
}


.package-label {
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.package-label-alt {
  background: rgba(212, 175, 55, 0.9);
  color: #fff;
}

.package-name {
  font-size: 1.05rem;
  margin: 0;
  color: #ffffff;
}

.package-location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin: 0.25rem 0 0.45rem;
}

.package-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0 0 1rem;
}

.package-from,
.package-per {
  color: rgba(255,255,255,0.8);
}


.package-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 1rem;
}

/* footer */
.package-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.package-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.package-from {
  font-size: 0.8rem;
  color: #fff;
}

.package-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.package-per {
  font-size: 0.8rem;
  color: #fff;
}

/* buttons */
.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.package-primary,
.package-secondary {
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease,
              border-color 0.15s ease, transform 0.12s ease,
              box-shadow 0.12s ease;
}

.package-primary {
  background: var(--emerald);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(1, 78, 66, 0.35);
}

.package-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(1, 78, 66, 0.45);
}

.package-secondary {
  background: #ffffff;
  color: #333;
  border-color: rgba(0,0,0,0.08);
}

.package-secondary:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

/* saved state */
.package-secondary.saved {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: #8c6a0a;
}

/* responsive */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .packages {
    padding: 3rem 1.25rem 3.25rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   THE TOURDKERALA STANDARD
   ========================= */

/* =========================
   THE TOURDKERALA STANDARD
   ========================= */

.tdk-standard {
  background:  #fff;
  padding: 4rem 2rem 4.5rem;
}

.tdk-standard-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* header like in screenshot */
.tdk-standard-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin: 0 0 0.4rem;
  color: #014e42;
}

.tdk-standard-header p {
  font-size: 0.98rem;
  color: #555;
  margin: 0 0 1.8rem;
}

/* body: image left, icons right */
.tdk-standard-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

/* left image block */
.tdk-standard-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  height: 320px;          /* fixed height similar to reference */
}

.tdk-standard-photo {
  width: 100%;
  height: 100%;           /* fill the container */
  object-fit: cover;      /* crop nicely, no distortion */
  display: block;
}


/* right icon grid (4 x 2 like reference) */
.tdk-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem 2.5rem;
}

.tdk-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* icon bubble */
.tdk-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(1, 78, 66, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* label under icon */
.tdk-icon-label {
  font-size: 0.9rem;
  color:#014e42 ;
  line-height: 1.3;
}

/* responsive behaviour */
@media (max-width: 1024px) {
  .tdk-standard-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tdk-standard-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .tdk-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tdk-standard {
    padding: 3.2rem 1.25rem 3.5rem;
  }

  .tdk-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.6rem;
  }

  .tdk-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .tdk-icon-label {
    font-size: 0.88rem;
  }
}
/* =========================
   MOBILE TWEAKS – TDK STANDARD
   ========================= */
@media (max-width: 768px) {

  /* heading + spacing can stay as before if you like */
  .tdk-standard-header h2 {
    color: var(--emerald);
    font-size: 1.6rem;
  }

  .tdk-standard {
    padding: 2.6rem 1.25rem 3rem;
  }

  .tdk-standard-body {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  /* 🔥 key change: force a wide aspect ratio for the image */
  .tdk-standard-media {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60%;
    margin: 0 auto;
    padding-top: 56%;       /* ~16:9 aspect ratio (adjust to 50–60% if you want) */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
  }

  .tdk-standard-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* crop instead of squish */
    display: block;
  }

  /* icons: 4 per row */
  .tdk-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.4rem;
  }

  .tdk-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.3rem;
  }

  .tdk-icon-label {
    font-size: 0.8rem;
    line-height: 1.25;
  }
}

/* =========================
   STORY / PHILOSOPHY
   ========================= */

.tdk-story {
  background: radial-gradient(circle at top left, #f4fff9 0, #f3f3ef 40%, #f0eee7 100%);
  padding: 4rem 2rem 4.5rem;
}

.tdk-story-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tdk-story-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.tdk-story-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.tdk-story-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--emerald);
  margin: 0 0 0.6rem;
}

.tdk-story-kicker {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* layout */
.tdk-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* left main story */
.tdk-story-main {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #333;
}

.tdk-story-main p + p {
  margin-top: 1rem;
}

/* right side cards */
.tdk-story-side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.tdk-story-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.3rem 1.25rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tdk-story-card h3 {
  font-size: 0.98rem;
  margin: 0 0 0.6rem;
  color: #1b1b1b;
}

.tdk-story-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tdk-story-card li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.tdk-story-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--emerald);
}

.tdk-story-card li span {
  font-weight: 600;
  color: #222;
}

/* split card: who it's for vs not for */
.tdk-story-card-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.tdk-story-card-split h3 {
  font-size: 0.9rem;
}

/* responsive */
@media (max-width: 1024px) {
  .tdk-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tdk-story {
    padding: 3.2rem 1.25rem 3.6rem;
  }

  .tdk-story-title {
    font-size: 1.8rem;
  }

  .tdk-story-grid {
    gap: 2rem;
  }

  .tdk-story-card-split {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CHOOSE A COLLECTION
   ========================= */

.tdk-collections {
  background: #ffffff;
  padding: 4rem 2rem;
}

.tdk-collections-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tdk-collections-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--emerald);
  margin: 0 0 0.5rem;
}

.tdk-collections-header p {
  font-size: 0.98rem;
  color: #555;
  margin: 0 0 1.8rem;
}

/* shell with arrows + horizontal track */
.tdk-collections-shell {
  position: relative;
  display: flex;
  align-items: center;
}

/* scrollable track */
.tdk-collections-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.25rem 0;
  scroll-snap-type: x mandatory;
}

/* hide scrollbar visually, still scrollable */
.tdk-collections-track::-webkit-scrollbar {
  display: none;
}
.tdk-collections-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* collection card */
.tdk-collection-card {
  position: relative;
  flex: 0 0 min(280px, 80vw);
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-size 0.4s ease;
}

/* dark overlay */
.tdk-collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1)
  );
  opacity: 0.75;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* overlay content */
.tdk-collection-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

/* label + title + desc */
.tdk-collection-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.tdk-collection-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}

.tdk-collection-desc {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 20rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* hover / focus effects */
.tdk-collection-card:hover,
.tdk-collection-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.tdk-collection-card:hover::before,
.tdk-collection-card:focus-within::before {
  opacity: 0.9;
}

.tdk-collection-card:hover .tdk-collection-desc,
.tdk-collection-card:focus-within .tdk-collection-desc {
  opacity: 1;
  transform: translateY(0);
}

/* arrows */
.tdk-collections-arrow {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: #ffffff;
  color: #333;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.collections-prev {
  margin-right: 0.75rem;
}

.collections-next {
  margin-left: 0.75rem;
}

.tdk-collections-arrow:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
  transform: translateY(-1px);
}

/* responsive */
@media (max-width: 1024px) {
  .tdk-collection-card {
    flex-basis: min(260px, 80vw);
    height: 320px;
  }
}

@media (max-width: 768px) {
  .tdk-collections {
    padding: 3.2rem 1.25rem;
  }

  .tdk-collections-header h2 {
    font-size: 1.8rem;
  }

  .tdk-collections-shell {
    gap: 0.5rem;
  }

  .tdk-collections-arrow {
    display: none; /* mobile: swipe/scroll only */
  }

  .tdk-collection-card {
    flex-basis: 80vw;
    height: 300px;
  }

  .tdk-collection-desc {
    font-size: 0.8rem;
  }
}

/* =========================
   TRUSTED PARTNER STRIP
   ========================= */

.tdk-trust {
  background: #ffffff;
  padding: 3.5rem 2rem 4rem;
}

.tdk-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tdk-trust-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--emerald);
  margin: 0 0 2rem;
}

/* 3-column grid */
.tdk-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.tdk-trust-item {
  max-width: 320px;
  margin: 0 auto;
}

.tdk-trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: rgba(1, 78, 66, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.tdk-trust-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: #222;
}

.tdk-trust-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* responsive */
@media (max-width: 900px) {
  .tdk-trust-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .tdk-trust {
    padding: 3rem 1.25rem 3.5rem;
  }

  .tdk-trust-header h2 {
    font-size: 1.7rem;
  }

  .tdk-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BLOG / STORIES
   ========================= */

.tdk-blog {
  background: #fafafa;
  padding: 4rem 2rem 4.5rem;
}

.tdk-blog-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* header */

.tdk-blog-header {
  max-width: 680px;
  margin-bottom: 2.4rem;
}

.tdk-blog-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.tdk-blog-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--emerald);
  margin: 0 0 0.6rem;
}

.tdk-blog-header p {
  font-size: 0.96rem;
  color: #555;
  margin: 0;
}

/* grid */

.tdk-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* card */

.tdk-blog-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transition:
    background-size 0.4s ease,
    box-shadow 0.25s ease;
}

/* gradient + dark overlay */

.tdk-blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1)
  );
  opacity: 0.85;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* inner shadow */

.tdk-blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* card content */

.tdk-blog-overlay {
  position: absolute;
  inset: 0;
  padding: 1.3rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  color: #fff;
}

.tdk-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.tdk-blog-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.tdk-blog-date {
  opacity: 0.8;
}

.tdk-blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 0.3rem;
}

.tdk-blog-excerpt {
  font-size: 0.83rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.6rem;
  opacity: 0.95;
}

.tdk-blog-link {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* hover effect: zoom + stronger shadow */

.tdk-blog-card:hover,
.tdk-blog-card:focus-within {
  background-size: 110%;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.tdk-blog-card:hover::before,
.tdk-blog-card:focus-within::before {
  opacity: 0.95;
}

.tdk-blog-card:hover::after,
.tdk-blog-card:focus-within::after {
  opacity: 1;
}

/* footer "view all" */

.tdk-blog-footer {
  margin-top: 2rem;
  text-align: right;
}

.tdk-blog-view-all {
  font-size: 0.88rem;
  color: var(--emerald);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 78, 66, 0.24);
  padding-bottom: 2px;
}

/* responsive */

@media (max-width: 1024px) {
  .tdk-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tdk-blog-card {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .tdk-blog {
    padding: 3.2rem 1.25rem 3.6rem;
  }

  .tdk-blog-header h2 {
    font-size: 1.7rem;
  }

  .tdk-blog-grid {
    grid-template-columns: 1fr;
  }

  .tdk-blog-card {
    height: 230px;
  }

  .tdk-blog-footer {
    text-align: left;
    margin-top: 1.6rem;
  }
}

/* =========================
   CONTACT / PLAN YOUR TRIP
   ========================= */

.tdk-contact {
  background: radial-gradient(circle at top left, #f4fff9 0, #f3f3ef 40%, #f0eee7 100%);
  padding: 4rem 2rem 4.5rem;
}

.tdk-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: flex-start;
}

/* LEFT COPY */

.tdk-contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.tdk-contact-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--emerald);
  margin: 0 0 0.6rem;
}

.tdk-contact-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1.2rem;
}

.tdk-contact-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: #555;
}

.tdk-contact-points li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
}

.tdk-contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--emerald);
}

.tdk-contact-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #444;
}

.tdk-contact-whatsapp {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 78, 66, 0.24);
  padding-bottom: 1px;
}

/* FORM SIDE */

.tdk-contact-form-wrap {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.7rem 1.7rem 1.6rem;
}

.tdk-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tdk-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.tdk-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tdk-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777;
}

.tdk-field input,
.tdk-field select,
.tdk-field textarea {
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.tdk-field textarea {
  resize: vertical;
  min-height: 110px;
}

.tdk-field input:focus,
.tdk-field select:focus,
.tdk-field textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 1px rgba(1, 78, 66, 0.18);
}

/* actions */

.tdk-contact-actions {
  margin-top: 0.5rem;
}

.tdk-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--emerald);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.tdk-contact-submit:hover {
  background: #013d34;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.tdk-contact-note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}

/* responsive */

@media (max-width: 1024px) {
  .tdk-contact-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 768px) {
  .tdk-contact {
    padding: 3.2rem 1.25rem 3.6rem;
  }

  .tdk-contact-copy h2 {
    font-size: 1.7rem;
  }

  .tdk-contact-form-wrap {
    padding: 1.4rem 1.3rem 1.5rem;
  }

  .tdk-contact-row {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FOOTER
   ========================= */

.tdk-footer {
  background: #01352c; /* deep emerald */
  color: #e7f5f2;
  padding: 3rem 2rem 1.5rem;
}

.tdk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

/* brand */

.tdk-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.tdk-footer-tagline {
  font-size: 0.9rem;
  color: #f7e3a1; /* soft gold */
  margin: 0 0 0.6rem;
}

.tdk-footer-blurb {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #cbe4de;
  max-width: 280px;
}

/* columns */

.tdk-footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f5fdfb;
  margin: 0 0 0.7rem;
}

.tdk-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tdk-footer-col li {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #d4ebe6;
}

.tdk-footer-col a {
  color: #d4ebe6;
  text-decoration: none;
}

.tdk-footer-col a:hover {
  color: var(--gold);
}

/* contact labels */

.tdk-footer-contact li span {
  display: inline-block;
  min-width: 90px;
  color: #f0faf7;
}

/* socials */

.tdk-footer-socials {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.tdk-footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tdk-footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #01352c;
}

/* bottom bar */

.tdk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.2rem;
  padding-top: 0.9rem;
  text-align: center;
}

.tdk-footer-bottom p {
  font-size: 0.78rem;
  color: #cbe4de;
  margin: 0;
}

/* responsive */

@media (max-width: 1024px) {
  .tdk-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }
}

@media (max-width: 768px) {
  .tdk-footer {
    padding: 2.8rem 1.25rem 1.6rem;
  }

  .tdk-footer-inner {
    grid-template-columns: 1fr;
  }

  .tdk-footer-brand {
    margin-bottom: 0.5rem;
  }
}

/* ==== ACTIVE PACKAGES SECTION ==== */

.section-active-packages {
  padding: 4rem 8vw;
  background: radial-gradient(circle at top left, #0c3b32 0%, #011b16 45%, #000909 100%);
  color: #fdfdfd;
}

.section-active-packages .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-active-packages .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #f4d67a; /* gold */
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-active-packages .section-subtitle {
  text-align: center;
  color: #d6e6de;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
}

/* Grid / layout */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Individual card */
.package-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  background-color: #02201b;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Dark overlay inside card */
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.25)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Hover: zoom background image, lift card */
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.9);
}

.package-card:hover .package-card-inner {
  transform: translateY(-4px);
}

.package-card:hover .package-bg-zoom {
  transform: scale(1.07);
}

/* Content inside the card */
.package-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.75rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* Pill at the top */
.package-pill {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(2, 95, 78, 0.9);
  color: #d6f9ea;
}

/* Trending badge */
.badge-trending {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #1a1307;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Text bits */
.package-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 1rem 0 0.4rem;
  color: #ffffff;
}

.package-tagline {
  font-size: 0.9rem;
  color: #e3f4ea;
  line-height: 1.5;
  max-width: 22rem;
}

/* Meta rows */
.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #d5e9df;
  margin-top: 1rem;
}

/* Button */
.package-btn {
  margin-top: 1.2rem;
  align-self: flex-start;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: #0d7f63;
  color: #fdfdfd;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.15s ease;
}

.package-btn:hover {
  background: #10a17f;
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-active-packages {
    padding: 3rem 5vw;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}
