/**
 * GoHeaven Tour and Travel - Custom Styles
 * Premium travel brand - Tailwind extended
 */

:root {
  --color-primary: #0b1f3a;
  --color-secondary: #1e88e5;
  --color-accent: #f59e0b;
  --color-light: #f4f7fb;
  --color-topbar: #0a1628;
}

/* Brand logo */
.site-logo {
  height: 3.25rem; /* 52px */
  width: auto;
  object-fit: contain;
}

/* ========== GoHeaven Design System (homepage redesign) ========== */
.gh-topbar {
  background: var(--color-topbar);
  color: #fff;
  font-size: 0.78rem;
  position: relative;
  z-index: 60;
}
.gh-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.35rem;
}
.gh-topbar-left,
.gh-topbar-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.gh-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.gh-topbar-item:hover { color: #7dd3fc; }
.gh-topbar-item svg,
.gh-topbar-center svg,
.gh-topbar-social svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}
.gh-topbar-center {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.gh-topbar-social a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  transition: color 0.2s, transform 0.2s;
}
.gh-topbar-social a:hover {
  color: #7dd3fc;
  transform: translateY(-1px);
}
@media (min-width: 900px) {
  .gh-topbar-center { display: inline-flex; }
}
@media (max-width: 640px) {
  .gh-topbar-left .gh-topbar-item:last-child { display: none; }
  .gh-topbar-social { gap: 0.65rem; }
}

.gh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease;
}
.gh-header.is-stuck {
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
}
.gh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}
.gh-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.gh-logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #0b1f3a 0%, #163a63 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.2);
}
.gh-logo-mark svg { width: 1.25rem; height: 1.25rem; }
.gh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.gh-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.gh-logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gh-logo-tag {
  font-size: 0.58rem;
  color: #64748b;
  margin-top: 0.1rem;
  display: none;
}
@media (min-width: 480px) {
  .gh-logo-tag { display: block; }
}

.gh-nav-links {
  align-items: center;
  gap: 0.15rem;
}
.gh-nav-link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s;
}
.gh-nav-link:hover,
.gh-nav-link.is-active {
  color: var(--color-secondary);
}
.gh-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-secondary);
}

.gh-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.gh-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gh-icon-btn svg { width: 1.1rem; height: 1.1rem; }
.gh-icon-btn:hover {
  border-color: #bfdbfe;
  color: var(--color-secondary);
  background: #f0f9ff;
}
.gh-wishlist-btn .gh-badge-count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gh-btn-quote {
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.28);
  transition: transform 0.2s, background 0.2s;
}
.gh-btn-quote svg { width: 0.95rem; height: 0.95rem; }
.gh-btn-quote:hover {
  background: #1570c4;
  transform: translateY(-1px);
}

/* Hero */
.gh-hero {
  min-height: auto !important;
  padding: 0 !important;
  display: block !important;
}
.gh-hero .hero-banner-inner {
  padding: 3.5rem 1.25rem 4.5rem;
}
.gh-hero-overlay {
  background: linear-gradient(100deg, rgba(8, 20, 40, 0.78) 0%, rgba(8, 20, 40, 0.45) 48%, rgba(8, 20, 40, 0.25) 100%);
}
.gh-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .gh-hero .hero-banner-inner {
    padding: 4.5rem 1.5rem 5rem;
  }
  .gh-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}
.gh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
}
.gh-hero-eyebrow-line {
  width: 2rem;
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,0.7);
}
.gh-hero-eyebrow svg { width: 0.95rem; height: 0.95rem; color: #7dd3fc; }
.gh-hero-title {
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 16ch;
}
.gh-hero-title span { color: #7dd3fc; }
.gh-hero-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.gh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: none !important;
}
.gh-btn-primary,
.gh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.gh-btn-primary svg,
.gh-btn-outline svg { width: 1.05rem; height: 1.05rem; }
.gh-btn-primary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.35);
}
.gh-btn-primary:hover {
  background: #1570c4;
  transform: translateY(-1px);
}
.gh-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.gh-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.gh-hero-features {
  display: none;
}
@media (min-width: 1024px) {
  .gh-hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    background: rgba(255,255,255,0.96);
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  }
}
.gh-feature-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  min-height: 6.2rem;
  padding: 0.85rem 0.5rem;
  border-radius: 0.9rem;
  background: #f8fbff;
  border: 1px solid #e8f1fb;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gh-feature-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30, 136, 229, 0.1);
}
.gh-feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: rgba(30, 136, 229, 0.1);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gh-feature-icon svg { width: 1.2rem; height: 1.2rem; }
.gh-feature-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

