:root {
  /* ── Vibrant light palette ── */
  --sky: #e8f5ff;
  --aqua: #0ea5e9;
  --aqua-dark: #0369a1;
  --teal: #0d9488;
  --coral: #f43f5e;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --mint: #10b981;
  --white: #ffffff;
  --off: #f0f7ff;
  --text-dark: #0c1a2e;
  --text-mid: #334d68;
  --text-light: #64849e;
  --gold: #f59e0b;
  --gold-light: #fde68a;
  /* kept for hero compat */
  --cream: #f0ebe3;
  --warm-white: #faf8f5;
  --brown-dark: #3d2b1f;
  --brown-mid: #6b4226;
  --brown-light: #a0714f;
  --accent: #8b5e3c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== NAVBAR (original structure, new colours) ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 112px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(14, 165, 233, 0.12);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(14, 165, 233, 0.12);
  min-height: 92px;
  padding: 0 5%;
}

#navbar.scrolled .logo-name,
#navbar.scrolled .nav-links a:not(.nav-cta) {
  color: var(--text-dark);
}

#navbar.scrolled .logo-tagline-nav {
  color: var(--text-mid);
}

#navbar.scrolled .logo-img {
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 4px 0;
}

.logo-img {
  height: 104px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.logo-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.96), rgba(3, 105, 161, 0.96));
  box-shadow: 0 7px 22px rgba(3, 105, 161, 0.32);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(61, 43, 31, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.logo-tagline-nav {
  font-size: 0.62rem;
  color: var(--text-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--aqua);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

#navbar.scrolled .nav-links a:not(.nav-cta):hover {
  color: var(--aqua);
}

.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(244, 63, 94, 0.35);
}

.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--text-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Desktop dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .dropdown-arrow {
  font-size: 0.6em;
  margin-left: 2px;
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
  padding: 8px 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--sky);
  color: var(--aqua-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO — ORIGINAL, UNTOUCHED ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) saturate(0.9);
  animation: zoomSlide 15s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes zoomSlide {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(61, 43, 31, 0.15) 0%, rgba(61, 43, 31, 0.05) 30%,
      rgba(61, 43, 31, 0.4) 70%, rgba(61, 43, 31, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

/* ===== HERO MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    height: 680px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 16px;
    padding-top: 100px;
    max-width: 100%;
  }

  .hero-badge {
    margin-top: 120px;
    margin-bottom: 12px;
    font-size: 0.6rem;
    padding: 5px 14px;
  }


  .hero-title {
    font-size: 1.75rem !important;
    margin-bottom: 6px;
  }

  .hero-hindi {
    font-size: 0.85rem !important;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .hero-pills {
    gap: 8px;
    margin-bottom: 14px;
  }

  .pill {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero-btns {
    gap: 10px;
    margin-bottom: 10px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 0.78rem;
    padding: 10px 22px;
  }

  .btn-outline {
    font-size: 0.78rem;
    padding: 10px 22px;
    margin-bottom: 60px;
  }

  .hero-scroll {
    display: none !important;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(3, 105, 161, 0.45);
  border: 1.5px solid var(--aqua);
  color: #fff;
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.65rem;
  line-height: 1.8;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 90px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  animation: fadeDown 1s ease both;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  animation: fadeUp 1s 0.2s ease both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--aqua);
}

.hero-hindi {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--aqua);
  margin-bottom: 18px;
  animation: fadeUp 1s 0.35s ease both;
  letter-spacing: 0.03em;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 1s 0.5s ease both;
  letter-spacing: 0.05em;
}

.hero-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.65s ease both;
}

.pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.pill .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.8s ease both;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--aqua-dark);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(3, 105, 161, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(3, 105, 161, 0.5);
  background: var(--aqua);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 1s ease both;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    height: 40px;
  }

  50% {
    opacity: 0.5;
    height: 25px;
  }
}

/* ===== BOOKING BAR ===== */
.booking-bar {
  background: var(--white);
  padding: 20px 5%;
  box-shadow: 0 4px 30px rgba(14, 165, 233, 0.1);
  position: relative;
  z-index: 100;
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr) auto;
  gap: 0;
  background: var(--off);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.08);
  border: 1.5px solid rgba(14, 165, 233, 0.15);
}

