/* ═══════════════════════════════════════════════════════════════════
   HIMALAYAN DELIGHT TREK — style.css
   Header styles live in includes/header.php — NOT here.
═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --blue-primary:    #1a3a6b;
  --blue-secondary:  #2563eb;
  --blue-light:      #eff6ff;
  --red-accent:      #dc2626;
  --red-dark:        #b91c1c;
  --gold:            #f59e0b;

  /* Neutrals */
  --white:           #ffffff;
  --gray-light:      #f9fafb;
  --gray-border:     #e5e7eb;
  --gray-medium:     #6b7280;
  --gray-dark:       #1f2937;

  /* Typography */
  --font-heading:    'Manrope', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing */
  --radius:          8px;
  --radius-lg:       12px;
  --radius-xl:       16px;

  /* Shadows */
  --shadow:          0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-hover:    0 12px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg:       0 20px 40px rgba(0, 0, 0, 0.18);

  /* Transition */
  --transition:      all 0.3s ease;
}


/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ═══════════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════════ */
.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--gray-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-primary);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-medium);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-accent);
  border-bottom: 2px solid var(--red-accent);
  padding-bottom: 3px;
  margin-bottom: 10px;
}


/* ═══════════════════════════════════════════════════════════════════
   GRID HELPERS
═══════════════════════════════════════════════════════════════════ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn-red,
.btn-blue-outline,
.btn-white,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-red {
  background: var(--red-accent);
  color: var(--white);
  border-color: var(--red-accent);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
}

.btn-blue-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-blue-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-light);
}

.btn-outline {
  background: transparent;
  color: var(--blue-secondary);
  border-color: var(--blue-secondary);
}
.btn-outline:hover {
  background: var(--blue-secondary);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}


/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  background: #111;
  color: var(--white);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-box {
  max-width: 720px;
  padding: 80px 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  max-width: 56ch;
  opacity: 0.9;
}

/* Video hero variant */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.92);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-dot {
  width: 24px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll-dot::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  70%       { opacity: 0.3; transform: translateY(10px); }
}


/* ═══════════════════════════════════════════════════════════════════
   PROMO / FEATURE BANNER
═══════════════════════════════════════════════════════════════════ */
.feature-banner {
  background: #0f2444;
  color: var(--white);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}
.feature-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.feature-banner-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-banner .badge {
  display: inline-block;
  background: var(--red-accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.feature-banner p {
  opacity: 0.85;
  margin-bottom: 24px;
}

.feature-banner img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
}


/* ═══════════════════════════════════════════════════════════════════
   PACKAGE CARDS & SLIDERS
═══════════════════════════════════════════════════════════════════ */
.package-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.package-slider::-webkit-scrollbar {
  display: none;
}

.package-card,
.pkg-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-width: 300px;
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.package-card:hover,
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.package-card .content,
.pkg-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-card-img img {
  transform: scale(1.06);
}

.duration-badge,
.pkg-badge {
  background: var(--red-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.pkg-days {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.pkg-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.pkg-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.pkg-meta span {
  font-size: 0.78rem;
  color: var(--gray-medium);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-price-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red-accent);
}
.pkg-price-num small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-medium);
  display: block;
}

.pkg-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
  border-radius: 999px;
  padding: 6px 14px;
  transition: var(--transition);
}
.pkg-cta:hover {
  background: var(--blue-primary);
  color: var(--white);
}

/* Slider nav buttons */
.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.slider-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  background: var(--white);
  color: var(--blue-primary);
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}


/* ═══════════════════════════════════════════════════════════════════
   FEATURE / WHY CHOOSE US CARDS
═══════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-box,
.feature-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.feature-box:hover,
.feature-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-primary), #2a4f8f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-card h3,
.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.feature-card p,
.feature-box p {
  font-size: 0.88rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

.kpi {
  display: flex;
  gap: 14px;
  align-items: center;
}
.kpi i {
  font-size: 30px;
  color: var(--blue-secondary);
}


/* ═══════════════════════════════════════════════════════════════════
   STATS CARDS
═══════════════════════════════════════════════════════════════════ */
.stats-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.stats-card .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-card p {
  font-size: 0.88rem;
  color: var(--gray-medium);
}


