﻿/* ============================================================
   YATA INDIA - Main Stylesheet
   Color Palette (from logo):
     Royal Blue  #1B3A8C  — primary dark (YATA text)
     Sky Blue    #2E7BC4  — primary mid  (INDIA text, circle)
     Ice Blue    #87CEEB  — accent light (mountain highlights)
     Deep Navy   #0D1F4E  — dark backgrounds
     Light BG    #F0F6FF  — page backgrounds
   ============================================================ */

/* CSS Variables */
:root {
  --primary:        #1B3A8C;   /* Royal Blue — main brand */
  --primary-mid:    #2E7BC4;   /* Sky Blue — buttons, accents */
  --primary-light:  #87CEEB;   /* Ice Blue — highlights */
  --primary-dark:   #0D1F4E;   /* Deep Navy — footer, dark sections */
  --accent:         #2E7BC4;   /* alias for mid blue */
  --light-bg:       #F0F6FF;   /* very light blue tint */
  --white:          #FFFFFF;
  --text-dark:      #1A1A2E;
  --text-muted:     #5A6A85;
  --text-light:     #9AAABF;
  --border-color:   #D6E4F7;
  --shadow-sm:  0 2px 8px rgba(27,58,140,0.08);
  --shadow-md:  0 4px 20px rgba(27,58,140,0.13);
  --shadow-lg:  0 8px 40px rgba(27,58,140,0.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: all 0.3s ease;
  --font-main:  'Poppins', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); outline: none; }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Section Headings */
.section-title { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .title-accent { color: var(--primary-mid); }
.section-header::after { content: ''; display: block; width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-mid)); border-radius: 2px; margin: 16px auto 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); color: var(--white); box-shadow: 0 4px 15px rgba(27,58,140,0.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,140,0.40); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-orange { background: var(--primary-mid); color: var(--white); box-shadow: 0 4px 15px rgba(46,123,196,0.35); }
.btn-orange:hover { background: var(--primary); transform: translateY(-2px); }
.btn-navy { background: var(--primary-dark); color: var(--white); }
.btn-navy:hover { background: var(--primary); transform: translateY(-2px); }
.btn-green { background: #219150; color: var(--white); }
.btn-green:hover { background: #219150; transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ============================================================
   NAVBAR  — white bar, logo left, links center, phone+CTA right
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.14); }

.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 12px;
}

/* Logo — constrained so it doesn't push nav off screen */
.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar-brand img {
  height: 64px;
  width: auto;
  max-width: 164px;
  display: block;
  object-fit: contain;
}

/* Collapse wrapper */
.navbar-collapse {
  display: flex; align-items: center; flex: 1;
  justify-content: space-between; gap: 6px;
  min-width: 0;
}

/* Nav list */
.navbar-nav {
  display: flex; align-items: center; gap: 0;
  list-style: none; margin: 0; padding: 0;
  flex-wrap: nowrap;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 3px;
  padding: 6px 10px; border-radius: 5px;
  font-size: 0.82rem; font-weight: 500; color: #333;
  white-space: nowrap; transition: color 0.2s ease;
  text-decoration: none;
}
.nav-link i.fa-chevron-down { font-size: 0.6rem; transition: transform 0.25s ease; }
.nav-item.has-dropdown:hover .nav-link i.fa-chevron-down { transform: rotate(180deg); }
.nav-link:hover { color: var(--primary-mid); }

/* NEW badge above Trip Finder */
.nav-item-badge { position: relative; }
.nav-item-badge .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  gap: 0;
  line-height: 1.2;
}
.nav-new-badge {
  display: inline-block;
  background: #FF6B6B;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 50px;
  line-height: 1.4;
  margin-bottom: 1px;
  text-transform: uppercase;
}

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(27,58,140,0.14);
  min-width: 230px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.25s ease;
  border-top: 3px solid var(--primary);
  z-index: 200;
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 0.87rem; color: #444;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  text-decoration: none;
}
.dropdown-item i { color: var(--primary-mid); width: 16px; font-size: 0.85rem; }
.dropdown-item:hover { background: var(--light-bg); color: var(--primary); padding-left: 26px; }

/* Right side: phone + CTA */
.navbar-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.navbar-phone {
  display: flex; align-items: center; gap: 6px;
  background: var(--primary-mid);
  color: #fff; padding: 8px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 10px rgba(46,123,196,0.35);
}
.navbar-phone i { font-size: 0.82rem; }
.navbar-phone:hover { background: var(--primary); transform: translateY(-1px); color: #fff; }

.navbar-cta-btn {
  display: inline-flex; align-items: center;
  background: var(--primary);
  color: #fff; padding: 8px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 10px rgba(27,58,140,0.35);
}
.navbar-cta-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }

/* Hamburger */
.navbar-toggler {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.navbar-toggler span {
  display: block; width: 24px; height: 2px;
  background: #333; border-radius: 2px; transition: all 0.3s ease;
}
.navbar-toggler.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler.active span:nth-child(2) { opacity: 0; }
.navbar-toggler.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin-top: 80px;
  overflow: hidden;
}

/* Slides container */
.hero-slides {
  position: relative;
  width: 100%;
  min-height: 500px;
}

/* Individual slide */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
  min-height: 500px;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  position: relative; /* active slide gives height to container */
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.38) 55%,
    rgba(0,0,0,0.12) 100%
  );
  z-index: 1;
}
.hero-container {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  width: 100%;
}
.hero-content { max-width: 640px; }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-sub1 {
  font-size: 1.15rem; color: rgba(255,255,255,0.92);
  margin-bottom: 10px; font-weight: 400;
}
.hero-sub2 {
  font-size: 0.95rem; color: rgba(255,255,255,0.80);
  margin-bottom: 32px; font-weight: 400;
}
.hero-btn {
  display: inline-block;
  background: var(--primary-mid);
  color: #fff; padding: 14px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  text-decoration: none; text-transform: lowercase;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(46,123,196,0.45);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hero-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,58,140,0.45);
  color: #fff;
}

/* Prev / Next arrows — hidden */
.hero-arrow { display: none; }
.hero-prev  { display: none; }
.hero-next  { display: none; }

/* Scroll indicator — hidden */
.scroll-indicator { display: none; }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
  border-color: #fff;
}

/* ============================================================
   STATS BAR — Animated counter cards
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='30' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='15' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: var(--radius-md);
}
.stat-card::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-card:last-child::after { display: none; }
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.stat-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.stat-card:hover .stat-icon-wrap {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.1) rotate(5deg);
}
.stat-icon-wrap i {
  font-size: 1.8rem;
  color: #fff;
}
.stat-count-wrap {
  margin-bottom: 8px;
}
.stat-counter {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  font-family: var(--font-main);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}


/* ============================================================
   PACKAGE HIGHLIGHTS SLIDER
   ============================================================ */
.pkg-highlights {
  background: #fff;
  overflow: hidden;
}

/* Wide container — less side padding than normal .container */
.phs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header row: heading left, arrows right */
.phs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.phs-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin: 0;
  flex: 1;
}
.phs-heading .title-accent { color: var(--primary-mid); }

/* Arrow pair — top right of heading */
.phs-header-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.phs-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 3px 12px rgba(27,58,140,0.25);
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.phs-arrow i { pointer-events: none; line-height: 1; }
.phs-arrow:hover { background: var(--primary-mid); transform: scale(1.1); }
.phs-arrow:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }

/* Slider outer — no side arrows, full width */
.phs-slider-outer {
  width: 100%;
}

/* Scrollable track container */
.phs-track-wrap {
  width: 100%;
  overflow: hidden;
  padding-bottom: 16px;
}
.phs-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: flex-start;
}

