/* ==========================================================================
   SUNDARBAN TOUR POINT — MASTER DESIGN SYSTEM
   Premium Travel & Ecotourism Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Caveat:wght@500;600;700&display=swap');

:root {
  /* Color Palette */
  --forest-deep: #061A0C;
  --forest-primary: #0D2B16;
  --forest-dark: #082110;
  --forest-surface: #10381C;
  --forest-muted: #1F452B;
  
  --emerald: #34A853;
  --emerald-light: #4DB868;
  --emerald-dark: #237A3C;
  --emerald-glow: rgba(52, 168, 83, 0.35);
  
  --accent-script: #85E07D;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  
  --cream: #FAF9F5;
  --cream-soft: #F4F6F3;
  --cream-dark: #EAE6DC;
  
  --text-dark: #0D2B16;
  --text-body: #2B4232;
  --text-muted: #627768;
  --text-light: #8FA295;
  
  --border-light: rgba(13, 43, 22, 0.08);
  --border-medium: rgba(13, 43, 22, 0.14);
  --border-white-10: rgba(255, 255, 255, 0.12);
  --border-white-20: rgba(255, 255, 255, 0.22);
  
  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(13, 43, 22, 0.04);
  --shadow-soft: 0 4px 20px rgba(13, 43, 22, 0.06);
  --shadow-medium: 0 10px 30px rgba(13, 43, 22, 0.09);
  --shadow-strong: 0 20px 50px rgba(13, 43, 22, 0.16);
  --shadow-hover: 0 16px 36px rgba(13, 43, 22, 0.12);
  --shadow-glow: 0 0 25px rgba(52, 168, 83, 0.4);
  
  /* Radii - ZERO ACROSS ENTIRE WEBSITE */
  --radius-xs: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-2xl: 0px;
  --radius-full: 0px;
}

/* Base Styles & Global Zero Border Radius */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

[class*="rounded"] {
  border-radius: 0 !important;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-primary);
  letter-spacing: -0.02em;
}

.script-accent {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--accent-script);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-block;
}

/* ==========================================================================
   FLOATING NAVBAR DOCK (Matching Reference Blueprint)
   ========================================================================== */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 26, 12, 0.45);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.15rem 0;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-navbar.scrolled {
  background: rgba(6, 26, 12, 0.92);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 0.8rem 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 200ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #ffffff !important;
  background: #1B4D2E;
  border-color: rgba(52, 168, 83, 0.55);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Reference Matching Pill CTA Button */
.nav-book-btn {
  background: #1B4D2E;
  border: 1.5px solid rgba(52, 168, 83, 0.55);
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 250ms ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.nav-book-btn:hover {
  background: #2D8E47;
  border-color: #4DB868;
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.45);
  transform: translateY(-1px);
  color: white;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 300ms ease;
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 12, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.mobile-drawer.open .mobile-drawer-overlay {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  background: rgba(6, 24, 12, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.6);
  padding: 1.75rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.drawer-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.drawer-link.active {
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.45) 0%, rgba(35, 122, 60, 0.6) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(52, 168, 83, 0.3);
}

/* ==========================================================================
   HERO SECTION (Matching Reference Blueprint)
   ========================================================================== */
#hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
}

.hero-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 6000ms ease;
}

.hero-bg-image.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, 
    rgba(6, 26, 12, 0.88) 0%, 
    rgba(6, 26, 12, 0.62) 42%, 
    rgba(6, 26, 12, 0.28) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  padding-top: 2rem;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  margin-top: 0.25rem;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-top: 0.85rem;
  margin-bottom: 1.75rem;
  max-width: 460px;
  font-weight: 300;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #2D8E47;
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(52, 168, 83, 0.45);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: #34A853;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(52, 168, 83, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.55rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
  color: white;
}

/* Hero Thumbnail Slider Deck (Bottom Right) */
.hero-thumb-deck {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2.5rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.hero-nav-arrow:hover {
  background: #2D8E47;
  border-color: #4DB868;
  color: white;
  transform: scale(1.06);
}

.hero-thumb-cards {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.hero-thumb-card {
  position: relative;
  width: 108px;
  height: 142px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  transform-origin: bottom center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-thumb-card:hover {
  transform: translateY(-5px);
}

.hero-thumb-card.active {
  border-color: #34A853;
  box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.4), 0 14px 34px rgba(0, 0, 0, 0.6);
  width: 122px;
  height: 162px;
}

.hero-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 12, 0.94) 100%);
}