/* Search bar — overlaps hero bottom & sits above trust bar */
.gh-search-wrap {
  position: relative;
  z-index: 25;
  margin-top: -2.75rem;
  margin-bottom: 0;
}
.gh-search-bar--desktop { display: none; }
.gh-search-bar--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 0.85rem 1rem 1rem;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.gh-msearch-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid #eef2f6;
}
.gh-msearch-row:last-of-type {
  border-bottom: 0;
}
.gh-msearch-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gh-msearch-value {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}
.gh-msearch-value svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.gh-msearch-btn {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.55rem;
  border: 0;
  border-radius: 0.9rem;
  background: var(--color-secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(30, 136, 229, 0.3);
}
.gh-msearch-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.gh-msearch-btn-text {
  display: inline;
}

.gh-search-bar--desktop.gh-search-bar,
.gh-search-bar {
  background: #fff;
  border-radius: 1.5rem;
  padding: 0.85rem;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
@media (min-width: 900px) {
  .gh-search-wrap { margin-top: -2.25rem; }
  .gh-search-bar--mobile { display: none; }
  .gh-search-bar--desktop {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    align-items: center;
    padding: 0.65rem 0.65rem 0.65rem 1rem;
    border-radius: 999px;
  }
}
.gh-search-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.35rem 0.5rem;
  border-radius: 0.85rem;
  background: #f8fafc;
}
@media (min-width: 900px) {
  .gh-search-field {
    background: transparent;
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 0.2rem 0.85rem;
  }
  .gh-search-field:last-of-type { border-right: none; }
}
.gh-search-field svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.gh-search-input,
.gh-search-select {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  color: #334155;
  min-height: 2.4rem;
}
.gh-search-btn {
  border: 0;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.gh-search-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.gh-search-btn:hover {
  background: #1570c4;
  transform: translateY(-1px);
}

/* Trust bar */
.gh-trust-bar {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 1.5rem 0 0.5rem;
  margin-top: 1.1rem;
}
.gh-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.gh-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.35rem 0.15rem;
}
.gh-trust-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: rgba(30, 136, 229, 0.1);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-trust-icon svg { width: 1.05rem; height: 1.05rem; }
.gh-trust-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}
.gh-trust-sub {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.3;
}
.gh-trust-inner { display: none; }

@media (min-width: 900px) {
  .gh-trust-bar {
    background: #eef4fb;
    padding: 1.5rem 0 1.75rem;
    margin-top: 1rem;
  }
  .gh-trust-grid { display: none; }
  .gh-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
  }
}
.gh-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}
.gh-trust-item svg {
  width: 1.2rem;
  height: 1.2rem;
  color: #94a3b8;
}