/* Individual card — image top, white content card overlaps bottom of image */
.phs-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
}
.phs-card:hover {
  transform: translateY(-8px);
}

/* Full image — tall, rounded top */
.phs-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.phs-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.phs-card:hover .phs-img img { transform: scale(1.07); }

/* White content card — floats up over the image bottom */
.phs-body {
  position: relative;
  z-index: 2;
  margin-top: -48px;           /* pulls card up over image */
  margin-left: 12px;
  margin-right: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 22px 0;
  box-shadow: 0 8px 32px rgba(27,58,140,0.13);
}

/* Red/orange left accent bar on title — matching reference */
.phs-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.3;
  border-left: 4px solid #E8472A;
  padding-left: 12px;
}
/* hide the old span bar since we use border-left now */
.phs-bar { display: none; }

/* Includes label */
.phs-includes {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0;
}

/* Checklist */
.phs-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.phs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.4;
}
.phs-list li i {
  color: #2ECC71;
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Price footer — light blue-grey bg, rounded bottom */
.phs-price {
  margin-top: 18px;
  padding: 14px 22px 18px;
  margin-left: -22px;
  margin-right: -22px;
  background: #E8EDF8;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.phs-price-label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 4px;
}
.phs-price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Dots */
.phs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.phs-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
  padding: 0;
}
.phs-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .phs-card { flex: 0 0 calc(50% - 12px); }
  .phs-img  { height: 280px; }
}
@media (max-width: 580px) {
  .phs-card { flex: 0 0 100%; }
  .phs-img  { height: 240px; }
  .phs-arrow { width: 36px; height: 36px; font-size: 0.8rem; }
}

/* ============================================================
   EXCLUSIVE PACKAGES SECTION
   ============================================================ */
.exclusive-section {
  background: #fff;
}
.exclusive-section .section-title {
  font-size: 1.55rem;
  line-height: 1.4;
}

/* 3-column grid */
.excl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.excl-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,58,140,0.09);
  border: 1px solid var(--border-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.excl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(27,58,140,0.16);
}

/* Image wrapper — fixed height, clips the img */
.excl-img {
  position: relative;
  width: 100%;
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
/* Override global img reset */
.excl-img img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.excl-card:hover .excl-img img { transform: scale(1.07); }

/* Badge — sits inside .excl-img which is position:relative */
.excl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
}
.badge-popular     { background: #E8472A; color: #fff; }
.badge-bestselling { background: var(--primary); color: #fff; }
.badge-new         { background: #27AE60; color: #fff; }

/* Body */
.excl-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.excl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Stars */
.excl-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.excl-stars  { color: #FFB800; font-size: 0.85rem; }
.excl-reviews{ font-size: 0.78rem; color: var(--text-muted); }

/* Duration + Price row */
.excl-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}
.excl-dur-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.excl-dur-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.excl-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

/* Book Now button */
.excl-book-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  font-family: var(--font-main);
  margin-top: auto;
  box-shadow: 0 3px 12px rgba(27,58,140,0.30);
}
.excl-book-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,58,140,0.40);
}

/* Responsive */
@media (max-width: 900px) {
  .excl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .excl-grid { grid-template-columns: 1fr; }
  .excl-img  { height: 180px; min-height: 180px; max-height: 180px; }
}

/* ============================================================
   DESTINATION TABS & PACKAGE CARDS
   ============================================================ */
.destinations-section { background: var(--light-bg); }
.tabs-wrapper { margin-bottom: 40px; }
.tab-buttons {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  background: var(--white); padding: 8px; border-radius: 50px;
  box-shadow: var(--shadow-sm); display: inline-flex;
}
.tab-btn {
  padding: 10px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); background: transparent; border: none;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.tab-btn i { font-size: 0.9rem; }
.tab-btn:hover { color: var(--primary); background: rgba(27,58,140,0.06); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white); box-shadow: 0 4px 12px rgba(27,58,140,0.35);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

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

/* Package Card */
.package-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; overflow: hidden; height: 220px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .card-image img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-popular { background: var(--primary); color: var(--white); }
.badge-bestselling { background: var(--primary-dark); color: var(--white); }
.badge-new { background: #219150; color: var(--white); }
.card-wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; cursor: pointer; transition: var(--transition);
  border: none;
}
.card-wishlist:hover { background: var(--primary); color: var(--white); }
.card-body { padding: 20px 20px 0 20px; }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; line-height: 1.3; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.card-rating { display: flex; align-items: center; gap: 4px; }
.card-rating .stars { color: #FFB800; font-size: 0.85rem; }
.card-rating span { font-size: 0.82rem; color: var(--text-muted); }
.card-duration { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.card-duration i { color: var(--primary-mid); }

/* Footer: price left, button right — vertically centered */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px 20px 20px;
  border-top: 1px solid var(--border-color);
  margin-top: 14px;
}
.card-price {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.price-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  display: inline;
  white-space: nowrap;
}
.price-per {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  display: inline;
  margin-left: 3px;
}
.card-book-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(27,58,140,0.25);
  white-space: nowrap;
}
.card-book-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(27,58,140,0.38); }

/* ============================================================
   TRACKING SECTION
   ============================================================ */
.tracking-section { background: var(--white); }
.tracking-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.tracking-info h2 { font-size: 2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.tracking-info p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.tracking-steps { display: flex; flex-direction: column; gap: 16px; }
.tracking-step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.step-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 2px; }
.step-text p { font-size: 0.85rem; color: var(--text-muted); }

.tracking-form-card {
  background: var(--light-bg); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.tracking-form-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border-color);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text-dark);
  background: var(--white); transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,58,140,0.1); }
.form-control::placeholder { color: var(--text-light); }
.track-btn {
  width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white); border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.track-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,140,0.4); }

