/* ============================================================
   RHINO TRAVELS INDIA — style.css
   Design System: reused across ALL pages
   Brand: Teal #3a8a7e | Cormorant Garamond + DM Sans
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── DESIGN TOKENS ── */
:root {
  --teal:        #3a8a7e;
  --teal-dark:   #2e6e64;
  --teal-light:  #4fa99b;
  --teal-faint:  #edf5f4;
  --cream:       #f8f5f0;
  --warm:        #f0ebe3;
  --ink:         #1a1a1a;
  --ink2:        #3d3d3d;
  --muted:       #7a7a7a;
  --rule:        #e5e0d8;
  --white:       #ffffff;
  --wa-green:    #25D366;
  --wa-dark:     #1ebe5a;
  --red:         #e53e3e;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(58,138,126,0.08);
  --shadow:      0 6px 24px rgba(58,138,126,0.12);
  --shadow-lg:   0 16px 56px rgba(58,138,126,0.16);

  --transition:  all 0.32s cubic-bezier(0.4,0,0.2,1);
  --nav-h:       72px;

  --max-w:       1200px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 99px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
p  { line-height: 1.7; color: var(--ink2); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--teal); border-radius: 99px; flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; padding: 13px 26px;
  border-radius: 999px; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 6px 20px rgba(58,138,126,0.32);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 10px 32px rgba(58,138,126,0.42);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal); color: white;
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa-green); color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
}
.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 10px 32px rgba(37,211,102,0.42);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
}
.badge-teal { background: var(--teal-faint); color: var(--teal-dark); }
.badge-red  { background: rgba(229,62,62,0.1); color: var(--red); border: 1px solid rgba(229,62,62,0.2); }
.badge-warm { background: rgba(255,255,255,0.18); color: white; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(6px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  .navbar {
    background: transparent;
}
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--teal);
  box-shadow: 0 2px 32px rgba(58,138,126,0.25);
}
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.88); }
.navbar.scrolled .nav-links a:hover { color: white; }
.navbar.scrolled .dropdown-menu { top: calc(100% + 4px); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: white;
  letter-spacing: 0.01em;
}
.nav-logo-tag {
  font-size: 0.6rem; font-weight: 400; color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px;
}

.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500; color: rgba(255,255,255,0.9);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform 0.3s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 95%; left: 0;
  background: white; border: 1px solid var(--rule);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 210px; padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.83rem; font-weight: 500; color: var(--ink2) !important;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
    background: var(--teal-faint);
    color: var(--teal) !important;
}
.navbar.scrolled .dropdown-menu a {
    color: var(--ink2) !important;
}

.navbar.scrolled .dropdown-menu a:hover {
    color: var(--teal) !important;
}
.dropdown-menu a .dm-icon { font-size: 1rem; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-wa-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa-green); color: white;
  padding: 9px 18px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.nav-wa-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }
.nav-wa-btn svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--teal); z-index: 400;
  flex-direction: column; padding: 32px 28px; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.88);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: white; }
.mobile-menu .mob-wa {
  margin-top: 24px; background: var(--wa-green);
  color: white; text-align: center; padding: 14px;
  border-radius: 999px; font-weight: 600; border: none;
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative; height: 65vh; min-height: 620px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  animation: kenslow 20s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenslow {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 5vw 72px;
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px;
}
.hero-left { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: rgba(255,255,255,0.6); flex-shrink: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 600; line-height: 1.08; color: white;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: #a8d8d2; }
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.82); line-height: 1.65;
  margin-bottom: 36px; max-width: 480px;
  font-weight: 300;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero stats */
.hero-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 22px; text-align: center; min-width: 110px;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: white; line-height: 1;
}
.hero-stat-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Slide dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.hero-dot.active { background: white; width: 22px; }

/* Slide counter */
.hero-counter {
  position: absolute; bottom: 32px; right: 5vw; z-index: 3;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}
.hero-counter span { color: white; }

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories { background: var(--white); }
.categories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 24px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    align-items: start;
}
.cat-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  border: 1.5px solid transparent;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-faint), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.cat-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  font-size: 2.4rem; margin-bottom: 16px; display: block;
}
.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.cat-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   FEATURED TRIPS
   ============================================================ */
.trips { background: var(--cream); }
.trips-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.trips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.trip-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.trip-img-wrap {
  position: relative; height: 240px; overflow: hidden;
}
.trip-img-wrap img {
  height: 100%; width: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.trip-card:hover .trip-img-wrap img { transform: scale(1.06); }
.trip-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(229,62,62,0.9); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
  backdrop-filter: blur(4px);
}
.trip-duration {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.55); color: white;
  font-size: 11px; font-weight: 500; padding: 4px 10px;
  border-radius: 99px; backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 5px;
}

.trip-body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.trip-dest {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.trip-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--ink);
  margin-bottom: 10px; line-height: 1.2;
}
.trip-highlights {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.trip-tag {
  font-size: 11px; color: var(--muted); background: var(--cream);
  padding: 3px 10px; border-radius: 99px;
}
.trip-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.trip-price-label { font-size: 11px; color: var(--muted); }
.trip-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--ink);
  line-height: 1;
}
.trip-price span { font-size: 0.9rem; color: var(--muted); font-weight: 400; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  align-items: center; margin-top: 10px;
}
.why-visual {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  height: 480px;
}
.why-visual img { height: 100%; object-fit: cover; }
.why-visual-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: white; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.why-badge-icon { font-size: 1.8rem; }
.why-badge-text strong {
  display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink);
}
.why-badge-text span { font-size: 0.78rem; color: var(--muted); }