/* Destinations */
.gh-dest-section {
  background: #fff;
  padding: 1.75rem 0 3rem;
}
.gh-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.gh-section-kicker {
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.gh-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.9rem;
}
.gh-view-all svg { width: 1rem; height: 1rem; }
.gh-view-all:hover { color: #1570c4; }

/* Mobile: horizontal scroll destination cards */
.gh-dest-grid.gh-dest-scroll {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gh-dest-grid.gh-dest-scroll::-webkit-scrollbar { display: none; }
.gh-dest-grid.gh-dest-scroll .gh-dest-card {
  flex: 0 0 72%;
  max-width: 280px;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .gh-dest-grid.gh-dest-scroll .gh-dest-card {
    flex-basis: 42%;
  }
}
@media (min-width: 900px) {
  .gh-dest-section { padding: 2.5rem 0 4rem; }
  .gh-dest-grid.gh-dest-scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .gh-dest-grid.gh-dest-scroll .gh-dest-card {
    flex: none;
    max-width: none;
  }
}
.gh-dest-card {
  display: block;
  border-radius: 1.15rem;
  overflow: hidden;
  text-decoration: none;
}
.gh-dest-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.15rem;
}
.gh-dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gh-dest-card:hover .gh-dest-media img {
  transform: scale(1.06);
}
.gh-dest-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
}
.gh-dest-tag--best { background: #1e88e5; }
.gh-dest-tag--trend { background: #16a34a; }
.gh-dest-tag--popular { background: #ea580c; }
.gh-dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 18, 35, 0.78) 100%);
}
.gh-dest-place {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
}
.gh-dest-place svg { width: 0.95rem; height: 0.95rem; }
.gh-dest-price {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 600;
}
.gh-dest-arrow {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.gh-dest-arrow svg { width: 1rem; height: 1rem; }
.gh-dest-card:hover .gh-dest-arrow {
  background: var(--color-secondary);
  color: #fff;
  transform: translateX(2px);
}

/* Footer brand text logo fallback */
.gh-footer-logo .gh-logo-name { color: #fff; }
.gh-footer-logo .gh-logo-sub { color: #7dd3fc; }
.gh-footer-logo .gh-logo-tag { color: rgba(255,255,255,0.55); display: block; }
.gh-footer-logo .gh-logo-mark {
  background: linear-gradient(145deg, #1e88e5 0%, #0b1f3a 100%);
}

/* Mobile hero polish */
@media (max-width: 899px) {
  .gh-hero .hero-banner-inner {
    padding: 2.25rem 1.15rem 4.75rem;
  }
  .gh-hero-copy {
    max-width: 100%;
    padding-right: 0.25rem;
  }
  .gh-hero-title {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
    line-height: 1.22;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .gh-hero-desc {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .gh-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.55rem;
  }
  .gh-btn-primary,
  .gh-btn-outline {
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    padding: 0.75rem 0.85rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .gh-logo-tag { display: none !important; }
  .gh-nav { min-height: 4rem; }
  #mobile-menu-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
  }
  body {
    padding-bottom: 4.75rem;
  }
  .whatsapp-float {
    bottom: 5.25rem !important;
  }
  footer.bg-primary {
    padding-bottom: 1.5rem;
  }
}

/* Mobile bottom navigation */
.gh-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 0.15rem;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 24px rgba(11, 31, 58, 0.08);
  padding: 0.45rem 0.35rem calc(0.45rem + env(safe-area-inset-bottom));
}
.gh-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.35rem 0.2rem;
  color: #64748b;
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 600;
}
.gh-bottom-nav-item svg {
  width: 1.2rem;
  height: 1.2rem;
}
.gh-bottom-nav-item.is-active,
.gh-bottom-nav-item:hover {
  color: var(--color-secondary);
}
@media (min-width: 900px) {
  .gh-bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

/* Mobile slide menu — above header/topbar so Close is clickable */
.gh-mobile-menu {
  z-index: 80;
}
.gh-mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.72);
  backdrop-filter: blur(4px);
}
.gh-mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 22rem);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 81;
}
.gh-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.gh-mobile-menu-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-primary);
}
.gh-mobile-menu-close {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 2.5rem;
}
.gh-mobile-menu-close svg {
  width: 1.1rem;
  height: 1.1rem;
}
.gh-mobile-menu-close:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--color-secondary);
}
.gh-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  overflow-y: auto;
}
.gh-mobile-menu-nav a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
}
.gh-mobile-menu-nav a:hover {
  background: #f1f5f9;
  color: var(--color-secondary);
}
.gh-mobile-menu-phone {
  color: #64748b !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}
.gh-mobile-menu-cta {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--color-secondary) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.gh-mobile-menu-cta:hover {
  background: #1570c4 !important;
  color: #fff !important;
}

/* ========== Destinations page (screenshot match) ========== */
.gh-dest-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b1f3a;
}
@media (min-width: 768px) {
  .gh-dest-hero {
    min-height: 340px;
  }
}
@media (min-width: 1024px) {
  .gh-dest-hero {
    min-height: 380px;
  }
}
.gh-dest-hero-bg {
  position: absolute;
  inset: 0;
}
.gh-dest-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gh-dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.55) 0%, rgba(8, 18, 35, 0.72) 45%, rgba(8, 18, 35, 0.92) 100%);
}
.gh-dest-hero-copy {
  position: relative;
  padding: 3.5rem 0 2.25rem;
  max-width: 40rem;
  color: #fff;
}
.gh-dest-hero-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.92);
}
.gh-dest-hero-copy h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}
.gh-dest-hero-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(241, 245, 249, 0.92);
  max-width: 34rem;
}

.gh-dest-filters {
  position: sticky;
  top: 4.5rem;
  z-index: 35;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
}
.gh-dest-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.9rem 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gh-dest-pills::-webkit-scrollbar { display: none; }
.gh-dest-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.gh-dest-pill:hover {
  border-color: #93c5fd;
  color: var(--color-secondary);
}
.gh-dest-pill.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.2);
}

.gh-dest-page-section {
  background: #fff;
  padding: 2.5rem 0 3rem;
}
.gh-dest-page-section--intl {
  background: #f8fafc;
  padding-bottom: 4rem;
}
.gh-dest-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.gh-dest-page-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.gh-dest-page-head p {
  margin: 0;
  max-width: 36rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
}
.gh-dest-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: rgba(11, 31, 58, 0.65);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.gh-dest-badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
.gh-dest-badge--intl .gh-dest-badge-dot {
  background: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.18);
}