/* Tracking Result */
.tracking-result {
  display: none; margin-top: 20px; background: var(--white);
  border-radius: var(--radius-md); padding: 24px;
  border: 2px solid #219150; animation: fadeInUp 0.4s ease;
}
.tracking-result.show { display: block; }
.result-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.result-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
}
.status-confirmed { background: rgba(46,204,113,0.15); color: #219150; }
.result-booking-id { font-size: 0.85rem; color: var(--text-muted); }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-item { }
.result-item label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.result-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light-bg); }
.testimonial-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.testimonial-tab-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); background: var(--white); border: 2px solid var(--border-color);
  cursor: pointer; transition: var(--transition);
}
.testimonial-tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.testimonial-tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.testimonial-content { display: none; }
.testimonial-content.active { display: block; animation: fadeInUp 0.4s ease; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 20px; right: 24px;
  font-size: 5rem; color: rgba(27,58,140,0.1); font-family: Georgia, serif; line-height: 1;
}
.testimonial-stars { color: #FFB800; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.author-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 2px; }
.author-info p { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-tour {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(27,58,140,0.08); color: var(--primary);
  padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  margin-top: 8px;
}

/* ============================================================
   CUSTOMIZE TRIP BANNER
   ============================================================ */
.customize-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.customize-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.customize-banner::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.customize-content { position: relative; z-index: 2; text-align: center; }
.customize-content h2 { font-size: 2.4rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.customize-content p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.customize-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-white-solid { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white-solid:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-section { background: var(--white); }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.about-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.about-image-badge .badge-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--primary), var(--primary-mid)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; }
.about-image-badge .badge-text strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--primary-dark); }
.about-image-badge .badge-text span { font-size: 0.78rem; color: var(--text-muted); }
.about-content h2 { font-size: 2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.about-feature { display: flex; align-items: flex-start; gap: 10px; }
.about-feature i { color: #219150; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.about-feature span { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #0a1628 0%, #0f2044 40%, #0d1f4e 70%, #091530 100%);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
/* Subtle pattern overlay */
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(46,123,196,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(27,58,140,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.footer-top { padding: 70px 0 40px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }

/* Logo — show naturally, no invert filter */
.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(135,206,235,0.3));
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 6px 12px;
  display: block;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition);
}
.social-link:hover { background: var(--primary-mid); color: var(--white); transform: translateY(-3px); border-color: var(--primary-mid); }

.footer-col h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--primary-mid); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.60); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 0.7rem; color: var(--primary-mid); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--primary-mid); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.floating-actions {
  position: fixed; bottom: 30px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 700;
  color: var(--white); border: none; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.float-btn:hover { transform: translateX(-4px) scale(1.03); box-shadow: var(--shadow-lg); }
.float-btn i { font-size: 1.1rem; }
.float-call { background: var(--primary); }
.float-enquire { background: var(--primary-dark); }
.float-whatsapp { background: #25D366; }
.float-label { font-size: 0.82rem; }

/* ============================================================
   PACKAGES PAGE - FILTER SIDEBAR
   ============================================================ */
.packages-page { background: var(--light-bg); padding: 100px 0 80px; }
.packages-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.filter-sidebar h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.filter-sidebar h3 i { color: var(--primary); }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.filter-option label { font-size: 0.88rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.filter-option:hover label { color: var(--primary); }
.filter-apply-btn { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); color: var(--white); border: none; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.filter-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(27,58,140,0.4); }
.packages-main-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.packages-count { font-size: 0.9rem; color: var(--text-muted); }
.packages-count strong { color: var(--primary-dark); }
.packages-sort select { padding: 8px 14px; border: 2px solid var(--border-color); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-dark); background: var(--white); cursor: pointer; }
.packages-grid-main { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ============================================================
   TRACKING PAGE
   ============================================================ */
.tracking-page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.tracking-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tracking-page-hero h1 { font-size: 3rem; font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; }
.tracking-page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); position: relative; }
.tracking-main { padding: 80px 0; background: var(--light-bg); }
.tracking-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.tracking-form-large { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.tracking-form-large h2 { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.tracking-form-large p { color: var(--text-muted); margin-bottom: 32px; }
.how-it-works { }
.how-it-works h2 { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 32px; }
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step { display: flex; gap: 20px; position: relative; padding-bottom: 32px; }
.hiw-step:last-child { padding-bottom: 0; }
.hiw-step:not(:last-child)::before { content: ''; position: absolute; left: 24px; top: 52px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), transparent); }
.hiw-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(27,58,140,0.3); }
.hiw-text h4 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.hiw-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.tracking-faq { padding: 80px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item { background: var(--light-bg); border-radius: var(--radius-md); padding: 24px; border-left: 4px solid var(--primary); }
.faq-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--light-bg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Image */
.blog-img-wrap {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-img-wrap img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.07); }

/* Category badge */
.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Body */
.blog-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-meta i {
  color: var(--primary-mid);
  font-size: 0.72rem;
}

/* Title */
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
}
.blog-title a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-title a:hover { color: var(--primary-mid); }

/* Excerpt */
.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

/* Read More */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-mid);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}
.blog-read-more:hover {
  color: var(--primary);
  gap: 10px;
}
.blog-read-more i { font-size: 0.75rem; }

/* Responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-wrapper { gap: 40px; }
  .tracking-wrapper { gap: 40px; }
  .packages-layout { grid-template-columns: 240px 1fr; }
  .navbar-cta-btn { display: none; }
}

@media (max-width: 900px) {
  .navbar-toggler { display: flex; }
  .navbar-collapse {
    display: none;
    position: absolute; top: 80px; left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 0;
  }
  .navbar-collapse.open { display: flex; }
  .navbar-nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { padding: 12px 8px; border-bottom: 1px solid #f0f0f0; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: none;
    border-left: 3px solid var(--primary);
    margin-left: 16px; padding: 4px 0; display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .navbar-right {
    flex-direction: column; align-items: stretch; gap: 8px;
    padding-top: 12px;
  }
  .navbar-phone, .navbar-cta-btn {
    display: flex; justify-content: center; border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.9rem; }
  .hero-sub1 { font-size: 1rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid #eee; }
  .stat-item:last-child { border-bottom: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .tracking-wrapper { grid-template-columns: 1fr; }
  .about-wrapper { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .packages-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .packages-grid-main { grid-template-columns: 1fr; }
  .tracking-main-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .customize-content h2 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .float-label { display: none; }
  .float-btn { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .floating-actions { bottom: 20px; right: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .tab-buttons { flex-wrap: wrap; border-radius: var(--radius-md); }
  .tab-btn { padding: 8px 16px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 16px; }
  .section-padding { padding: 60px 0; }
  .hero-section { min-height: 380px; }
  .hero-container { padding: 50px 16px; }
  .stat-item { padding: 24px 20px; }
  .customize-actions { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ============================================================
   ANIMATIONS & MISC
   ============================================================ */