/* ═══════════════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
.testimonials,
.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.testimonials::-webkit-scrollbar,
.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  min-width: 300px;
  flex: 0 0 300px;
  scroll-snap-align: start;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--gray-medium);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), #2a4f8f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-dark);
  display: block;
}
.review-author-info small {
  font-size: 0.76rem;
  color: var(--gray-medium);
}
.review-source {
  margin-left: auto;
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 32px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  background: rgba(26, 58, 107, 0.45);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body,
.blog-card .content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--gray-medium);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-border);
  font-size: 0.78rem;
  color: var(--gray-medium);
}


/* ═══════════════════════════════════════════════════════════════════
   CTA BAR
═══════════════════════════════════════════════════════════════════ */
.cta-bar {
  background: linear-gradient(90deg, #102650 0%, var(--blue-primary) 60%, #2a4f8f 100%);
  padding: 40px 0;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-bar strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.cta-bar-contact {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.cta-bar-contact a {
  color: var(--gold);
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════
   ENQUIRY POPUP
═══════════════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.popup-overlay.active,
.popup-overlay.open {
  display: flex;
}

.popup-card,
.popup-box {
  background: var(--white);
  color: var(--gray-dark);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.popup-header {
  background: linear-gradient(135deg, var(--blue-primary), #2a4f8f);
  padding: 28px 32px 24px;
  color: var(--white);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.popup-header img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.popup-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.popup-header p {
  font-size: 0.88rem;
  opacity: 0.8;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.popup-body {
  padding: 28px 32px 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-accent), var(--red-dark));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.form-submit:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-1px);
}

.form-response {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Floating enquiry button */
.float-enquire {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--red-accent);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  animation: floatPulse 2.5s ease infinite;
}
.float-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4); }
  50%       { box-shadow: 0 8px 32px rgba(220, 38, 38, 0.7), 0 0 0 8px rgba(220, 38, 38, 0.1); }
}


/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════════ */
.lightbox-overlay,
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox-overlay.active,
.lightbox.open {
  display: flex;
}
.lightbox-overlay img,
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════════
   TRIP DETAIL PAGE — STICKY BOOKING BOX
═══════════════════════════════════════════════════════════════════ */
.sticky-booking-box {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 2px solid var(--blue-primary);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow);
}


/* ═══════════════════════════════════════════════════════════════════
   TABS
═══════════════════════════════════════════════════════════════════ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.tab-btn {
  padding: 10px 18px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: var(--transition);
}
.tab-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}
.tab-btn.active {
  background: var(--red-accent);
  color: var(--white);
  border-color: var(--red-accent);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}


/* ═══════════════════════════════════════════════════════════════════
   ACCORDION / FAQ
═══════════════════════════════════════════════════════════════════ */
.accordion-item,
.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-title,
.faq-question {
  background: var(--blue-light);
  color: var(--blue-primary);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question {
  background: var(--blue-primary);
  color: var(--white);
}
.accordion-title:hover {
  background: var(--blue-primary);
  color: var(--white);
}
.faq-question:hover {
  background: #142f5a;
}

.accordion-content,
.faq-answer {
  display: none;
  padding: 16px 18px;
  background: var(--white);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-medium);
}
.accordion-item.open .accordion-content,
.faq-item.open .faq-answer {
  display: block;
}


/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════════════════════════ */
.breadcrumbs {
  color: var(--gray-medium);
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--blue-secondary);
}
.breadcrumbs a:hover {
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════════════════════════ */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}
.search-bar input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}
.search-bar input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}


/* ═══════════════════════════════════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════════════════════════════════ */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
}
.table-responsive th,
.table-responsive td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.9rem;
}
.table-responsive th {
  background: var(--blue-primary);
  color: var(--white);
  font-weight: 700;
}
.table-responsive tr:hover td {
  background: var(--blue-light);
}

.highlight-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.highlight-list li {
  list-style: disc;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-row a:hover {
  background: var(--red-accent);
}

.badge {
  display: inline-block;
  background: var(--red-accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0f2444;
  color: var(--white);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.site-footer a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 56px 0;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .grid-4      { grid-template-columns: repeat(2, 1fr); }
  .grid-3      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

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

@media (max-width: 768px) {
  .section-title { font-size: 1.5rem; }
  .section       { padding: 48px 0; }

  .hero          { min-height: auto; }
  .hero-content  { min-height: auto; padding: 80px 0 50px; }
  .hero h1       { font-size: 2rem; }
  .hero-box      { padding: 60px 0; }

  .sticky-booking-box { position: static; }

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

  .cta-bar-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .popup-body    { padding: 20px; }
  .popup-header  { padding: 22px 20px 18px; }

  .float-enquire { bottom: 18px; right: 16px; padding: 12px 18px; }

  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .container     { width: calc(100% - 24px); }
  .grid-4        { grid-template-columns: 1fr; }
  .hero-buttons  { flex-direction: column; align-items: flex-start; }
  .tabs          { gap: 6px; }
  .tab-btn       { padding: 8px 14px; font-size: 0.82rem; }
}