.gh-dest-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .gh-dest-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .gh-dest-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
  }
  .gh-dest-page-grid--intl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gh-dest-tile {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gh-dest-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.16);
}
.gh-dest-tile-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0f172a;
}
@media (min-width: 1024px) {
  .gh-dest-page-grid--intl .gh-dest-tile-media {
    aspect-ratio: 4 / 3.4;
  }
}
.gh-dest-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gh-dest-tile:hover .gh-dest-tile-media img {
  transform: scale(1.06);
}
.gh-dest-tile-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.gh-dest-tile-tag svg {
  width: 0.8rem;
  height: 0.8rem;
}
.gh-dest-tile-tag--intl {
  background: rgba(30, 136, 229, 0.65);
}
.gh-dest-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 3.5rem 1rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 18, 35, 0.55) 35%, rgba(8, 18, 35, 0.92) 100%);
  color: #fff;
}
.gh-dest-tile-price {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.gh-dest-tile-price span {
  color: #fbbf24;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.gh-dest-tile-overlay h3 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.gh-dest-tile-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(226, 232, 240, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 899px) {
  .gh-dest-filters {
    top: 4rem;
  }
  .gh-dest-hero-copy {
    padding: 2.5rem 0 1.75rem;
  }
}

/* Rupee icon (₹) — readable next to prices */
.rupee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  vertical-align: middle;
  margin-right: 0.2rem;
  transform: translateY(0.12rem);
  flex-shrink: 0;
}
.rupee-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  overflow: visible;
}
.rupee-icon text {
  fill: currentColor;
  font-size: 18px;
  font-weight: 700;
}

/* Listing page filter bars — horizontal scroll, thin scrollbar */
.filter-pills-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.2rem 0.15rem 0.45rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.65) transparent;
}
.filter-pills-scroll::-webkit-scrollbar {
  height: 5px;
}
.filter-pills-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}
.filter-pills-wrap {
  position: relative;
}
.filter-pills-wrap .filter-pills-fade-left,
.filter-pills-wrap .filter-pills-fade-right {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0.35rem;
  width: 1.5rem;
  z-index: 1;
}
.filter-pills-wrap .filter-pills-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--color-light) 0%, transparent 100%);
}
.filter-pills-wrap .filter-pills-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--color-light) 0%, transparent 100%);
}
/* White sticky bars (e.g. destinations page) */
.page-listing-filters .filter-pills-fade-left {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, transparent 100%);
}
.page-listing-filters .filter-pills-fade-right {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, transparent 100%);
}
.blog-filters-panel .filter-pills-fade-left {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.97) 0%, transparent 100%);
}
.blog-filters-panel .filter-pills-fade-right {
  background: linear-gradient(270deg, rgba(248, 250, 252, 0.97) 0%, transparent 100%);
}

/* Large price lines (package cards) */
.card-pkg .rupee-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.15rem;
  transform: translateY(0.14rem);
}
.card-pkg .rupee-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.card-pkg .rupee-icon text {
  font-size: 20px;
}

/* Package detail — hero sidebar big price */
.pkg-hero-card p.font-heading .rupee-icon {
  width: 1.65rem;
  height: 1.65rem;
  margin-right: 0.2rem;
  transform: translateY(0.2rem);
}
.pkg-hero-card p.font-heading .rupee-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}
.pkg-hero-card p.font-heading .rupee-icon text {
  font-size: 20px;
}
@media (min-width: 640px) {
  .pkg-hero-card p.font-heading .rupee-icon {
    width: 1.85rem;
    height: 1.85rem;
    margin-right: 0.25rem;
  }
  .pkg-hero-card p.font-heading .rupee-icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }
  .pkg-hero-card p.font-heading .rupee-icon text {
    font-size: 22px;
  }
}

/* Fonts - loaded in layout
 * Headings / UI: Proxima Nova
 * Body: Open Sans
 * Fallback: Arial / Helvetica / sans-serif
 */
.font-heading { font-family: 'Proxima Nova', Arial, Helvetica, sans-serif; }
.font-body { font-family: 'Open Sans', Arial, Helvetica, sans-serif; }
.font-ui { font-family: 'Proxima Nova', Arial, Helvetica, sans-serif; }

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========== Preloader (GoHeaven) ========== */
.preload-body {
  overflow: hidden;
}
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 20% 15%, rgba(30, 136, 229, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(245, 158, 11, 0.22), transparent 50%),
    linear-gradient(160deg, #061528 0%, #0b1f3a 45%, #071422 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
}
.site-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.03);
}
.gh-loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.gh-loader-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
  animation: gh-orb-float 7s ease-in-out infinite;
}
.gh-loader-orb--1 {
  width: 10rem;
  height: 10rem;
  top: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.55), transparent 70%);
}
.gh-loader-orb--2 {
  width: 14rem;
  height: 14rem;
  right: 5%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 70%);
  animation-delay: -2.5s;
}
.gh-loader-orb--3 {
  width: 7rem;
  height: 7rem;
  left: 45%;
  top: 70%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.35), transparent 70%);
  animation-delay: -4s;
}
.gh-loader-cloud {
  position: absolute;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  animation: gh-cloud-drift 12s linear infinite;
}
.gh-loader-cloud--1 {
  width: 4.5rem;
  top: 28%;
  left: -5rem;
  animation-duration: 14s;
}
.gh-loader-cloud--2 {
  width: 3rem;
  top: 58%;
  left: -4rem;
  opacity: 0.7;
  animation-duration: 18s;
  animation-delay: -6s;
}