.hero-thumb-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.55rem 0.45rem;
  text-align: center;
}

.hero-thumb-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-thumb-loc {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   PAGE HERO BANNER (Inner Pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, #061A0C 0%, #0D2B16 100%);
  padding: 7.5rem 0 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(52, 168, 83, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2D8E47;
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.72rem 1.65rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(52, 168, 83, 0.3);
}

.btn-primary:hover {
  background: #34A853;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 168, 83, 0.45);
}

.btn-sm {
  padding: 0.45rem 1.15rem;
  font-size: 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-green {
  background: rgba(52, 168, 83, 0.12);
  color: #2D8E47;
  border: 1px solid rgba(52, 168, 83, 0.25);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.16);
  color: #A88A1A;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Filter Pills */
.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  line-height: 1.3;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-medium);
  background: white;
  color: var(--text-muted);
  text-decoration: none;
}

.filter-pill:hover, .filter-pill.active {
  background: #2D8E47;
  color: white;
  border-color: #2D8E47;
  box-shadow: 0 4px 14px rgba(52, 168, 83, 0.3);
}

/* ==========================================================================
   CARDS (Matching Reference Blueprint Sections 03, 05, 06, 07, 08, 09)
   ========================================================================== */

/* 03. Tour Package Card & Sliding Carousel */
.packages-slider-wrap {
  position: relative;
  width: 100%;
}

.packages-slider-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 0.5rem 0.25rem 1.25rem;
  scroll-behavior: smooth;
}

.packages-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.card-package {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  width: 100%;
  scroll-snap-align: start;
}

.packages-slider-track .card-package {
  width: 250px;
  min-width: 250px;
  max-width: 265px;
  flex-shrink: 0;
}

.card-package:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(52, 168, 83, 0.28);
}

.card-package-img {
  position: relative;
  overflow: hidden;
  height: 150px;
}

.card-package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.card-package:hover .card-package-img img {
  transform: scale(1.06);
}

/* 05. Service Card */
.card-service {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(52, 168, 83, 0.28);
}

.card-service-icon {
  width: 56px;
  height: 56px;
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #2D8E47;
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
}

.card-service:hover .card-service-icon {
  background: #2D8E47;
  color: white;
  transform: scale(1.08);
}

.card-service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-primary);
  margin-bottom: 0.45rem;
}

.card-service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 06. Destination Card */
.card-destination {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.card-destination:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(52, 168, 83, 0.3);
}

.card-destination img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.card-destination:hover img {
  transform: scale(1.06);
}

.card-destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 26, 12, 0.9) 100%);
}

.card-destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.35rem;
  background: white;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-top: 1px solid var(--border-light);
}

/* 07. Gallery Collage */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 12, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest-primary);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: #34A853;
  box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.18);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   FOOTER (Matching Reference Blueprint Exactly)
   ========================================================================== */