/* Fade in up */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* Slide in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Slide in from right */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Scale in */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
/* Float */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
/* Pulse ring */
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(46,123,196,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(46,123,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,123,196,0); }
}
/* Shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
/* Hero text entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Counter roll */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Apply hero animations */
.hero-content .hero-title  { animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-content .hero-sub1   { animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-content .hero-sub2   { animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
.hero-content .hero-btn    { animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.7s both; }

/* Stat counter animation */
.stat-counter { animation: countUp 0.6s ease both; }

/* Package card hover shimmer on image */
.card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.package-card:hover .card-image::after {
  opacity: 1;
  animation: shimmer 0.8s ease forwards;
}

/* Tab button active pulse */
.tab-btn.active {
  animation: pulseRing 2s ease infinite;
}

/* Floating CTA button */
.float-btn {
  animation: floatY 3s ease-in-out infinite;
}
.float-btn:nth-child(2) { animation-delay: 0.5s; }
.float-btn:nth-child(3) { animation-delay: 1s; }

/* Section title underline grow */
.section-header::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.section-header.visible::after { transform: scaleX(1); }

/* Navbar brand logo subtle bounce on load */
@keyframes logoBounce {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}
.navbar-brand img { animation: logoBounce 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both; max-width: 164px; height: 64px; }

/* Card book button ripple */
.card-book-btn { position: relative; overflow: hidden; }
.card-book-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card-book-btn:hover::after { transform: scaleX(1); }

/* Hero section slides use background-image per slide */

/* Smooth scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.7); font-size: 0.75rem; z-index: 3;
  animation: floatY 2s ease-in-out infinite;
}
.scroll-indicator i { font-size: 1.2rem; }
.page-hero-section { padding: 120px 0 60px; background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark)); text-align: center; }
.page-hero-section h1 { font-size: 2.8rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero-section p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.breadcrumb .current { color: var(--primary-mid); font-size: 0.88rem; }
.no-packages { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.no-packages i { font-size: 3rem; color: var(--border-color); margin-bottom: 16px; display: block; }


/* ============================================================
   PACKAGE DETAIL PAGE
   ============================================================ */

/* ── Hero ── */
.pkg-detail-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.pkg-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.72) 100%);
}
.pkg-detail-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.pkg-detail-breadcrumb {
  font-size: .82rem;
  margin-bottom: 12px;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pkg-detail-breadcrumb a { color: #fff; text-decoration: none; }
.pkg-detail-breadcrumb a:hover { text-decoration: underline; }
.pkg-detail-breadcrumb .current { opacity: .7; }
.pkg-detail-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.pkg-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .88rem;
}
.pkg-detail-meta .pkg-detail-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pkg-detail-rating { display: flex; align-items: center; gap: 5px; }
.pkg-detail-rating i { color: #FFB800; font-size: .85rem; }
.pkg-detail-duration i,
.pkg-detail-bookings i { margin-right: 4px; color: rgba(255,255,255,.8); }

/* ── Sticky Bar ── */
.pkg-sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
  transform: translateY(-100%);
  transition: transform .3s ease;
  padding: 10px 0;
}
.pkg-sticky-bar.visible { transform: translateY(0); }
.pkg-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pkg-sticky-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark, #1a1a2e);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg-sticky-price { display: flex; align-items: baseline; gap: 4px; }
.pkg-sticky-from { font-size: .78rem; color: #666; }
.pkg-sticky-amount { font-size: 1.3rem; font-weight: 800; color: var(--primary-mid); }
.pkg-sticky-per { font-size: .78rem; color: #666; }
.pkg-sticky-btn {
  background: var(--primary-mid);
  color: #fff;
  padding: 9px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.pkg-sticky-btn:hover { background: var(--primary-dark); color: #fff; }

/* ── Layout ── */
.pkg-detail-section { padding: 48px 0 64px; background: #f8f9fa; }
.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-detail-sidebar { order: -1; }
}

/* ── Tabs ── */
.pkg-tabs {
  display: flex;
  gap: 4px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pkg-tab-btn {
  flex: 1;
  min-width: 80px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: .88rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.pkg-tab-btn:hover { background: #f0f0f0; color: #222; }
.pkg-tab-btn.active {
  background: var(--primary-mid);
  color: #fff;
  box-shadow: 0 2px 8px rgba(46,123,196,.3);
}
.pkg-tab-content { display: none; }
.pkg-tab-content.active { display: block; }

/* ── Section Blocks ── */
.pkg-section-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pkg-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark, #1a1a2e);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.pkg-section-title i { color: var(--primary-mid); }
.pkg-overview-text,
.pkg-essential-text {
  font-size: .95rem;
  line-height: 1.8;
  color: #444;
  white-space: pre-line;
}
.pkg-empty-msg { color: #888; font-style: italic; font-size: .9rem; }

/* ── Quick Info Cards ── */
.pkg-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.pkg-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #eee;
}
.pkg-info-card i {
  font-size: 1.3rem;
  color: var(--primary-mid);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.pkg-info-card div { display: flex; flex-direction: column; gap: 2px; }
.pkg-info-label { font-size: .72rem; color: #888; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.pkg-info-val { font-size: .9rem; font-weight: 700; color: #222; }

/* ── Highlights & Includes Lists ── */
.pkg-highlights-list,
.pkg-includes-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.pkg-highlights-list li,
.pkg-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: #333;
  line-height: 1.5;
}
.pkg-highlights-list li i,
.pkg-includes-list li i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }

/* ── Itinerary ── */
.pkg-itinerary { display: flex; flex-direction: column; gap: 0; }
.pkg-itinerary-day {
  position: relative;
  padding-left: 52px;
  padding-bottom: 28px;
}
.pkg-itinerary-day::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.pkg-itinerary-day:last-child::before { display: none; }
.pkg-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pkg-day-num {
  position: absolute;
  left: 0;
  width: 38px;
  height: 38px;
  background: var(--primary-mid);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(46,123,196,.3);
}
.pkg-day-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.pkg-day-body { font-size: .9rem; color: #555; line-height: 1.7; }
.pkg-day-body p { margin: 0 0 10px; }
.pkg-day-activities {
  list-style: none;
  padding: 0; margin: 8px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pkg-day-activities li {
  background: #f0f4ff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .8rem;
  color: #3b5bdb;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-day-activities li i { font-size: .65rem; }
.pkg-day-meals,
.pkg-day-stay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #666;
  margin-top: 6px;
  margin-right: 16px;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 6px;
}
.pkg-day-meals i { color: #f59e0b; }
.pkg-day-stay i { color: #6366f1; }

/* ── Inclusions / Exclusions ── */
.pkg-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .pkg-inc-exc-grid { grid-template-columns: 1fr; } }
.pkg-included,
.pkg-excluded,
.pkg-additional-inc {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px;
}
.pkg-included { border-left: 4px solid #22c55e; }
.pkg-excluded { border-left: 4px solid #ef4444; }
.pkg-additional-inc { border-left: 4px solid #f59e0b; }
.pkg-included h3,
.pkg-excluded h3,
.pkg-additional-inc h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pkg-included ul,
.pkg-excluded ul,
.pkg-additional-inc ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pkg-included li,
.pkg-excluded li,
.pkg-additional-inc li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: #444;
  line-height: 1.5;
}
.pkg-included li i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.pkg-excluded li i { color: #ef4444; margin-top: 2px; flex-shrink: 0; }
.pkg-additional-inc li i { color: #f59e0b; margin-top: 2px; flex-shrink: 0; }

/* ── FAQs ── */
.pkg-faq-list { display: flex; flex-direction: column; gap: 10px; }
.pkg-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.pkg-faq-item.open { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.pkg-faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.pkg-faq-q:hover { background: #f8f9fa; }
.pkg-faq-item.open .pkg-faq-q { background: #fff5f5; color: var(--primary-mid); }
.pkg-faq-q i {
  flex-shrink: 0;
  transition: transform .3s;
  color: #888;
  font-size: .85rem;
}
.pkg-faq-item.open .pkg-faq-q i { transform: rotate(180deg); color: var(--primary-mid); }
.pkg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pkg-faq-a p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

/* ── Reviews ── */
.pkg-reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
}
.pkg-reviews-score { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pkg-score-big { font-size: 3rem; font-weight: 900; color: #1a1a2e; line-height: 1; }
.pkg-score-stars i { color: #FFB800; font-size: 1rem; }
.pkg-score-count { font-size: .82rem; color: #888; }
.pkg-reviews-list { display: flex; flex-direction: column; gap: 16px; }
.pkg-review-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 4px solid var(--primary-mid);
}
.pkg-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pkg-reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pkg-reviewer-info { flex: 1; }
.pkg-reviewer-info strong { display: block; font-size: .95rem; color: #1a1a2e; }
.pkg-reviewer-info span { font-size: .8rem; color: #888; }
.pkg-review-stars i { color: #FFB800; font-size: .85rem; }
.pkg-review-text { font-size: .9rem; color: #444; line-height: 1.7; margin: 0 0 8px; }
.pkg-review-date { font-size: .78rem; color: #aaa; }

/* ── Sidebar ── */
.pkg-detail-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }

/* Price Card */
.pkg-price-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  overflow: hidden;
}
.pkg-price-header {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
  padding: 24px;
  text-align: center;
  color: #fff;
}
.pkg-price-from { font-size: .82rem; opacity: .85; display: block; margin-bottom: 4px; }
.pkg-price-main { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.pkg-price-inr { font-size: 2rem; font-weight: 900; }
.pkg-price-usd { font-size: .95rem; opacity: .8; }
.pkg-price-per { font-size: .82rem; opacity: .8; display: block; margin-top: 4px; }
.pkg-price-meta {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.pkg-price-meta div { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: #555; }
.pkg-price-meta i { color: var(--primary-mid); width: 16px; }
.pkg-book-now-btn {
  display: block;
  margin: 16px 20px 8px;
  background: var(--primary-mid);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.pkg-book-now-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.pkg-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 20px 20px;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s;
}
.pkg-whatsapp-btn:hover { background: #1ebe5d; color: #fff; }
.pkg-whatsapp-btn i { font-size: 1.1rem; }

/* Enquiry Card */
.pkg-enquiry-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 24px;
}
.pkg-enquiry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-enquiry-card h3 i { color: var(--primary-mid); }
.pkg-enquiry-form { display: flex; flex-direction: column; gap: 10px; }
.pkg-enquiry-form .form-group { margin: 0; }
.pkg-enquiry-form .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: .88rem;
  color: #333;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  font-family: inherit;
}
.pkg-enquiry-form .form-control:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(46,123,196,.1);
  background: #fff;
}
.pkg-enquiry-form textarea.form-control { resize: vertical; min-height: 80px; }
.pkg-enquiry-submit {
  background: var(--primary-mid);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
  font-family: inherit;
}
.pkg-enquiry-submit:hover { background: var(--primary-dark); }

/* Help Card */
.pkg-help-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 22px;
  text-align: center;
}
.pkg-help-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.pkg-help-card h4 i { color: var(--primary-mid); }
.pkg-help-card p { font-size: .85rem; color: #666; margin: 0 0 14px; line-height: 1.6; }
.pkg-help-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f0f4ff;
  color: #3b5bdb;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: background .2s;
}
.pkg-help-call:hover { background: #dde4ff; color: #3b5bdb; }
.pkg-help-call i { font-size: .9rem; }

/* ── Similar Packages ── */
.pkg-similar-section { background: #fff; }

/* ── No packages message ── */
.no-packages {
  text-align: center;
  color: #888;
  font-size: .95rem;
  padding: 40px 20px;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pkg-detail-hero { min-height: 300px; padding-bottom: 28px; }
  .pkg-detail-title { font-size: 1.5rem; }
  .pkg-tabs { gap: 2px; padding: 4px; }
  .pkg-tab-btn { padding: 8px 10px; font-size: .8rem; }
  .pkg-section-block { padding: 18px; }
  .pkg-quick-info { grid-template-columns: 1fr 1fr; }
  .pkg-highlights-list,
  .pkg-includes-list { grid-template-columns: 1fr; }
  .pkg-sticky-title { display: none; }
}


/* ============================================================
   PACKAGE DETAIL — GALLERY HERO (full-width slider on top)
   ============================================================ */

/* ── Outer section — no padding, flush to navbar ── */
.pkg-gallery-hero {
  position: relative;
  background: #111;
  width: 100%;
}

/* ── Slider wrapper ── */
.pkg-gallery-slider {
  width: 100%;
  background: #111;
}

/* ── Main image area — full viewport width, fixed height ── */
.pkg-gallery-main {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #111;
}
@media (max-width: 900px)  { .pkg-gallery-main { height: 360px; } }
@media (max-width: 600px)  { .pkg-gallery-main { height: 260px; } }

/* ── Individual slides ── */
.pkg-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
}
.pkg-gallery-slide.active { opacity: 1; z-index: 2; }
.pkg-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Gradient overlay (bottom-heavy so text is readable) ── */
.pkg-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.15)  40%,
    rgba(0,0,0,.65)  75%,
    rgba(0,0,0,.85) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* ── Title / breadcrumb / meta — pinned to bottom of image ── */
.pkg-gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 0 24px;
  color: #fff;
}
.pkg-gallery-info .container,
.pkg-gallery-info > * { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* breadcrumb */
.pkg-detail-breadcrumb {
  font-size: .8rem;
  margin-bottom: 10px;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #fff;
}
.pkg-detail-breadcrumb a { color: #fff; text-decoration: none; }
.pkg-detail-breadcrumb a:hover { text-decoration: underline; }
.pkg-detail-breadcrumb .current { opacity: .7; }

/* title */
.pkg-detail-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  color: #fff;
}

/* meta row */
.pkg-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: #fff;
}
.pkg-detail-meta .pkg-detail-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pkg-detail-rating { display: flex; align-items: center; gap: 4px; }
.pkg-detail-rating i { color: #FFB800; font-size: .82rem; }
.pkg-detail-duration i,
.pkg-detail-bookings i { margin-right: 4px; }

/* ── Prev / Next arrows ── */
.pkg-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.pkg-gallery-arrow:hover {
  background: rgba(0,0,0,.8);
  transform: translateY(-50%) scale(1.08);
}
.pkg-gallery-prev { left: 16px; }
.pkg-gallery-next { right: 16px; }

/* ── Image counter ── */
.pkg-gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── Thumbnail strip ── */
.pkg-gallery-thumbs {
  display: flex;
  align-items: center;
  background: #1c1c1c;
  padding: 8px 10px;
  gap: 6px;
}
.pkg-gallery-thumbs-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0;
}
.pkg-gallery-thumbs-track::-webkit-scrollbar { display: none; }

.pkg-gallery-thumb {
  flex-shrink: 0;
  width: 110px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .15s, opacity .2s;
  position: relative;
  opacity: .65;
}
.pkg-gallery-thumb:hover { opacity: 1; transform: scale(1.04); }
.pkg-gallery-thumb.active { border-color: var(--primary-mid); opacity: 1; }
.pkg-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pkg-thumb-main-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: rgba(0,0,0,.6);
  color: #FFB800;
  font-size: .6rem;
  padding: 2px 5px;
  border-radius: 4px;
}

/* Thumb scroll arrows */
.pkg-gallery-thumb-arrow {
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: .75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pkg-gallery-thumb-arrow:hover { background: rgba(255,255,255,.25); }

/* ── Single image fallback ── */
.pkg-gallery-single {
  position: relative;
  width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 900px) { .pkg-gallery-single { height: 360px; } }
@media (max-width: 600px) { .pkg-gallery-single { height: 260px; } }

/* ── Responsive tweaks ── */
@media (max-width: 600px) {
  .pkg-gallery-thumb { width: 80px; height: 54px; }
  .pkg-gallery-info { padding-bottom: 16px; }
  .pkg-detail-title { font-size: 1.3rem; }
  .pkg-detail-meta { gap: 8px; font-size: .78rem; }
  .pkg-gallery-arrow { width: 36px; height: 36px; font-size: .85rem; }
}


/* ============================================================
   CATEGORY BANNER SLIDER (packages list page)
   ============================================================ */

.cat-banner-hero { position: relative; background: #111; }

.cat-banner-slider { position: relative; width: 100%; overflow: hidden; }

/* Slides */
.cat-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 1;
}
.cat-banner-slide:first-child { position: relative; } /* keeps height */
.cat-banner-slide.active { opacity: 1; z-index: 2; }

.cat-banner-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) { .cat-banner-slide img { height: 320px; } }
@media (max-width: 600px) { .cat-banner-slide img { height: 240px; } }

/* Gradient overlay */
.cat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.45) 55%,
    rgba(0,0,0,.78) 100%
  );
  z-index: 3;
}

/* Text content */
.cat-banner-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding-bottom: 36px;
  color: #fff;
}
.cat-banner-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  opacity: .9;
}
.cat-banner-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  line-height: 1.2;
}
.cat-banner-subtitle {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  margin: 0 0 14px;
  opacity: .9;
  max-width: 600px;
}
.cat-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  opacity: .8;
  flex-wrap: wrap;
}
.cat-banner-breadcrumb a { color: #fff; text-decoration: none; }
.cat-banner-breadcrumb a:hover { text-decoration: underline; }

/* Arrows */
.cat-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.cat-banner-arrow:hover { background: rgba(0,0,0,.75); transform: translateY(-50%) scale(1.08); }
.cat-banner-prev { left: 16px; }
.cat-banner-next { right: 16px; }

/* Dots */
.cat-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.cat-banner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.cat-banner-dot.active { background: #fff; transform: scale(1.3); }
.cat-banner-dot:hover { background: rgba(255,255,255,.8); }

@media (max-width: 600px) {
  .cat-banner-arrow { width: 36px; height: 36px; font-size: .85rem; }
  .cat-banner-content { padding-bottom: 20px; }
}


/* ============================================================
   TREKKING TYPE CARDS (like the screenshot)
   ============================================================ */

.trek-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
@media (max-width: 600px) {
  .trek-type-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.trek-type-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  aspect-ratio: 4/3;
}
.trek-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.trek-type-img {
  position: absolute;
  inset: 0;
}
.trek-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.trek-type-card:hover .trek-type-img img {
  transform: scale(1.06);
}

.trek-type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,.72) 100%
  );
}

.trek-type-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.trek-type-label i {
  font-size: 1rem;
  opacity: .9;
  flex-shrink: 0;
}


/* ============================================================
   TREKKING PAGE — REDESIGNED
   ============================================================ */

/* ── Hero ── */
.trek-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.trek-hero-bg {
  position: absolute;
  inset: 0;
}
.trek-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trek-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,78,.85) 0%, rgba(46,123,196,.6) 100%);
}
.trek-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
}
.trek-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.trek-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  line-height: 1.15;
}
.trek-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.trek-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.trek-hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.trek-hero-breadcrumb a:hover { color: #fff; }
.trek-hero-breadcrumb i { font-size: .65rem; }
.trek-hero-breadcrumb span { color: #fff; }

/* ── Types Section ── */
.trek-types-section {
  padding: 72px 0;
  background: #f0f4f8;
}
.trek-types-header {
  text-align: center;
  margin-bottom: 52px;
}
.trek-types-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.trek-types-header p {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Trek Cards Grid ── */
.trek-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .trek-types-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Individual Trek Card ── */
.trek-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(0,0,0,.05);
}
.trek-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}

.trek-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.trek-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.trek-card:hover .trek-card-img img {
  transform: scale(1.06);
}
.trek-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.45) 100%);
}
.trek-card-diff {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.trek-card-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  flex: 1;
}
.trek-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,58,140,.3);
}
.trek-card-info { flex: 1; min-width: 0; }
.trek-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.trek-card-desc {
  font-size: .8rem;
  color: #777;
  margin: 0 0 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trek-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trek-card-meta span {
  font-size: .75rem;
  color: #2E7BC4;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.trek-card-meta i { font-size: .7rem; }
.trek-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7BC4;
  font-size: .85rem;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
.trek-card:hover .trek-card-arrow {
  background: #2E7BC4;
  color: #fff;
  transform: translateX(3px);
}

/* ── Why Section ── */
.trek-why-section {
  padding: 72px 0;
  background: #fff;
}
.trek-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.trek-why-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e8edf5;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.trek-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  border-color: #2E7BC4;
}
.trek-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.trek-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.trek-why-card p {
  font-size: .85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Stats Strip ── */
.trek-stats-strip {
  background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
  padding: 48px 0;
}
.trek-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 640px) {
  .trek-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.1); }
  .trek-stat { background: linear-gradient(135deg, #1B3A8C, #2E7BC4); }
}
.trek-stat {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trek-stat:last-child { border-right: none; }
.trek-stat i {
  font-size: 1.6rem;
  color: rgba(255,255,255,.7);
  display: block;
  margin-bottom: 10px;
}
.trek-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.trek-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ── CTA Section ── */
.trek-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.trek-cta-bg {
  position: absolute;
  inset: 0;
}
.trek-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trek-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,78,.88) 0%, rgba(27,58,140,.75) 100%);
}
.trek-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.trek-cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.trek-cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.trek-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.trek-cta-btn-primary {
  background: #fff;
  color: #1B3A8C;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.trek-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  color: #1B3A8C;
}
.trek-cta-btn-outline {
  background: transparent;
  color: #fff;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(255,255,255,.6);
  transition: background .2s, border-color .2s;
}
.trek-cta-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Remove old trek-type-grid styles (replaced) */
.trek-type-grid { display: none; }


/* ============================================================
   HOME PAGE — TREKKING ADVENTURES SECTION
   ============================================================ */

.home-trek-section {
  background: #fff;
}

/* Grid — 3 columns on desktop, 2 on tablet, 1 on mobile */
.home-trek-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px)  { .home-trek-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .home-trek-grid { grid-template-columns: 1fr; } }

/* Card */
.home-trek-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 16px rgba(0,0,0,.08);
  border: 1px solid #eef0f5;
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-trek-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}

/* Image */
.home-trek-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.home-trek-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.home-trek-card:hover .home-trek-img img {
  transform: scale(1.07);
}
.home-trek-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,.5) 100%);
}
.home-trek-diff {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* Body */
.home-trek-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  flex: 1;
}
.home-trek-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary-dark, #0D1F4E), var(--primary-mid, #2E7BC4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(27,58,140,.25);
}
.home-trek-info { flex: 1; min-width: 0; }
.home-trek-info h3 {
  font-size: .98rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-trek-info p {
  font-size: .78rem;
  color: #888;
  margin: 0 0 7px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-trek-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-trek-meta span {
  font-size: .72rem;
  color: var(--primary-mid, #2E7BC4);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.home-trek-meta i { font-size: .65rem; }

.home-trek-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-mid, #2E7BC4);
  font-size: .8rem;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
.home-trek-card:hover .home-trek-arrow {
  background: var(--primary-mid, #2E7BC4);
  color: #fff;
  transform: translateX(3px);
}

/* View All button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-mid, #2E7BC4);
  color: #fff;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(46,123,196,.3);
}
.view-all-btn:hover {
  background: var(--primary-dark, #0D1F4E);
  color: #fff;
  transform: translateY(-2px);
}


/* ============================================================
   ABOUT US PAGE — REDESIGNED
   ============================================================ */

/* ── Hero ── */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,78,.88) 0%, rgba(27,58,140,.7) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px;
}
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.about-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  line-height: 1.15;
}
.about-hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.about-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.about-hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.about-hero-breadcrumb a:hover { color: #fff; }
.about-hero-breadcrumb i { font-size: .65rem; }
.about-hero-breadcrumb span { color: #fff; }

/* ── Story Section ── */
.about-story-section {
  padding: 80px 0;
  background: #fff;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-images { order: -1; }
}

.about-story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.about-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.about-img-secondary {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.about-img-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(27,58,140,.4);
}
.about-img-badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.about-img-badge-text {
  font-size: .75rem;
  opacity: .9;
  line-height: 1.3;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2E7BC4;
  margin-bottom: 12px;
}
.about-story-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 0 20px;
  line-height: 1.3;
}
.about-story-text p {
  font-size: .95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-story-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.about-story-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: #333;
  font-weight: 500;
}
.about-story-point i {
  color: #10b981;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-story-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.about-btn-primary {
  background: #2E7BC4;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(46,123,196,.3);
}
.about-btn-primary:hover {
  background: #1B3A8C;
  color: #fff;
  transform: translateY(-2px);
}
.about-btn-outline {
  background: transparent;
  color: #2E7BC4;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #2E7BC4;
  transition: background .2s, color .2s;
}
.about-btn-outline:hover {
  background: #2E7BC4;
  color: #fff;
}

/* ── Stats Section ── */
.about-stats-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0D1F4E 0%, #1B3A8C 50%, #2E7BC4 100%);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .about-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .about-stats-grid { grid-template-columns: 1fr; } }

.about-stat-card {
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  transition: transform .2s, background .2s;
}
.about-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
}
.about-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.about-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  margin-bottom: 4px;
}
.about-stat-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}