.booking-field {
  padding: 14px 16px;
  border-right: 1px solid rgba(14, 165, 233, 0.12);
  cursor: pointer;
  transition: background 0.3s;
}

.booking-field:hover {
  background: var(--sky);
}

.booking-field:last-of-type {
  border-right: none;
}

.field-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.field-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-select {
  border: none;
  background: transparent;
  font-weight: 700;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.field-icon {
  font-size: 1rem;
}

.book-btn {
  background: var(--aqua-dark);
  color: #fff;
  border: none;
  padding: 0 32px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.book-btn:hover {
  background: var(--coral);
}

/* ===== SECTION COMMONS ===== */
section {
  padding: 90px 5%;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--aqua);
  border-radius: 2px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}

.centered {
  text-align: center;
}

.centered .section-label {
  justify-content: center;
}

.centered .section-label::before {
  display: none;
}

.centered .section-sub {
  margin: 0 auto;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== DESTINATIONS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.dest-card.tall {
  grid-row: span 2;
}

.dest-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.dest-card.tall img {
  aspect-ratio: 3/4;
  min-height: auto;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 105, 161, 0.88) 0%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}


.dest-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.dest-card.tall .dest-name {
  font-size: 1.rem;
}

.dest-tag {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

  .event-card-img {
    position: relative;
    aspect-ratio: 3/3.3 !important;
    overflow: hidden;
  }

  .event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .book-btn {
    font-size: 0.3rem;
    font-size: 16px;
  }

  .dest-card.tall .dest-name {
    font-size: 1rem;
  }

  .dest-name {
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;

  }

  .dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 105, 161, 0.88) 0%, transparent 95%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .dest-card {
    width: 100%;
  }

  /* ❗ IMPORTANT: tall card hatao mobile me */
  .dest-card.tall {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .dest-card img {
    height: 180px;
    /* same size sab cards */
    object-fit: cover;
  }

  .pkg-price {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .pkg-price-row {
    justify-content: center !important;
  }

  .essential-name-text {
    font-size: 0.88rem !important;
    letter-spacing: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

}


.swiper-wrapper-box {
  position: relative;
}

.swiper-experience {
  width: 100%;
}

.swiper-experience .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

@media (min-width: 1024px) {
  .swiper-experience .swiper-slide {
    aspect-ratio: 3 / 4;
    max-height: 380px;
  }
}

.swiper-experience .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.swiper-experience .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Arrows */
.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

#expPrev {
  left: -20px;
}

#expNext {
  right: -20px;
}

.swiper-btn:hover {
  background: rgba(200, 145, 58, 0.25);
  border-color: rgba(200, 145, 58, 0.65);
  transform: translateY(-50%) scale(1.08);
}

.swiper-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== PACKAGES ===== */
.packages-bg {
  background: var(--sky);
}


.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

/* Package sections share the same 4-card desktop layout */
#packages .packages-grid,
#international-packages .packages-grid,
.packages-section .packages-grid {
  grid-template-columns: repeat(4, 1fr);
}

.packages-intro {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 28px;
}

.packages-intro-copy {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 760px;
  justify-self: center;
}

.package-filters {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 35px rgba(3, 105, 161, 0.1);
}

.package-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.package-filter span {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sky);
  color: var(--aqua-dark);
  font-size: 0.68rem;
  transition: color 0.3s, background 0.3s;
}

.package-filter:hover {
  color: var(--aqua-dark);
  transform: translateY(-1px);
}

.package-filter.active {
  background: var(--aqua-dark);
  color: #fff;
  box-shadow: 0 7px 18px rgba(3, 105, 161, 0.25);
}

.package-filter.active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.package-group[hidden] {
  display: none;
}

.empty-packages {
  grid-column: 1 / -1;
  padding: 50px 20px;
  border-radius: 20px;
  background: var(--white);
  color: var(--text-mid);
  text-align: center;
}

@media (max-width: 1280px) {
  .packages-intro {
    grid-template-columns: 1fr;
  }

  .packages-intro-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .package-filters {
    grid-column: 1;
    grid-row: 2;
    margin-top: 28px;
  }
}