.site-preloader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #e5e7eb;
  padding: 2.4rem 2.2rem 2rem;
  width: min(92vw, 22rem);
  border-radius: 1.75rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: gh-loader-card-in 0.6s ease both;
}

.gh-loader-mark {
  position: relative;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 auto 1.35rem;
}
.gh-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: #1e88e5;
  border-right-color: rgba(30, 136, 229, 0.25);
  animation: gh-spin 1.1s linear infinite;
}
.gh-loader-ring--2 {
  inset: 0.55rem;
  border-top-color: #f59e0b;
  border-right-color: rgba(245, 158, 11, 0.2);
  animation-direction: reverse;
  animation-duration: 1.6s;
}
.gh-loader-core {
  position: absolute;
  inset: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #0b1f3a, #163a63);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  box-shadow:
    0 0 0 4px rgba(30, 136, 229, 0.15),
    0 12px 28px rgba(0, 0, 0, 0.35);
  animation: gh-core-pulse 2s ease-in-out infinite;
}
.gh-loader-core svg {
  width: 1.55rem;
  height: 1.55rem;
}
.gh-loader-plane-fly {
  position: absolute;
  inset: 0;
  animation: gh-orbit 2.4s linear infinite;
}
.gh-loader-plane-fly svg {
  position: absolute;
  top: -0.15rem;
  left: 50%;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: -0.55rem;
  color: #7dd3fc;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.8));
}

.site-preloader-logo {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.site-preloader-logo span {
  color: #7dd3fc;
}
.gh-loader-tagline {
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.gh-loader-progress {
  width: 100%;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 0.9rem;
}
.gh-loader-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1e88e5, #7dd3fc, #f59e0b);
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(30, 136, 229, 0.65);
  animation: gh-progress-shimmer 1.2s linear infinite;
  transition: width 0.25s ease;
}

.site-preloader-text {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  min-height: 1.2em;
  transition: opacity 0.25s ease;
}

@keyframes gh-spin {
  to { transform: rotate(360deg); }
}
@keyframes gh-orbit {
  to { transform: rotate(360deg); }
}
@keyframes gh-core-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes gh-orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.06); }
}
@keyframes gh-cloud-drift {
  from { transform: translateX(0); }
  to { transform: translateX(120vw); }
}
@keyframes gh-progress-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes gh-loader-card-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .site-preloader-inner {
    padding: 2rem 1.5rem 1.75rem;
  }
  .site-preloader-logo {
    font-size: 1.55rem;
  }
  .gh-loader-mark {
    width: 5.75rem;
    height: 5.75rem;
  }
}

/* ========== Card design system ========== */
.card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.18), 0 12px 24px -8px rgba(15, 23, 42, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

/* Destination / content cards - image container */
.card-img-wrap {
  position: relative;
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-hover:hover .card-img-wrap img {
  transform: scale(1.08);
}

/* Card base - soft shadow & radius */
.card-base {
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.35s ease, border-color 0.3s ease, transform 0.35s ease;
}
.card-base:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.06);
  border-color: rgba(14, 165, 233, 0.25);
}

/* Why choose / feature cards */
.card-feature {
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}

/* Experience cards (dark section) */
.card-experience {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card-experience:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.25);
}