/* ── Why Section ── */
.about-why-section {
  padding: 80px 0;
  background: #f8fafc;
}
.about-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.about-section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #1a1a2e;
  margin: 12px 0 14px;
}
.about-section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .about-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .about-why-grid { grid-template-columns: 1fr; } }

.about-why-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  border: 1px solid #e8edf5;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.about-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  border-color: #2E7BC4;
}
.about-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.about-why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 10px;
}
.about-why-card p {
  font-size: .85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Values Section ── */
.about-values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-values-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-values-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.3;
}
.about-values-text p {
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-btn-white {
  background: #fff;
  color: #1B3A8C;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.about-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  color: #1B3A8C;
}

.about-values-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) { .about-values-cards { grid-template-columns: 1fr; } }

.about-value-item {
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-value-item h4 {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.about-value-item p {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA Section ── */
.about-cta-section {
  padding: 60px 0;
  background: #fff;
}
.about-cta-inner {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0ecff 100%);
  border-radius: 24px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 1px solid #d0e0ff;
}
@media (max-width: 768px) {
  .about-cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
}
.about-cta-inner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.about-cta-inner p {
  font-size: .9rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.about-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-btn-outline {
  background: transparent;
  color: #1B3A8C;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #2E7BC4;
  transition: background .2s, color .2s;
}
.about-btn-outline:hover {
  background: #2E7BC4;
  color: #fff;
}


/* ============================================================
   CONTACT US PAGE — REDESIGNED
   ============================================================ */

/* ── Hero ── */
.contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-hero-bg { position: absolute; inset: 0; }
.contact-hero-bg img { width:100%; height:100%; object-fit:cover; display:block; }
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,31,78,.9) 0%, rgba(46,123,196,.7) 100%);
}
.contact-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 90px 20px;
}
.contact-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 7px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .5px;
  margin-bottom: 20px; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.contact-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900;
  color: #fff; margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3); line-height: 1.15;
}
.contact-hero-content p {
  font-size: clamp(.95rem, 2vw, 1.2rem); color: rgba(255,255,255,.85);
  max-width: 520px; margin: 0 auto 24px; line-height: 1.6;
}
.contact-hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.7);
}
.contact-hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.contact-hero-breadcrumb a:hover { color: #fff; }
.contact-hero-breadcrumb i { font-size: .65rem; }
.contact-hero-breadcrumb span { color: #fff; }

/* ── Flash Alerts ── */
.contact-alert {
  max-width: 1200px; margin: 20px auto; padding: 14px 24px;
  border-radius: 12px; display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 500;
}
.contact-alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.contact-alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Quick Cards ── */
.contact-cards-section {
  padding: 0;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .contact-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-cards-grid { grid-template-columns: 1fr; } }

.contact-quick-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  text-decoration: none;
  color: inherit;
  border: 1px solid #eef0f5;
  transition: transform .2s, box-shadow .2s;
}
.contact-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  color: inherit;
}
.contact-quick-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-quick-info { flex: 1; min-width: 0; }
.contact-quick-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #999; margin-bottom: 3px;
}
.contact-quick-value {
  font-size: .9rem; font-weight: 700; color: #1a1a2e;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.contact-quick-sub { font-size: .75rem; color: #888; margin-top: 2px; }
.contact-quick-arrow {
  color: #ccc; font-size: .85rem; flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.contact-quick-card:hover .contact-quick-arrow {
  color: #2E7BC4; transform: translateX(3px);
}

/* ── Main Section ── */
.contact-main-section {
  padding: 72px 0;
  background: #f8fafc;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-main-grid { grid-template-columns: 1fr; }
}

/* Info Column */
.contact-info-header { margin-bottom: 36px; }
.contact-info-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900; color: #1a1a2e;
  margin: 10px 0 14px; line-height: 1.3;
}
.contact-info-header p {
  font-size: .9rem; color: #666; line-height: 1.8; margin: 0;
}