.pkg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
  transition: all 0.4s;
  position: relative;
  border: 1.5px solid transparent;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.2);
}

.pkg-card.featured {
  border-color: var(--aqua);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.35);
}

.pkg-img {
  position: relative;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.07);
  filter: saturate(1.15);
}

.pkg-body {
  padding: 22px;
}

/* Keep complete flyers visible inside the standard square card frame */
.pkg-img.pkg-flyer {
  aspect-ratio: 1/1;
  height: auto;
  background: var(--sky);
}

.pkg-img.pkg-flyer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pkg-type {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 700;
  margin-bottom: 6px;
}

.pkg-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pkg-details {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pkg-detail {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--sky);
  flex-wrap: wrap;
  gap: 10px;
}

.pkg-price {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-new {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.price-pp {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

.pkg-book {
  background: var(--aqua-dark);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

.pkg-book:hover {
  background: var(--coral);
  box-shadow: 0 8px 22px rgba(244, 63, 94, 0.4);
  transform: translateY(-2px);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
  border: 1.5px solid var(--sky);
  cursor: default;
}

.svc-card:hover {
  background: var(--white);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.12);
}

.svc-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}

.svc-card:hover .svc-icon {
  transform: scale(1.15) rotate(-5deg);
}

.svc-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--aqua-dark);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1800') center/cover;
  opacity: 0.1;
}

.video-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-inner .section-label {
  color: var(--gold);
  justify-content: center;
}

.video-inner .section-label::before {
  display: none;
}

.video-inner .section-title {
  color: #fff;
}

.video-inner .section-sub {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 40px;
}

.video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/9;
}

.video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.video-wrap img.active {
  opacity: 1;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.why-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.why-img:hover img {
  transform: scale(1.04);
}

.why-stat-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-stat {
  text-align: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aqua-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s;
  border: 1.5px solid transparent;
  background: var(--white);
}

.why-point:hover {
  background: var(--sky);
  border-color: rgba(14, 165, 233, 0.25);
  transform: translateX(4px);
}

.why-point-icon {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-point-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-point-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--sky);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 2px 15px rgba(14, 165, 233, 0.08);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.contact-card:hover {
  transform: translateX(6px);
  border-left-color: var(--aqua);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.14);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--sky);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-val {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-phone-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  align-items: start;
}

.contact-phone-person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-phone-person span,
.footer-phone-person span {
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-phone-person a {
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-phone-person a:hover {
  color: var(--aqua);
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(14, 165, 233, 0.1);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(14, 165, 233, 0.2);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off);
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-submit {
  width: 100%;
  background: var(--aqua-dark);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.3);
}

.form-submit:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.4);
}

/* ===== FOOTER ===== */
footer {
  background: var(--white);
  color: var(--text-mid);
  padding: 60px 5% 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: 'RAJ';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.35fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-name {
  color: var(--text-dark);
  font-size: 1.5rem;
}

.footer-brand .logo-tagline-nav {
  color: var(--gold-light);
}

.footer-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 16px 0 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  color: var(--text-dark);
}

.social-btn:hover {
  background: var(--aqua);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.84rem;
  transition: all 0.25s;
  word-break: break-all;
  overflow-wrap: break-word;
}

.footer-links a:hover {
  color: var(--aqua);
  padding-left: 4px;
}

.footer-destination-groups {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 34px;
  align-items: start;
  justify-content: center;
}

.footer-destination-groups .footer-links a {
  word-break: normal;
  overflow-wrap: normal;
}

.footer-destination-title {
  text-align: center;
}

.footer-link-group {
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.footer-link-group:first-child {
  margin-top: 0;
}

.footer-contact-list {
  gap: 14px;
}

.footer-phone-person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-phone-person span {
  font-size: 0.7rem;
}

.footer-phone-person a {
  line-height: 1.35;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-mid);
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.call-float {
  width: 56px;
  height: 56px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(244, 63, 94, 0.6);
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: wpPulse 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes wpPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--aqua);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  /* fix spacing */
  font-size: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);

}

.mobile-menu-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.international-destinations {
  background: var(--off);
}

.international-packages-bg {
  background: var(--white);
}