.footer-main {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #4DB868;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social:hover {
  background: #2D8E47;
  color: white;
  border-color: #34A853;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  #hero-slider-section {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-top: calc(75px + clamp(2.5rem, 6vh, 4.5rem));
    padding-bottom: 2rem;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg, 
      rgba(6, 26, 12, 0.82) 0%, 
      rgba(6, 26, 12, 0.55) 45%, 
      rgba(6, 26, 12, 0.85) 100%
    );
  }

  .hero-content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    padding-top: 0;
  }

  .hero-thumb-deck {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    z-index: 20;
  }

  .hero-thumb-cards {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    padding: 0.35rem 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-thumb-cards::-webkit-scrollbar {
    display: none;
  }

  .hero-thumb-card {
    width: 90px;
    height: 120px;
    flex-shrink: 0;
  }

  .hero-thumb-card.active {
    width: 102px;
    height: 135px;
  }

  .hero-nav-arrow {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .header-navbar {
    padding: 0.85rem 0;
  }

  #hero-slider-section {
    padding-top: calc(65px + clamp(4.2rem, 11vh, 6.8rem));
    padding-bottom: 1.5rem;
  }

  .hero-content-wrap {
    padding: 0 clamp(1.25rem, 5vw, 2rem);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    line-height: 1.06;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-top: 0.65rem;
    margin-bottom: 1.35rem;
    max-width: 100%;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn-hero-primary, .btn-hero-secondary {
    padding: 0.65rem 1.15rem;
    font-size: 0.84rem;
    justify-content: flex-start;
  }

  .hero-thumb-deck {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .hero-thumb-cards {
    gap: 0.5rem;
  }

  .hero-thumb-card {
    width: 78px;
    height: 104px;
    flex-shrink: 0;
  }

  .hero-thumb-card.active {
    width: 88px;
    height: 114px;
  }

  .hero-nav-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .hero-thumb-tag {
    font-size: 0.64rem;
  }

  .hero-thumb-loc {
    font-size: 0.56rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero-thumb-card {
    width: 72px;
    height: 96px;
  }

  .hero-thumb-card.active {
    width: 80px;
    height: 104px;
  }
}

/* ==========================================================================
   MOBILE 2-CARDS-PER-ROW RESPONSIVE OVERRIDES (<= 640px)
   Matches user request: 2 compact cards side-by-side on mobile
   ========================================================================== */
@media (max-width: 640px) {
  /* Mobile Container Padding & Section Spacing */
  .max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .page-hero {
    padding: 5.25rem 0 2rem !important;
  }

  .page-hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.15 !important;
  }

  .page-hero p {
    font-size: 0.8rem !important;
  }

  /* Grid 2-columns strict enforcement */
  .grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* 1. Packages Slider: 2 Cards Side-by-Side */
  .packages-slider-track {
    gap: 0.55rem !important;
    padding: 0.35rem 0.15rem 0.85rem !important;
  }

  .packages-slider-track .card-package {
    width: calc(50% - 0.3rem) !important;
    min-width: calc(50% - 0.3rem) !important;
    max-width: calc(50% - 0.3rem) !important;
  }

  .card-package {
    min-width: 0 !important;
  }

  .card-package-img {
    height: 100px !important;
  }

  .card-package .p-3\.5,
  .card-package .p-4,
  .card-package .p-5,
  .card-package .p-6,
  .card-package .p-7 {
    padding: 0.5rem 0.45rem !important;
  }

  .card-package h3,
  .card-package h2 {
    font-size: 0.76rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.2rem !important;
    font-weight: 700 !important;
  }

  .card-package p.card-pkg-desc,
  .card-package p.line-clamp-2,
  .card-package p.line-clamp-3 {
    display: none !important;
  }

  .card-package .flex.items-center.gap-3 {
    gap: 0.3rem !important;
    font-size: 9px !important;
    margin-bottom: 0.35rem !important;
  }

  .card-package .border-t {
    padding-top: 0.35rem !important;
  }

  .card-package .border-t .font-extrabold {
    font-size: 0.78rem !important;
  }

  .card-package .border-t .btn-primary {
    padding: 0.2rem 0.5rem !important;
    font-size: 0.65rem !important;
  }

  /* 2. Services: 2-by-2 Grid */
  .card-service {
    padding: 0.75rem 0.4rem !important;
  }

  .card-service-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.35rem !important;
    border-radius: 8px !important;
  }

  .card-service-title {
    font-size: 0.75rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.2 !important;
  }

  .card-service-desc {
    font-size: 0.66rem !important;
    line-height: 1.35 !important;
  }

  /* 3. Destinations: 2-by-2 Grid */
  .card-destination {
    height: 190px !important;
  }

  .card-destination-info {
    padding: 0.45rem 0.5rem !important;
  }

  .card-destination-info h3 {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
  }

  .card-destination-info p {
    font-size: 0.62rem !important;
    margin-top: 0.15rem !important;
    line-height: 1.2 !important;
  }

  .card-destination-info .w-8.h-8 {
    display: none !important;
  }

  /* 4. Photo Gallery: 2-by-2 Grid */
  .gallery-item {
    height: 120px !important;
  }

  /* 5. Blog Cards: 2-by-2 Grid */
  .card-blog {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .card-blog .card-blog-img,
  .card-blog > div:first-child {
    height: 100px !important;
  }

  .card-blog .p-6,
  .card-blog .p-7 {
    padding: 0.5rem 0.45rem !important;
  }

  .card-blog h2,
  .card-blog h3 {
    font-size: 0.76rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.2rem !important;
    font-weight: 700 !important;
  }

  .card-blog p {
    display: none !important;
  }

  .card-blog .badge {
    font-size: 8px !important;
    padding: 1px 4px !important;
    top: 0.25rem !important;
    left: 0.25rem !important;
  }

  .card-blog .border-t {
    padding-top: 0.35rem !important;
    font-size: 9px !important;
  }
}