/* Testimonial card */
.card-testimonial {
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

/* Blog card */
.card-blog .card-img-wrap img {
  transition: transform 0.5s ease;
}
.card-blog:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Package card - price badge */
.pkg-price {
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}

/* ========== Tour Package cards – modern premium design ========== */
.card-pkg {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-pkg:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.15), 0 12px 28px -8px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.25);
}
.card-pkg .card-pkg-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.card-pkg-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.35rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}
.card-pkg:hover .card-pkg-badge {
  background: rgba(14, 165, 233, 0.9);
  transform: translateY(-2px);
}
.card-pkg .card-pkg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.1) 45%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.card-pkg:hover .card-pkg-img::after {
  opacity: 0.9;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 55%);
}
.card-pkg .card-pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-pkg:hover .card-pkg-img img {
  transform: scale(1.08);
}
.card-pkg .card-pkg-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, background 0.3s ease;
}
.card-pkg:hover .card-pkg-duration {
  background: #fff;
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}
.card-pkg .card-pkg-body {
  padding: 1.5rem 1.5rem 1.5rem;
  position: relative;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease;
}
.card-pkg .card-pkg-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  opacity: 0.9;
  border-radius: 0 0 2px 2px;
}
.card-pkg:hover .card-pkg-body {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.card-pkg .card-pkg-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
  letter-spacing: -0.02em;
}
.card-pkg:hover .card-pkg-title {
  color: #0e7490;
}
.card-pkg .card-pkg-location {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
}
.card-pkg:hover .card-pkg-location {
  color: var(--color-secondary);
}
.card-pkg .card-pkg-location svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.card-pkg:hover .card-pkg-location svg {
  opacity: 1;
  color: var(--color-secondary);
}
/* Package card – inclusions (icons + short labels) */
.card-pkg-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
.card-pkg-inclusion {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 600;
  transition: color 0.25s ease;
}
.card-pkg:hover .card-pkg-inclusion {
  color: #0e7490;
}
.card-pkg-inclusion-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}
.card-pkg:hover .card-pkg-inclusion-icon {
  transform: scale(1.08);
}
.card-pkg-inclusion-text {
  white-space: nowrap;
}
@media (max-width: 639px) {
  .card-pkg-inclusions {
    gap: 0.5rem 0.75rem;
  }
  .card-pkg-inclusion {
    font-size: 0.65rem;
  }
  .card-pkg-inclusion-icon {
    width: 1rem;
    height: 1rem;
  }
}
.card-pkg .card-pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  transition: border-color 0.25s ease;
}
.card-pkg:hover .card-pkg-footer {
  border-top-color: rgba(14, 165, 233, 0.2);
}
.card-pkg .card-pkg-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.card-pkg .card-pkg-price .card-pkg-price-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}
.card-pkg:hover .card-pkg-price {
  color: #0e7490;
}
.card-pkg .card-pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), #1e293b);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
  transition: all 0.3s ease;
}
.card-pkg .card-pkg-cta:hover {
  background: linear-gradient(135deg, var(--color-secondary), #0284c7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}
.card-pkg .card-pkg-cta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.card-pkg .card-pkg-cta:hover svg {
  transform: translateX(3px);
}

/* Package card – actions: 3 buttons in one line (Call, WhatsApp, Package details) */
.card-pkg-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
  align-items: stretch;
}
.card-pkg-btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  text-decoration: none;
}
.card-pkg-btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.card-pkg-btn-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-pkg-btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
  border: none;
}
.card-pkg-btn-primary:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}
.card-pkg-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
  border: none;
}
.card-pkg-btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}
.card-pkg-btn-secondary {
  flex: 1.15;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--color-primary);
  border: 2px solid #cbd5e1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.card-pkg-btn-secondary:hover {
  border-color: var(--color-secondary);
  color: #0369a1;
  background: linear-gradient(180deg, #f0f9ff, #e0f2fe);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}
.card-pkg-btn-secondary .card-pkg-btn-icon {
  opacity: 0.85;
}
.card-pkg-btn-secondary:hover .card-pkg-btn-icon {
  opacity: 1;
  color: var(--color-secondary);
}
@media (min-width: 480px) {
  .card-pkg-btn {
    padding: 0.55rem 0.5rem;
    font-size: 0.72rem;
  }
  .card-pkg-btn-secondary {
    font-size: 0.7rem;
  }
}
@media (max-width: 379px) {
  .card-pkg-btn-text {
    display: none;
  }
  .card-pkg-btn {
    padding: 0.5rem 0.35rem;
  }
  .card-pkg-btn-icon {
    width: 1.15rem;
    height: 1.15rem;
  }
}
@media (max-width: 639px) {
  .card-pkg .card-pkg-body {
    padding: 1.25rem 1.25rem 1.25rem;
  }
  .card-pkg .card-pkg-title {
    font-size: 1.1rem;
  }
  .card-pkg .card-pkg-price {
    font-size: 1.25rem;
  }
}

/* ========== Single package detail page ========== */
.pkg-hero {
  min-height: 320px;
}
@media (min-width: 1024px) {
  .pkg-hero {
    min-height: 380px;
  }
}
.pkg-hero-overlay {
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.65), transparent 55%),
              linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
}

/* ========== International destinations section + tiles ========== */
.section-intl-destinations {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 35%, #ffffff 100%);
}

/* Bento-style tiles: equal heights, no broken grid from row-span */
.card-intl {
  border-radius: 1.75rem;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}
@media (min-width: 640px) {
  .card-intl {
    min-height: 300px;
  }
}
@media (min-width: 1024px) {
  .card-intl {
    min-height: 320px;
  }
}
.card-intl:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.38), 0 0 0 1px rgba(14, 165, 233, 0.2);
  border-color: rgba(125, 211, 252, 0.35);
}
.card-intl img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-intl-overlay {
  /* Strong dark band behind text so white copy stays readable on any photo */
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0.55) 38%,
    rgba(15, 23, 42, 0.82) 62%,
    rgba(0, 0, 0, 0.94) 100%
  );
}
/* Extra read zone only where typography sits */
.card-intl-inner {
  width: 100%;
  padding-top: 4.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    transparent 100%
  );
  border-radius: 0 0 1.75rem 1.75rem;
}
.card-intl .card-intl-kicker {
  color: #e0f2fe;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.6);
}
.card-intl .card-intl-title {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.75);
}
.card-intl .card-intl-desc {
  color: #f8fafc !important;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 12px rgba(0, 0, 0, 0.7);
}
.card-intl .card-intl-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.4rem;
  font-size: 0.8rem;
  color: #e2e8f0;
  margin: 0;
}
.card-intl .card-intl-price-prefix {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #f1f5f9;
  margin-right: 0.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}