.package-title-accent {
  display: inline-block;
  margin-top: 0.18em;
  color: var(--aqua-dark);
  font-size: 0.58em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
}

.price-contact {
  font-size: 1.05rem;
}

.view-all-wrap {
  margin-top: 38px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  border: 1.5px solid var(--aqua-dark);
  border-radius: 50px;
  background: transparent;
  color: var(--aqua-dark);
  padding: 12px 32px;
  font: 700 0.82rem 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.view-all-btn:hover {
  background: var(--aqua-dark);
  color: #fff;
}

.social-btn-disabled {
  cursor: default;
  opacity: 0.48;
}

.footer-address {
  line-height: 1.55;
}

.mobile-logo-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  font-size: 1.5rem;
}

.mobile-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.mobile-logo-tagline {
  font-size: 0.6rem;
  color: var(--text-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Mobile dropdown */
.mobile-dropdown {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
  flex-direction: column;
}

.mobile-dropdown.open .mobile-submenu {
  display: flex;
}

.mobile-submenu a {
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-submenu a:hover {
  color: var(--aqua);
}

.mobile-cta {
  background: var(--coral) !important;
  color: #fff !important;
  padding: 14px 40px !important;
  border-radius: 50px !important;
  font-size: 1.1rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 10px;
}

.mobile-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(244, 63, 94, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 24px;
  }

  .nav-links a:not(.nav-cta) {
    font-size: 0.8rem;
  }

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

  .dest-card.tall {
    grid-row: span 1;
  }

  .dest-card.tall img {
    aspect-ratio: 3/2;
    min-height: auto;
  }

  .packages-grid,
  #packages .packages-grid,
  #international-packages .packages-grid,
  .packages-section .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .why-img {
    height: 320px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .booking-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 35px 5%;
  }

  #navbar {
    min-height: 88px;
  }

  .logo {
    gap: 8px;
  }

  .logo-img {
    height: 78px;
  }

  #navbar.scrolled .logo-img {
    height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: var(--text-dark);
  }

  #navbar.scrolled .hamburger span {
    background: var(--text-dark);
  }

}