.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 14px; padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border: 1px solid #eef0f5;
  transition: transform .2s, box-shadow .2s;
}
.contact-info-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.contact-info-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #999; margin-bottom: 4px;
}
.contact-info-val {
  font-size: .9rem; color: #333; line-height: 1.6; font-weight: 500;
}
.contact-info-val a { color: #2E7BC4; text-decoration: none; }
.contact-info-val a:hover { text-decoration: underline; }

.contact-social { margin-top: 4px; }
.contact-social-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #999; margin-bottom: 12px;
}
.contact-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social-btn {
  width: 42px; height: 42px; border-radius: 11px;
  background: color-mix(in srgb, var(--sc) 12%, white);
  color: var(--sc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: background .2s, transform .2s;
  border: 1px solid color-mix(in srgb, var(--sc) 20%, white);
}
.contact-social-btn:hover {
  background: var(--sc); color: #fff; transform: translateY(-2px);
}

/* Form Column */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  overflow: hidden;
  border: 1px solid #eef0f5;
}
.contact-form-header {
  background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
  padding: 28px 32px;
  color: #fff;
}
.contact-form-header h3 {
  font-size: 1.2rem; font-weight: 800; margin: 0 0 6px;
  display: flex; align-items: center; gap: 10px;
}
.contact-form-header p {
  font-size: .85rem; color: rgba(255,255,255,.8); margin: 0;
}