.card-intl .card-intl-price .price-amount {
  font-weight: 800;
  font-size: 1.125rem;
  color: #fef08a;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 0 14px rgba(0, 0, 0, 0.45);
}
.card-intl .rupee-icon {
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 0.08rem;
  transform: translateY(0.1rem);
  color: #fde047;
}
.card-intl .rupee-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}
.card-intl .rupee-icon text {
  font-size: 17px;
}
.card-intl .card-intl-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease,
    box-shadow 0.3s ease;
}
.card-intl .card-intl-cta-label {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.card-intl .card-intl-cta-arrow {
  transition: transform 0.3s ease;
  opacity: 0.95;
}
.card-intl:hover .card-intl-cta {
  background: rgba(14, 165, 233, 0.65);
  border-color: rgba(186, 230, 253, 0.75);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}
.card-intl:hover .card-intl-cta-arrow {
  transform: translateX(4px);
}

/* Line clamp for card descriptions */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== India destinations section (homepage + listing) ========== */
.section-india-destinations {
  background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 42%, #f1f5f9 72%, #ffffff 100%);
}
.section-india-glow {
  background:
    radial-gradient(ellipse 80% 55% at 50% -15%, rgba(16, 185, 129, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 40%, rgba(14, 165, 233, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(245, 158, 11, 0.06), transparent 45%);
}

/* ========== India Destination cards — modern glass + premium hover ========== */
.card-india {
  border-radius: 1.875rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 12px 40px -12px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.35s ease;
}
.card-india:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 48px -12px rgba(15, 23, 42, 0.18),
    0 16px 40px -8px rgba(14, 165, 233, 0.2),
    0 0 0 1px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.35);
}
.card-india .card-india-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
@media (min-width: 1024px) {
  .card-india .card-india-img-wrap {
    aspect-ratio: 4 / 5;
  }
}
.card-india .card-india-photo,
.card-india .card-india-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-india:hover .card-india-photo,
.card-india:hover .card-india-img-wrap img {
  transform: scale(1.08);
}
.card-india .card-india-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05) 0%,
    rgba(15, 23, 42, 0.2) 45%,
    rgba(15, 23, 42, 0.75) 78%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}
.card-india-shine {
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 68%
  );
  mix-blend-mode: overlay;
}
/* Glass panel for title + price */
.card-india-float {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1.125rem;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.card-india:hover .card-india-float {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.card-india .card-india-name {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.card-india .card-india-desc {
  color: #e2e8f0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.card-india .card-india-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.35rem;
  margin-bottom: 0.5rem;
}
.card-india .card-india-price-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.88);
}
.card-india .card-india-price-row .rupee-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.05rem;
  transform: translateY(0.08rem);
  color: #fef08a;
}
.card-india .card-india-price-row .rupee-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.card-india .card-india-price-row .rupee-icon text {
  font-size: 17px;
}
.card-india .card-india-price-row .price-amount {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fef08a;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.card-india .card-india-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.card-india-badge-icon {
  opacity: 0.95;
}
.card-india:hover .card-india-badge {
  transform: translateY(-1px);
  background: rgba(14, 165, 233, 0.35);
  border-color: rgba(186, 230, 253, 0.55);
}
.card-india .card-india-content {
  position: relative;
  padding: 1.25rem 1.35rem 1.4rem;
  transition: background 0.35s ease;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.card-india .card-india-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.35), rgba(16, 185, 129, 0.25), transparent);
  opacity: 0.9;
}
.card-india:hover .card-india-content {
  background: linear-gradient(180deg, #f0f9ff 0%, #ecfeff 45%, #ffffff 100%);
}
.card-india .card-india-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.06));
  border: 2px solid rgba(14, 165, 233, 0.35);
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.12);
  transition: all 0.3s ease;
}
.card-india .card-india-cta-label {
  line-height: 1.2;
}
.card-india:hover .card-india-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--color-secondary), #0284c7);
  border-color: transparent;
  gap: 0.7rem;
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}
.card-india .card-india-cta-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.card-india:hover .card-india-cta-arrow {
  transform: translateX(4px);
}