.why-items { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--teal-faint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.why-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.why-item-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--teal);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; color: rgba(255,255,255,0.7); }
.cta-inner .section-label::before { background: rgba(255,255,255,0.5); }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600; color: white; margin-bottom: 16px; line-height: 1.15;
}
.cta-sub { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 36px; font-weight: 300; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn-white {
  background: white; color: var(--teal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--cream); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: white;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111; color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-name { color: white; font-size: 1.3rem; }
.footer-brand .nav-logo-tag { color: rgba(255,255,255,0.45); }
.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  margin-top: 16px; line-height: 1.7; max-width: 280px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: white;
  padding: 10px 20px; border-radius: 999px;
  font-size: 0.83rem; font-weight: 600;
  margin-top: 14px; transition: var(--transition);
}
.footer-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* WhatsApp Floating Button */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wapulse 3s ease-in-out infinite;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trips-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .why-visual      { height: 320px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .navbar { padding: 0 20px; }
  .nav-center, .nav-right .nav-wa-btn { display: none; }
  .hamburger { display: flex; }

  .hero-content { flex-direction: column; align-items: flex-start; padding-bottom: 56px; }
  .hero-right { flex-direction: row; align-self: stretch; justify-content: flex-start; }
  .hero-stat { min-width: 90px; padding: 12px 14px; }
  .hero-stat-num { font-size: 1.5rem; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card { padding: 24px 18px; }

  .trips-grid { grid-template-columns: 1fr; }
  .trips-header { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 45px 0; }
  .container { padding: 0 18px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-right { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}
/* ── TRENDING DESTINATIONS ── */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trending-card {
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--rule);
  transition: var(--transition);
  display: block;
}
.trending-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}
.trending-img {
  height: 140px;
  overflow: hidden;
}
.trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trending-card:hover .trending-img img {
  transform: scale(1.07);
}
.trending-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 12px 2px;
}
.trending-from {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  padding: 0 12px 12px;
}
.dest-filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--rule);
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.dest-filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.dest-filter-btn.active { background: var(--teal); color: white; border-color: var(--teal); }
.trending-card.hidden { display: none; }

@media (max-width: 1024px) { .trending-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 640px)  { .trending-grid { grid-template-columns: repeat(3,1fr); gap: 10px; } }
@media (max-width: 400px)  { .trending-grid { grid-template-columns: repeat(2,1fr); } }

/* ── DESTINATION SECTIONS ── */
.dest-section-international { background: var(--white); }
.dest-section-domestic { background: var(--cream); }

.dest-section-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 12px;
}
.dest-section-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--ink);
}
.dest-section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 99px;
}
.dest-section-tag.intl { background: var(--teal-faint); color: var(--teal-dark); }
.dest-section-tag.india { background: rgba(255,153,0,0.1); color: #b45309; }
.dest-view-all {
  font-size: 0.83rem; font-weight: 600; color: var(--teal);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.dest-view-all:hover { gap: 10px; }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.pkg-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--rule);
  transition: var(--transition); display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.pkg-img {
  position: relative; height: 200px; overflow: hidden;
}
.pkg-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-duration {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: white; backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px;
}
.pkg-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
}
.pkg-body { padding: 18px 18px 16px; flex: 1; display: flex; flex-direction: column; }
.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 8px;
}
.pkg-highlights {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px;
}
.pkg-tag {
  font-size: 10px; color: var(--muted); background: var(--cream);
  padding: 3px 9px; border-radius: 99px;
}
.pkg-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule);
  flex-wrap: wrap; gap: 10px;
}
.pkg-price-label { font-size: 10px; color: var(--muted); }
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--ink); line-height: 1;
}
.pkg-price span { font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.pkg-footer .btn { padding: 9px 18px; font-size: 13px; }

/* Trending teal background */
.trending-section-bg { background: var(--teal-faint) !important; }

/* Trending enquire button */
.trending-enquire {
  display: block; text-align: center;
  margin: 8px 12px 12px;
  padding: 8px; border-radius: 99px;
  background: var(--teal); color: white;
  font-size: 12px; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.trending-enquire:hover { background: var(--teal-dark); }

/* Explore Destinations divider */
.explore-dest-header {
  background: var(--ink); padding: 25px 0;
  text-align: center;
}
.explore-dest-header .section-label {
  justify-content: center; color: rgba(255,255,255,0.5);
}
.explore-dest-header .section-label::before { background: rgba(255,255,255,0.3); }
.explore-dest-header h2 {
  color: white; margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.explore-dest-header p {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  margin-top: 8px; font-weight: 300;
}

@media (max-width: 768px) { .pkg-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .pkg-grid { grid-template-columns: repeat(2,1fr); } }
/* ── TRENDING SECTION V2 ── */
.trending-section {
  background: #edf5f4;
  padding: 52px 0;
}
.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.trending-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trending-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.trending-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.trending-scroll::-webkit-scrollbar { display: none; }
.trending-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #3a8a7e;
  background: #fff;
  color: #3a8a7e;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.trending-arrow:hover { background: #3a8a7e; color: #fff; }
.trending-arrow-left  { margin-right: 10px; }
.trending-arrow-right { margin-left: 10px; }
.trending-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(58,138,126,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trending-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(58,138,126,0.16);
}
.trending-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.trending-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.trending-card:hover .trending-img img { transform: scale(1.05); }
.trending-info {
  padding: 12px 14px 8px;
}
.trending-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.trending-from {
  font-size: 0.78rem;
  color: #7a7a7a;
  margin-top: 2px;
}
.trending-enquire-btn {
  display: block;
  margin: 0 14px 14px;
  padding: 7px 0;
  text-align: center;
  background: #3a8a7e;
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}
.trending-enquire-btn:hover { background: #2e6e64; }
.trending-card[style*="display:none"] { display: none !important; }