.contact-form { padding: 28px 32px; }
.contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) { .contact-form-row { grid-template-columns: 1fr; } }

.contact-field { margin-bottom: 16px; }
.contact-field label {
  display: block; font-size: .8rem; font-weight: 700;
  color: #374151; margin-bottom: 6px;
}
.req { color: #ef4444; }

.contact-input-wrap {
  position: relative; display: flex; align-items: center;
}
.contact-input-wrap > i {
  position: absolute; left: 14px; color: #9ca3af;
  font-size: .9rem; pointer-events: none; z-index: 1;
}
.contact-input-wrap input,
.contact-input-wrap select,
.contact-input-wrap textarea {
  width: 100%; padding: 11px 14px 11px 40px;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: .88rem; color: #1a1a2e; background: #fafafa;
  font-family: inherit; transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.contact-input-wrap input:focus,
.contact-input-wrap select:focus,
.contact-input-wrap textarea:focus {
  border-color: #2E7BC4;
  box-shadow: 0 0 0 3px rgba(46,123,196,.1);
  background: #fff;
}
.contact-input-wrap select { cursor: pointer; }
.contact-textarea-wrap { align-items: flex-start; }
.contact-textarea-wrap > i { top: 13px; }
.contact-input-wrap textarea { resize: vertical; min-height: 110px; }

.contact-submit-btn {
  width: 100%; background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
  color: #fff; border: none; padding: 15px 24px;
  border-radius: 12px; font-size: 1rem; font-weight: 800;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(27,58,140,.3);
  margin-top: 8px;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,58,140,.4);
}
.contact-submit-arrow {
  margin-left: auto; width: 28px; height: 28px;
  background: rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.contact-form-note {
  text-align: center; font-size: .75rem; color: #9ca3af;
  margin: 14px 0 0; display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.contact-form-note i { color: #10b981; }

/* ── Why Section ── */
.contact-why-section {
  padding: 60px 0;
  background: #fff;
}
.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .contact-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-why-grid { grid-template-columns: 1fr; } }

.contact-why-card {
  background: #f8fafc; border-radius: 16px; padding: 28px 22px;
  text-align: center; border: 1px solid #eef0f5;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  border-color: #2E7BC4;
}
.contact-why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.contact-why-card h3 {
  font-size: .95rem; font-weight: 800; color: #1a1a2e; margin: 0 0 8px;
}
.contact-why-card p {
  font-size: .82rem; color: #666; line-height: 1.6; margin: 0;
}


/* ============================================================
   FREE HOLIDAY PLAN MODAL
   ============================================================ */

.hm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(4px);
}
.hm-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.hm-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}
.hm-backdrop.open .hm-modal {
  transform: translateY(0) scale(1);
}
@media (max-width: 700px) {
  .hm-modal { grid-template-columns: 1fr; }
}

/* Close button */
.hm-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background .2s;
}
.hm-close:hover { background: rgba(255,255,255,.35); }