/* Hero banner – mobile: full height + top padding; desktop: fixed heights */
.hero-banner {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}
@media (min-width: 640px) {
  .hero-banner {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .hero-banner {
    min-height: auto;
  }
}
.hero-banner-img {
  object-position: center 40%;
}
.gh-hero-img-mobile { display: none; }
.gh-hero-img-desktop { display: block; }
@media (max-width: 899px) {
  .gh-hero-img-mobile {
    display: block !important;
  }
  .gh-hero-img-desktop {
    display: none !important;
  }
  .gh-hero .gh-hero-img-mobile {
    object-position: center center;
  }
}

/* Hero banner – mobile layout & touch targets */
@media (max-width: 639px) {
  .hero-banner:not(.gh-hero) .hero-banner-inner {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
  .hero-banner:not(.gh-hero) .hero-banner-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-banner:not(.gh-hero) .hero-banner-buttons a {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }
  .hero-banner .hero-banner-search {
    width: 100%;
    padding: 0.25rem;
  }
  .hero-banner .hero-banner-search input {
    min-height: 48px;
    font-size: 16px;
  }
  .hero-banner .hero-banner-search button {
    min-height: 48px;
    width: 100%;
  }
}

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.3) 100%);
}

/* Nav: visible over hero (white) and when scrolled (dark on light bg) */
#main-header.nav-scrolled #nav-bg {
  opacity: 1;
}
#main-header.nav-scrolled .nav-link {
  color: var(--color-primary);
}
#main-header.nav-scrolled .nav-link:hover {
  color: var(--color-secondary);
}
#main-header.nav-scrolled .nav-logo {
  color: var(--color-primary);
}
#main-header.nav-scrolled .nav-logo:hover {
  color: var(--color-secondary);
}
#main-header.nav-scrolled .nav-logo span {
  color: var(--color-secondary);
}
#main-header.nav-scrolled #mobile-menu-btn {
  color: var(--color-primary);
}
#main-header.nav-scrolled #mobile-menu-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Mega menu animation */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Testimonial slider */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* WhatsApp button pulse */
.whatsapp-float {
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Packages page filter bar — dropdown chevron */
#pkg-filter-bar.pkg-filter-open .pkg-filter-chevron {
  transform: rotate(180deg);
}

/* India destination cards polish */
.section-india-destinations .grid-india-destinations {
  align-items: stretch;
}
.india-slider-wrap {
  position: relative;
}
.india-slider-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.1rem 0.5rem;
  scrollbar-width: none;
}
.india-slider-track::-webkit-scrollbar {
  display: none;
}
.india-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .india-slide {
    flex-basis: calc(50% - 0.625rem);
  }
}
@media (min-width: 1024px) {
  .india-slide {
    flex-basis: calc(25% - 0.9375rem);
  }
}
.india-slider-btn {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 15;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  transition: all 0.25s ease;
}
.india-slider-btn:hover {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}
.india-slider-btn-prev {
  left: -0.85rem;
}
.india-slider-btn-next {
  right: -0.85rem;
}
.section-india-destinations .card-india {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(203, 213, 225, 0.75);
  box-shadow:
    0 10px 30px -18px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.section-india-destinations .card-india::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(16, 185, 129, 0.25),
    rgba(14, 165, 233, 0.35),
    rgba(99, 102, 241, 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.section-india-destinations .card-india:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 211, 252, 0.65);
  box-shadow:
    0 22px 50px -22px rgba(15, 23, 42, 0.4),
    0 14px 32px -18px rgba(14, 165, 233, 0.35);
}
.section-india-destinations .card-india:hover::before {
  opacity: 1;
}
.section-india-destinations .card-india .card-india-img-wrap {
  aspect-ratio: 4 / 5;
}
.section-india-destinations .card-india .card-india-overlay {
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.05) 0%,
    rgba(2, 6, 23, 0.22) 38%,
    rgba(2, 6, 23, 0.68) 74%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.section-india-destinations .card-india .card-india-float {
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 1rem;
  padding: 0.95rem 1rem 1rem;
  background: rgba(2, 6, 23, 0.56);
  border-color: rgba(186, 230, 253, 0.24);
}
.section-india-destinations .card-india .card-india-desc {
  font-size: 0.82rem;
}
.section-india-destinations .card-india .card-india-content {
  margin-top: auto;
  padding: 1rem 1.1rem 1.1rem;
}
.section-india-destinations .card-india .card-india-cta {
  border-radius: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.62rem 0.95rem;
  border: 1.5px solid rgba(14, 165, 233, 0.35);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
}
.section-india-destinations .card-india:hover .card-india-cta {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.32);
}
@media (max-width: 639px) {
  .section-india-destinations .card-india {
    border-radius: 1.25rem;
  }
  .section-india-destinations .card-india .card-india-float {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    padding: 0.8rem 0.85rem 0.9rem;
  }
  .section-india-destinations .card-india .card-india-name {
    font-size: 1.12rem;
  }
}