@media (max-width: 480px) {

  .footer-destination-groups {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: stretch;
  }

  .contact-phone-list {
    column-gap: 8px;
  }

  .contact-phone-person a {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .book-btn {
    font-size: 16px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .packages-grid,
  #packages .packages-grid,
  #international-packages .packages-grid,
  .packages-section .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .package-filters {
    width: 100%;
    margin-top: 28px;
  }

  .package-filter {
    flex: 1;
    gap: 5px;
    min-width: 0;
    padding: 9px 5px;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .package-filter span {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 0.6rem;
  }

  .pkg-body {
    padding: 12px;
  }

  .pkg-name {
    font-size: 0.85rem;
  }

  .price-new {
    font-size: 1rem;
  }

  .pkg-book {
    padding: 8px 14px;
    font-size: 0.68rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .booking-inner {
    grid-template-columns: 1fr 1fr;
  }

  .book-btn {
    grid-column: 1 / -1;
    padding: 14px;
  }
}

/* ===== TRAVEL ESSENTIALS (User Requested) ===== */
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.essential-card-item {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.essential-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
}

.essential-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.essential-card-item:hover img {
  transform: scale(1.1);
}

.essential-overlay-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.essential-name-text {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .essential-card-item {
    height: 180px;
  }
}



/* ===== TRAVEL SHORTS ===== */
.shorts-section {
  background: var(--white);
  padding: 80px 5%;
}

.shorts-item {
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.shorts-item:hover {
  transform: translateY(-5px);
}

.shorts-item iframe {
  width: 100%;
  height: 100%;
  border: none;
    border-radius: 20px;

  pointer-events: auto;
}

.carousel-shell {
  position: relative;
  max-width: 1280px;
  margin: 40px auto 0;
}

.shorts-swiper,
.reviews-swiper {
  overflow: hidden;
}

.carousel-prev { left: -21px; }
.carousel-next { right: -21px; }

.reviews-carousel-shell {
  margin-top: 50px;
}

.reviews-swiper .swiper-slide {
  height: auto;
}

.reviews-swiper .review-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .shorts-item { border-radius: 14px; }
  .carousel-prev { left: -12px; }
  .carousel-next { right: -12px; }
}

/* ===== END BANNER ===== */
.end-banner {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
  display: flex;
}

.end-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.end-banner-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.end-banner-title {
  color: var(--aqua-dark);
  font-weight: 900;
  margin-bottom: 8rem;
  margin-top: 3.5rem;
  text-shadow: none;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-size: 3.2vw;
}

.end-banner-btn {
  background: var(--aqua-dark);
  color: #fff;
  padding: 1vw 2.5vw;
  border-radius: 50vw;
  font-weight: 700;
  font-size: 1vw;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0.5vw 2vw rgba(3, 105, 161, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
}

.end-banner-btn:hover {
  transform: translateY(-0.2vw);
  box-shadow: 0 1vw 3vw rgba(3, 105, 161, 0.4);
  background: var(--aqua);
}

@media (max-width: 768px) {
  .end-banner {
    display: flex;
    flex-direction: column;
    background: var(--off);
  }

  .end-banner img {
    display: none; /* Hide background image on mobile to focus on CTA */
  }

  .end-banner-overlay {
    position: relative;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .end-banner-title {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--text-dark);
  }

  .end-banner-btn {
    position: relative;
    font-size: 0.9rem;
    padding: 14px 32px;
    gap: 10px;
    letter-spacing: 1px;
    margin-top: 0;
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-hero .hero-slide img {
  object-position: top !important;
  transform-origin: top center !important;
}

.gallery-section {
  padding: 50px 5%;
  background: var(--off);
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 30px 0;
  }

  .gallery-grid-nogap {
    border-radius: 0;
  }
}

.gallery-grid-nogap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item-nogap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-nogap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item-nogap:hover img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .gallery-grid-nogap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid-nogap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid-nogap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== EVENTS PAGE ===== */

/* Stats Bar */
.events-stats-bar {
  background: var(--aqua-dark);
  padding: 0 5%;
}

.events-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.event-stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.event-stat-item:last-child {
  border-right: none;
}

.event-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 4px;
}

.event-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Service Cards Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.event-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.2);
}

.event-card-img {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.event-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.35);
}

.event-card-body { padding: 20px; }
.event-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: inline-block;
}

.event-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.event-card-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.event-card-btns {
  display: block;
}

.ecb-book {
  display: block;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.ecb-book:hover {
  background: var(--aqua-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(3, 105, 161, 0.3);
}

/* Why Section */
.events-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.events-why-card {
  background: var(--sky);
  border-radius: 20px;
  padding: 0 0 28px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all 0.4s;
  overflow: hidden;
}

.events-why-card:hover {
  background: var(--white);
  border-color: rgba(14, 165, 233, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.12);
}

.events-why-icon {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
}

.events-why-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.events-why-card:hover .events-why-icon img {
  transform: scale(1.08);
}

.events-why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 24px 8px;
}

.events-why-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 24px;
}

/* CTA Banner */
.events-cta-section {
  background: linear-gradient(135deg, var(--aqua-dark) 0%, #0284c7 50%, var(--teal) 100%);
  padding: 80px 5%;
  text-align: center;
}

.events-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.events-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.events-cta-inner h2 span {
  color: var(--gold-light);
}

.events-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== EVENTS RESPONSIVE ===== */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .event-stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .event-card-body { padding: 16px; }
  .event-card-title { font-size: 0.9rem; }
  .event-card-desc { font-size: 0.78rem; margin-bottom: 15px; }
  .ecb-book { padding: 10px 12px; font-size: 0.8rem; }
  .event-card-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .event-card-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .events-why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .events-why-card { padding: 24px 16px; }
  .events-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .event-stat-item { padding: 20px 12px; }
  .event-stat-num { font-size: 1.5rem; }
  .events-cta-section { padding: 40px 5% !important; }
}

@media (max-width: 480px) {
  .events-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 60px 5% 80px;
  background: var(--white);
}

.map-wrap {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.12);
  border: 2px solid var(--sky);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {

  .event-card {
    border-radius: 10px;
  }

  .map-wrap iframe {
    height: 300px;
  }

  .map-section {
    padding: 40px 0 60px;
  }

  .map-wrap {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ===== FOOTER MAP ===== */
.footer-map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
  filter: brightness(0.85) contrast(1.1);
}
/* ===== FAQ SECTION ===== */
.faq-section { background: var(--off); }
.faq-container { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-item { background: var(--white); border-radius: 16px; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid rgba(14, 165, 233, 0.1); }
.faq-question { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; color: var(--text-dark); transition: all 0.3s; }
.faq-question:hover { background: var(--sky); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s ease-out; color: var(--text-mid); line-height: 1.6; }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
.faq-icon { font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--white); }
.review-card { background: var(--off); padding: 30px; border-radius: 20px; position: relative; box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08); }
.review-stars { color: var(--amber); margin-bottom: 15px; }
.review-text { font-style: italic; color: var(--text-mid); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-img { width: 45px; height: 45px; border-radius: 50%; background: var(--aqua); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; }
.review-btn-wrap { text-align: center; margin-top: 50px; }
.google-review-btn { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 2px solid #ea4335; color: #ea4335; padding: 12px 30px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s; }
.google-review-btn:hover { background: #ea4335; color: #fff; transform: translateY(-3px); }

/* ===== QUICK LINKS / BUTTONS ===== */
.quick-links-section { background: var(--off); padding-bottom: 60px; }
.links-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.link-btn { background: var(--white); padding: 20px 30px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 160px; text-decoration: none; color: var(--text-dark); font-weight: 700; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: all 0.3s; border: 1.5px solid transparent; }
.link-btn:hover { transform: translateY(-8px); border-color: var(--aqua); box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15); }
.link-btn .icon { font-size: 2rem; }
.counter-btn { cursor: default; }
.counter-btn:hover { transform: none; border-color: transparent; }

@media (max-width: 768px) {
    .links-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
}

/* ===== TOUR CATEGORIES ===== */
.categories-section { background: var(--white); padding: 80px 5%; }
@media (max-width: 768px) {
  .categories-section { padding: 40px 5%; }
}
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 60px; max-width: 1400px; margin-left: auto; margin-right: auto; }
.cat-card { position: relative; height: 380px; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1); }
.cat-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cat-card:hover img { transform: scale(1.1); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 26, 46, 0.9) 0%, rgba(12, 26, 46, 0.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; transition: all 0.3s ease; }
.cat-name { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; }
.cat-btn { background: var(--aqua); color: #fff; padding: 10px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-align: center; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s; opacity: 0.9; }
.cat-btn:hover { background: var(--coral); transform: scale(1.05); opacity: 1; }

@media (max-width: 1200px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { height: 260px; }
  .cat-name { font-size: 0.95rem; margin-bottom: 8px; }
  .cat-btn { padding: 8px 12px; font-size: 0.65rem; }
  .cat-overlay { padding: 15px; }
}

/* ===== SOCIAL CARDS SECTION ===== */
.social-section { background: var(--white); padding: 60px 5%; }
@media (max-width: 768px) {
  .social-section { padding: 40px 5%; }
}
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.social-card { display: flex; flex-direction: column; align-items: center; gap: 15px; padding: 30px 20px; border-radius: 20px; text-decoration: none; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); background: var(--off); color: #fff; }
.social-card .icon { font-size: 2.5rem; transition: transform 0.3s; color: #fff; }
.social-card .name { font-weight: 800; font-size: 1.1rem; color: #fff; }
.social-card .handle { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.social-card.whatsapp { background: #25d366; border-color: #25d366; }
.social-card.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: #bc1888; }
.social-card.facebook { background: #1877f2; border-color: #1877f2; }
.social-card-disabled { cursor: default; opacity: 0.62; }
.social-card.youtube { background: #ff0000; border-color: #ff0000; }
.social-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); opacity: 0.9; }

@media (max-width: 768px) {
    .social-grid { display: flex; overflow-x: auto; gap: 12px; padding-bottom: 20px; scrollbar-width: none; }
    .social-grid::-webkit-scrollbar { display: none; }
    .social-card { min-width: 140px; flex-shrink: 0; padding: 20px 10px; }
}