/* Left panel */
.hm-left {
  background: linear-gradient(160deg, #0D1F4E 0%, #1B3A8C 50%, #2E7BC4 100%);
  padding: 40px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px 0 0 24px;
}
@media (max-width: 700px) {
  .hm-left { border-radius: 24px 24px 0 0; padding: 32px 24px; }
}
.hm-left-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 5px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 20px; width: fit-content;
  border: 1px solid rgba(255,255,255,.2);
}
.hm-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900; margin: 0 0 14px; line-height: 1.25;
}
.hm-left > p {
  font-size: .88rem; color: rgba(255,255,255,.82);
  line-height: 1.7; margin-bottom: 24px;
}
.hm-perks {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.hm-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.9);
}
.hm-perks li i { color: #87CEEB; font-size: .9rem; flex-shrink: 0; }
.hm-trust {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
}
.hm-trust-stat {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  padding: 0 8px;
}
.hm-trust-stat:last-child { border-right: none; }
.hm-trust-stat span {
  display: block; font-size: 1.2rem; font-weight: 900; color: #fff;
}
.hm-trust-stat small {
  font-size: .68rem; color: rgba(255,255,255,.65);
}

/* Right panel */
.hm-right {
  padding: 36px 32px;
  overflow-y: auto;
}
@media (max-width: 700px) { .hm-right { padding: 28px 20px; } }
.hm-right h3 {
  font-size: 1.3rem; font-weight: 800; color: #1a1a2e; margin: 0 0 6px;
}
.hm-sub { font-size: .82rem; color: #888; margin-bottom: 22px; }

/* Form fields */
.hm-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 0;
}
@media (max-width: 500px) { .hm-row { grid-template-columns: 1fr; } }
.hm-field { margin-bottom: 14px; }
.hm-field label {
  display: block; font-size: .78rem; font-weight: 700;
  color: #374151; margin-bottom: 5px;
}
.hm-req { color: #ef4444; }
.hm-input-wrap {
  position: relative; display: flex; align-items: center;
}
.hm-input-wrap > i {
  position: absolute; left: 12px; color: #9ca3af;
  font-size: .85rem; pointer-events: none; z-index: 1;
}
.hm-input-wrap input,
.hm-input-wrap select,
.hm-input-wrap textarea {
  width: 100%; padding: 10px 12px 10px 36px;
  border: 1.5px solid #e5e7eb; border-radius: 9px;
  font-size: .85rem; color: #1a1a2e; background: #fafafa;
  font-family: inherit; transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.hm-input-wrap input:focus,
.hm-input-wrap select:focus,
.hm-input-wrap textarea:focus {
  border-color: #2E7BC4;
  box-shadow: 0 0 0 3px rgba(46,123,196,.1);
  background: #fff;
}
.hm-textarea-wrap { align-items: flex-start; }
.hm-textarea-wrap > i { top: 12px; }
.hm-input-wrap textarea { resize: none; }

.hm-error-msg {
  background: #fee2e2; color: #991b1b;
  border: 1px solid #fecaca; border-radius: 8px;
  padding: 10px 14px; font-size: .82rem;
  margin-bottom: 12px;
}

.hm-submit {
  width: 100%;
  background: linear-gradient(135deg, #1B3A8C, #2E7BC4);
  color: #fff; border: none; padding: 14px 20px;
  border-radius: 12px; font-size: .95rem; font-weight: 800;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(27,58,140,.3);
  margin-top: 4px;
}
.hm-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,58,140,.4);
}
.hm-submit:disabled { opacity: .7; cursor: not-allowed; }

.hm-note {
  text-align: center; font-size: .72rem; color: #9ca3af;
  margin: 10px 0 0; display: flex; align-items: center;
  justify-content: center; gap: 5px;
}
.hm-note i { color: #10b981; }

/* Success state */
.hm-success {
  flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 20px 0; min-height: 300px;
}
.hm-success-icon {
  font-size: 4rem; color: #10b981; margin-bottom: 16px;
  animation: hm-pop .4s ease;
}
@keyframes hm-pop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.hm-success h3 {
  font-size: 1.4rem; font-weight: 900; color: #1a1a2e; margin: 0 0 10px;
}
.hm-success p {
  font-size: .9rem; color: #555; line-height: 1.7;
  max-width: 340px; margin: 0 auto 24px;
}
.hm-success-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hm-success-btn-primary {
  background: #2E7BC4; color: #fff; padding: 12px 24px;
  border-radius: 10px; font-weight: 700; font-size: .9rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s;
}
.hm-success-btn-primary:hover { background: #1B3A8C; color: #fff; }
.hm-success-btn-outline {
  background: transparent; color: #555; padding: 12px 24px;
  border-radius: 10px; font-weight: 700; font-size: .9rem;
  border: 1.5px solid #e5e7eb; cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s;
}
.hm-success-btn-outline:hover { border-color: #2E7BC4; color: #2E7BC4; }


/* ============================================================
   PACKAGES FILTER — AJAX REDESIGN
   ============================================================ */

/* Sidebar header */
.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.filter-clear-btn {
  display: none;
  align-items: center;
  gap: 5px;
  background: #fee2e2;
  color: #dc2626;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.filter-clear-btn:hover { background: #fecaca; }

/* Search in sidebar */
.filter-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.filter-search-wrap i {
  position: absolute;
  left: 10px;
  color: #9ca3af;
  font-size: .82rem;
  pointer-events: none;
}
.filter-search-wrap input {
  width: 100%;
  padding: 9px 12px 9px 32px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.filter-search-wrap input:focus { border-color: var(--primary-mid); }

/* Filter group headings with icons */
.filter-group h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #374151;
  margin-bottom: 12px;
}
.filter-group h4 i { color: var(--primary-mid); font-size: .8rem; }

/* Filter checkboxes */
.filter-option input[type="checkbox"] {
  accent-color: var(--primary-mid);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.filter-option label { cursor: pointer; transition: color .15s; }
.filter-option:hover label { color: var(--primary-mid); }

/* Loading overlay */
.pkg-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: #666;
  font-size: .9rem;
  font-weight: 500;
}
.pkg-loading-spinner {
  width: 28px; height: 28px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--primary-mid);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Active filter tags */
.packages-count-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.active-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eff6ff;
  color: var(--primary-mid);
  border: 1px solid #bfdbfe;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.filter-tag:hover { background: #dbeafe; }
.filter-tag i { font-size: .65rem; }

/* No results */
.pkg-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #888;
}
.pkg-no-results i {
  font-size: 3rem;
  color: #d1d5db;
  display: block;
  margin-bottom: 16px;
}
.pkg-no-results h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}
.pkg-no-results p { font-size: .9rem; }
.pkg-no-results a { color: var(--primary-mid); }

/* Mobile filter button */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 7px;
  background: var(--primary-mid);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
@media (max-width: 768px) {
  .mobile-filter-btn { display: flex; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 300px;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }
  .filter-sidebar.mobile-open { transform: translateX(0); }
}

/* Mobile overlay */
.mobile-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  backdrop-filter: blur(2px);
}
.mobile-filter-overlay.active { display: block; }

/* Packages grid transition */
#packagesGrid {
  transition: opacity .25s ease;
}
