/* ==========================================================================
   ThaiPackages.com - Modern Boutique Travel Design System
   Visual Direction: Deep Forest Teal + Warm Amber Gold + Clean White + Warm Sand
   Typography: Plus Jakarta Sans (Headings/UI) + Inter (Body)
   ========================================================================== */

:root {
  /* Core Deep Forest Teal Palette */
  --teal-950: #061d21;
  --teal-900: #0a2a30;
  --teal-850: #0d353c;
  --teal-800: #104149;
  --teal-700: #185a65;
  --teal-600: #217381;
  
  /* Primary Navy/Teal aliases for compatibility */
  --navy-900: #061d21;
  --navy-800: #0a2a30;
  --navy-700: #104149;
  --navy-600: #185a65;

  /* Warm Amber Gold (Primary CTA & Badges) */
  --gold: #f2aa27;
  --gold-hover: #e09819;
  --gold-light: #fef5e7;
  --gold-accent: #f2aa27;

  /* Cyan / Sea Teal (Price accents & tags) */
  --cyan-accent: #0e7490;
  --cyan-hover: #0891b2;
  --cyan-light: #e0f2fe;
  --cyan-subtle: #f0fdfa;

  /* Terracotta (Legacy CTA alias mapped to Warm Amber) */
  --terracotta: #f2aa27;
  --terracotta-hover: #e09819;
  --terracotta-light: #fef5e7;

  /* WhatsApp Green */
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;
  --green-whatsapp: #25d366;
  --green-whatsapp-hover: #20ba5a;

  /* Backgrounds & Surfaces */
  --bg-main: #f8faf9;
  --bg-warm: #fdf7ed;
  --surface: #ffffff;
  --surface-subtle: #f1f5f5;
  --surface-dark: #0a2a30;

  /* Typography Colors */
  --text-main: #1F2937;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders */
  --border-subtle: #e2e8f0;
  --border-card: rgba(226, 232, 240, 0.8);
  --border-strong: #cbd5e1;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: var(--font-heading);
  --font-sans: var(--font-body);

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-card: 16px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows (Refined Diffused Luxury Elevation) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 24px 48px rgba(6, 29, 33, 0.12);

  /* Transitions */
  --ease-fast: 0.15s ease;
  --ease-normal: 0.25s ease;
  --ease-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 15px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--teal-950);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.025em; }
h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }

p {
  color: var(--text-muted);
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  transition: background-color var(--ease-normal), backdrop-filter var(--ease-normal), box-shadow var(--ease-normal);
}

.transparent-nav {
  background: linear-gradient(180deg, rgba(6, 29, 33, 0.75) 0%, rgba(6, 29, 33, 0.2) 80%, transparent 100%);
}

.transparent-nav.scrolled,
.solid-nav {
  background-color: rgba(6, 29, 33, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.brand-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 0;
  position: relative;
  transition: color var(--ease-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.currency-select {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all var(--ease-fast);
}

.currency-select:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.currency-select option {
  background-color: var(--teal-900);
  color: #ffffff;
}

/* ==========================================================================
   Buttons (Refined Luxury Micro-Interactions: scale-[1.02] & active:scale-95)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--teal-950);
  box-shadow: 0 4px 14px rgba(242, 170, 39, 0.28);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(242, 170, 39, 0.4);
}

.btn-pill-white {
  background-color: #ffffff;
  color: var(--teal-950);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.btn-pill-white:hover {
  background-color: #f8fafc;
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: scale(1.02);
}

.btn-teal {
  background-color: var(--teal-900);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 42, 48, 0.25);
}

.btn-teal:hover {
  background-color: var(--teal-800);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(10, 42, 48, 0.35);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan-accent);
  transition: all var(--ease-smooth);
}

.link-arrow:hover {
  color: var(--cyan-hover);
  gap: 10px;
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 29, 33, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-normal);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background-color: var(--teal-950);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ease-smooth);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.close-drawer-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.drawer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Hero Section (Reference Style: Large Cinematic Editorial)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 580px;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--teal-950);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 29, 33, 0.4) 0%, rgba(6, 29, 33, 0.85) 100%),
              linear-gradient(180deg, rgba(6, 29, 33, 0.6) 0%, rgba(6, 29, 33, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
  backdrop-filter: blur(6px);
}

.hero-inner h1 {
  color: #ffffff;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-2);
}

.hero-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 2vw, 17px);
  max-width: 640px;
  margin-bottom: var(--space-4);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Floating Quick Search / Trip Planner Bar
   ========================================================================== */

.search-planner-wrap {
  position: relative;
  z-index: 20;
  margin-top: -42px;
  margin-bottom: var(--space-6);
}

.planner-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
}

.planner-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border-subtle);
  padding-right: 16px;
}

.planner-field:last-of-type {
  border-right: none;
}

.planner-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.planner-select,
.planner-input {
  border: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-950);
  background: transparent;
  outline: none;
  cursor: pointer;
  padding: 4px 0;
}

/* ==========================================================================
   Section Common Styling (Generous Luxury Whitespace & Padding)
   ========================================================================== */

.section {
  padding: 100px 0;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .section {
    padding: 128px 0;
    margin-bottom: 40px;
  }
}

.section-dark {
  background-color: var(--teal-900);
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-warm {
  background-color: var(--bg-warm);
}

.section-subtle {
  background-color: var(--surface-subtle);
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-header.centered {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.section-header-left {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-accent);
  margin-bottom: 8px;
}

.eyebrow.light {
  color: var(--gold);
}

.eyebrow-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-accent);
  background-color: var(--cyan-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

/* ==========================================================================
   Popular Packages Cards (Refined 16px Rounded-2xl, Diffused Shadow & Frosted Glass)
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

@media (min-width: 1024px) {
  .packages-grid {
    gap: 36px;
  }
}

.package-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: none;
  display: flex;
  flex-direction: column;
  min-height: max-content;
  padding-bottom: 45px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(203, 213, 225, 0.9);
}

.package-media-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #0d353c;
  border-top-left-radius: var(--radius-card, 16px);
  border-top-right-radius: var(--radius-card, 16px);
}

.package-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-media-wrap img {
  transform: scale(1.05);
}

/* Frosted Glass Floating Badges */
.package-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.package-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.package-duration-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--teal-950);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.package-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-destination {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-accent);
  margin-bottom: 6px;
}

.package-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.package-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
}

.package-price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.package-price-value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--teal-950);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Travel Styles Category Strip (Dark Section)
   ========================================================================== */

.travel-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.style-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-card, 16px);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.style-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 33, 0.1) 0%, rgba(6, 29, 33, 0.85) 100%);
}

.style-card-content {
  position: relative;
  z-index: 5;
}

.style-card-content h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.style-card-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

/* ==========================================================================
   See the Thailand You'll Experience (Asymmetric Bento Grid)
   ========================================================================== */

.bento-dest-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-card, 16px);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bento-card.featured {
  grid-row: span 2;
  padding: 28px;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 33, 0) 25%, rgba(6, 29, 33, 0.85) 100%);
}

.bento-content {
  position: relative;
  z-index: 5;
}

.bento-content h3 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bento-card.featured .bento-content h3 {
  font-size: 26px;
  font-weight: 800;
}

.bento-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
}

/* ==========================================================================
   Two-Column Feature Blocks (Planned Around You / Tailored Experience)
   ========================================================================== */

.feature-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-media-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.feature-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-media-card:hover img {
  transform: scale(1.03);
}

.feature-points-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.feature-point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-check-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background-color: var(--cyan-light);
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 13px;
  margin-top: 2px;
}

.feature-point-text h4 {
  font-size: 16.5px;
  color: var(--teal-950);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.feature-point-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 2x2 Feature Grid inside Tailored Section */
.feature-quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.quad-item {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-card, 16px);
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quad-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.quad-item-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.quad-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 3px;
}

.quad-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Happy Travellers (Review Cards)
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-card, 16px);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal-950);
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.review-trip {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Destinations Directory Cards (Grid & Card Styling)
   ========================================================================== */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

@media (min-width: 1024px) {
  .destinations-grid {
    gap: 36px;
  }
}

.destination-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(203, 213, 225, 0.9);
}

.dest-media-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #0d353c;
  border-top-left-radius: var(--radius-card, 16px);
  border-top-right-radius: var(--radius-card, 16px);
}

.dest-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .dest-media-wrap img {
  transform: scale(1.05);
}

.dest-region-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.dest-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.dest-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   Final Lead Generation Card (Embedded Banner)
   ========================================================================== */

.final-lead-card {
  background-color: var(--teal-900);
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: max-content;
  padding-bottom: 45px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin: var(--space-4) 0;
}

/* ==========================================================================
   Final CTA Section ('Looking for a customized Thailand itinerary?')
   ========================================================================== */

.final-cta-section {
  padding: 80px 0;
  background-color: var(--teal-950);
  color: #ffffff;
}

.final-cta-inner {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-850) 100%);
  border: 1px solid rgba(242, 170, 39, 0.35);
  border-radius: var(--radius-xl, 20px);
  padding: 56px 40px 45px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(6, 29, 33, 0.4);
  min-height: max-content;
  padding-bottom: 45px;
}

.final-cta-inner h2 {
  color: #ffffff;
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 2vw, 17px);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.final-lead-left h2 {
  color: #ffffff;
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: var(--space-2);
}

.final-lead-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: var(--space-3);
}

.wa-direct-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.final-lead-form {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-950);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--ease-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-accent);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-success-message {
  display: none;
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Destinations Directory & Details Styling
   ========================================================================== */

.page-intro-header {
  background-color: var(--teal-900);
  color: #ffffff;
  padding: 140px 0 60px;
  text-align: center;
}

.page-intro-header h1 {
  color: #ffffff;
  margin-bottom: 10px;
}

.page-intro-header p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.filter-btn {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--ease-fast);
}

.filter-btn:hover {
  background-color: #f1f5f5;
  border-color: var(--teal-800);
}

.filter-btn.active {
  background-color: var(--teal-900);
  color: #ffffff;
  border-color: var(--teal-900);
}



/* Destination Detail Quick Facts */
.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: var(--space-6);
}

.fact-item {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.fact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.fact-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-950);
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: var(--space-2);
}

.highlights-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}

.highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan-accent);
  font-weight: 800;
}

/* ==========================================================================
   Package Detail Page & Sticky Sidebar
   ========================================================================== */

.package-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}

.detail-block {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-card, 16px);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.detail-block h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--teal-950);
  letter-spacing: -0.025em;
}

/* Accordion Itinerary */
.itinerary-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.itinerary-day {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-card, 16px);
  background-color: var(--bg-main);
  overflow: hidden;
  transition: all var(--ease-fast);
}

.itinerary-day:hover {
  border-color: #cbd5e1;
}

.itinerary-summary {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-950);
  user-select: none;
}

.itinerary-summary::-webkit-details-marker {
  display: none;
}

.itinerary-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.itinerary-day-tag {
  background-color: var(--teal-900);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.itinerary-chevron {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform var(--ease-fast);
}

details[open] .itinerary-chevron {
  transform: rotate(180deg);
}

.itinerary-details {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Inclusions & Exclusions */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inc-list li, .exc-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.55;
}

.inc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 800;
}

.exc-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 800;
}

/* Sticky Sidebar (Elevated 16px Rounded-2xl & Diffused Luxury Shadow) */
.package-sidebar {
  position: sticky;
  top: 96px;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-card, 16px);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-price-box {
  background-color: var(--bg-warm);
  border-radius: var(--radius-card, 16px);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(242, 170, 39, 0.2);
}

.sidebar-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sidebar-price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--teal-950);
  letter-spacing: -0.02em;
}

.sidebar-duration {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.sidebar-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
}

/* Mobile Sticky Bar */
.mobile-conversion-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-card);
  padding: 12px 20px;
  z-index: 990;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: space-between;
}

.mobile-bar-price {
  display: flex;
  flex-direction: column;
}

.mobile-bar-price small {
  font-size: 11px;
  color: var(--text-muted);
}

.mobile-bar-price strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--teal-950);
}

/* ==========================================================================
   Global Sticky Circular Floating Action Buttons (WhatsApp & Direct Phone Call)
   ========================================================================== */

.global-sticky-actions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  pointer-events: none;
}

.sticky-action-btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sticky-action-btn:hover {
  transform: translateY(-3px) scale(1.08);
}

.sticky-action-btn:active {
  transform: translateY(0) scale(0.95);
}

.sticky-action-btn.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.48);
}

.sticky-action-btn.btn-whatsapp:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}

.sticky-action-btn.btn-call {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-950) 100%);
  color: var(--gold);
  border: 2px solid rgba(242, 170, 39, 0.75);
  box-shadow: 0 8px 26px rgba(6, 29, 33, 0.45);
}

.sticky-action-btn.btn-call .call-icon {
  color: var(--gold);
}

.sticky-action-btn.btn-call:hover {
  border-color: #ffffff;
  box-shadow: 0 12px 32px rgba(6, 29, 33, 0.6);
}

.sticky-action-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.sticky-action-label {
  display: none !important;
}

/* Backward compatibility for legacy floating button */
.floating-whatsapp-btn {
  display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--teal-950);
  color: #ffffff;
  padding: var(--space-8) 0 var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: var(--space-6);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 10px;
  max-width: 320px;
}

.footer-address-block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.footer-address-text {
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-direct-contacts {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 500;
  transition: color var(--ease-fast);
}

.footer-direct-link:hover {
  color: var(--gold);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color var(--ease-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Mobile, Tablet, Desktop, Wide)
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .bento-dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .bento-card.featured {
    grid-row: auto;
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  .feature-split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .final-lead-card {
    grid-template-columns: 1fr;
    padding: 36px 24px 45px;
    gap: 28px;
    min-height: max-content;
    padding-bottom: 45px;
  }
  .package-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .package-sidebar {
    display: none;
  }
  .mobile-conversion-bar {
    display: flex;
  }
  .global-sticky-actions {
    bottom: 20px;
    right: 16px;
  }
  body.has-mobile-bar .global-sticky-actions,
  .package-detail-page .global-sticky-actions {
    bottom: 84px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-header.centered {
    align-items: center;
    text-align: center;
  }
  .hero-section {
    padding: 130px 0 60px;
    min-height: auto;
  }
  .hero-inner h1 {
    font-size: clamp(28px, 7vw, 42px);
  }
  .hero-inner p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .bento-dest-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bento-card,
  .bento-card.featured {
    grid-column: auto;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    padding: 20px;
  }
  .feature-quad-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
  }
  .final-lead-card {
    padding: 28px 18px 45px;
    border-radius: var(--radius-lg);
    min-height: max-content;
    padding-bottom: 45px;
  }
  .final-cta-inner {
    padding: 36px 20px 45px;
    min-height: max-content;
    padding-bottom: 45px;
  }
  .package-card {
    min-height: max-content;
    padding-bottom: 45px;
  }
  .final-lead-form {
    padding: 20px 16px;
  }
  .package-card-body {
    padding: 20px 16px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .travel-styles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .site-header {
    height: 68px;
  }
  .brand-logo {
    font-size: 19px;
  }
  .nav-actions {
    gap: 8px;
  }
  .currency-select {
    padding: 6px 10px;
    font-size: 12px;
  }
  .nav-actions .btn-sm {
    display: none; /* Keep header clean on ultra-small screens; drawer CTA is available */
  }
  .package-badge-tag,
  .package-category-tag,
  .dest-region-badge {
    top: 10px;
    left: 10px;
    font-size: 9.5px;
    padding: 4px 9px;
  }
  .package-duration-tag {
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    padding: 4px 9px;
  }
  .package-price-value {
    font-size: 16px;
  }
  .package-card-footer {
    gap: 8px;
  }
  .pill-feature {
    font-size: 10.5px;
    padding: 3px 7px;
  }
  .itinerary-modal {
    padding: 12px;
  }
  .itinerary-modal-dialog {
    padding: 22px 14px;
    border-radius: var(--radius-md);
  }
  .modal-highlights-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .modal-timeline-item {
    flex-direction: column;
    gap: 8px;
  }
  .modal-day-badge {
    align-self: flex-start;
  }
  .global-sticky-actions {
    bottom: 16px;
    right: 12px;
    gap: 8px;
  }
  .sticky-action-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  body.has-mobile-bar .global-sticky-actions,
  .package-detail-page .global-sticky-actions {
    bottom: 78px;
  }
}

/* ==========================================================================
   Interactive Itinerary Modal & Accommodation Highlights
   ========================================================================== */

.package-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
}

.pill-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background-color: var(--surface-subtle);
  color: var(--teal-900);
  border: 1px solid var(--border-subtle);
}

.itinerary-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 29, 33, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-normal);
}

.itinerary-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.itinerary-modal-dialog {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(6, 29, 33, 0.3);
  transform: translateY(20px);
  transition: transform var(--ease-smooth);
}

.itinerary-modal.active .itinerary-modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--teal-950);
  transition: all var(--ease-fast);
}

.modal-close-btn:hover {
  background-color: #e2e8f0;
  transform: scale(1.05);
}

.modal-header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.modal-title {
  font-size: clamp(20px, 3vw, 26px);
  color: var(--teal-950);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Modal Highlights Grid (Accommodation & Food Flexibility) */
.modal-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 170, 39, 0.25);
}

.modal-highlight-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.modal-highlight-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.modal-highlight-content h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 2px;
}

.modal-highlight-content p {
  font-size: 12px;
  color: var(--text-main);
  line-height: 1.4;
}

/* Day by Day Modal Timeline */
.modal-timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 14px;
}

.modal-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-timeline-item {
  display: flex;
  gap: 14px;
  padding: 12px 14px;
  background-color: var(--surface-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.modal-day-badge {
  background-color: var(--teal-900);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  height: fit-content;
  white-space: nowrap;
}

.modal-day-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 4px;
}

.modal-day-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.modal-price-box {
  display: flex;
  flex-direction: column;
}

.modal-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.modal-price-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal-950);
}

.modal-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 600px) {
  .itinerary-modal-dialog {
    padding: 24px 18px;
  }
  .modal-footer-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .modal-action-buttons {
    flex-direction: column;
  }
  .modal-action-buttons .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Luxury About Page Layout Styles
   ========================================================================== */

.story-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-img-wrap:hover img {
  transform: scale(1.03);
}

.story-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: rgba(6, 29, 33, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: var(--radius-card, 16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.story-badge-float strong {
  color: var(--gold);
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.story-badge-float p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}

/* Clean 4-Column Workflow Steps (Elevated 16px Card & Diffused Shadows) */
.step-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.step-card {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-card, 16px);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.step-number-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--teal-900);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(10, 42, 48, 0.2);
}

.step-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why Items inside About Page */
.why-grid .why-item {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-card, 16px);
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-grid .why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .story-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-img-wrap img {
    height: 360px;
  }
  .step-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .step-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Catalog Search & Filter Panel (Packages & Destinations)
   ========================================================================== */

.catalog-search-panel,
.flex.flex-col.md\:flex-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .catalog-search-panel,
  .flex.flex-col.md\:flex-row {
    flex-direction: row;
  }
}

.catalog-search-input,
.catalog-select,
.w-full.px-4.py-3.rounded-lg {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #334155;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14.5px;
  font-weight: 500;
  outline: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: auto;
}

.catalog-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.catalog-search-input:focus,
.catalog-select:focus,
.focus\:ring-orange-500:focus {
  outline: none;
  border-color: var(--orange-500, #f97316);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

/* Category Filter Bar Tabs */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-950, #061d21);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full, 9999px);
  cursor: pointer;
  transition: all var(--ease-fast, 0.15s ease);
}

.filter-btn:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.filter-btn.active {
  background-color: var(--teal-900, #0a2a30);
  color: #ffffff;
  border-color: var(--teal-900, #0a2a30);
  box-shadow: 0 2px 8px rgba(10, 42, 48, 0.2);
}

/* ==========================================================================
   Tailwind Spacing & Design System Utilities
   ========================================================================== */

.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.pt-16 { padding-top: 64px; }
.pb-16 { padding-bottom: 64px; }
.pt-20 { padding-top: 80px; }
.pb-20 { padding-bottom: 80px; }
.pt-24 { padding-top: 96px; }
.pb-24 { padding-bottom: 96px; }

.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }

.w-full { width: 100%; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.justify-center { justify-content: center; }
.place-items-center { place-items: center; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }

.rounded-2xl { border-radius: 16px; }
.rounded-t-2xl { border-top-left-radius: 16px; border-top-right-radius: 16px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }

/* Luxury Typography */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.75; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-xs { font-size: 12px; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }

/* Frosted glass & badges */
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* Shadows & Micro-interactions */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-\[0_8px_30px_rgb\(0\,0\,0\,0\.06\)\] { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); }
.shadow-\[0_20px_40px_rgb\(0\,0\,0\,0\.08\)\] { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }

.transition-all { transition-property: all; }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:shadow-\[0_20px_40px_rgb\(0\,0\,0\,0\.08\)\]:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.active\:scale-95:active { transform: scale(0.95); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:py-16 { padding-top: 64px; padding-bottom: 64px; }
  .md\:py-20 { padding-top: 80px; padding-bottom: 80px; }
  .md\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .md\:pt-20 { padding-top: 80px; }
  .md\:pb-20 { padding-bottom: 80px; }
  .md\:pt-24 { padding-top: 96px; }
  .md\:pb-24 { padding-bottom: 96px; }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .section-family-trust {
    padding: 48px 0;
  }
}

/* ==========================================================================
   25% Group Discount Banner & Telugu Guides Styling
   ========================================================================== */

.group-discount-banner {
  background: linear-gradient(135deg, #061d21 0%, #0a2a30 50%, #104149 100%);
  border: 1px solid rgba(242, 170, 39, 0.4);
  border-radius: var(--radius-lg, 16px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 28px;
  box-shadow: 0 10px 30px rgba(6, 29, 33, 0.18);
  position: relative;
  overflow: hidden;
}

.group-discount-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
}

.group-discount-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.group-discount-badge {
  background-color: var(--gold);
  color: var(--teal-950);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.group-discount-text {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.group-discount-text span {
  color: var(--gold);
}

.group-discount-btn {
  background-color: var(--gold);
  color: var(--teal-950);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--ease-fast);
  flex-shrink: 0;
}

.group-discount-btn:hover {
  background-color: #ffffff;
  color: var(--teal-950);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(242, 170, 39, 0.35);
}

@media (max-width: 768px) {
  .group-discount-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 12px;
  }
  .group-discount-btn {
    width: 100%;
    text-align: center;
  }
}

/* Telugu Highlight Pill */
.telugu-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(242, 170, 39, 0.15);
  border: 1px solid rgba(242, 170, 39, 0.4);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Visual Photo Cards for 'Our Four Core Commitments'
   ========================================================================== */

.commitments-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.commitment-card-visual {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-card, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.commitment-card-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
  border-color: var(--gold);
}

.commitment-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.commitment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.commitment-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(6, 29, 33, 0.88);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(242, 170, 39, 0.3);
}

.commitment-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.commitment-card-body h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.commitment-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .commitments-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .commitments-visual-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .commitment-card-img {
    height: 170px;
  }
}

/* ==========================================================================
   Flat & Simple 'Why Trust ThaiPackages for Families' Section
   ========================================================================== */

.section-family-trust {
  background-color: #ffffff;
  padding: 72px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.family-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.family-trust-card {
  background-color: var(--surface-subtle);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card, 16px);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease-fast), background-color var(--ease-fast);
}

.family-trust-card:hover {
  border-color: var(--gold);
  background-color: #ffffff;
}

.family-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--teal-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.family-trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.family-trust-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .family-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .family-trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   Flat & Simple Informational Pages (Passport, Visa, Digital Arrival Card)
   ========================================================================== */

.info-hero {
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-900) 60%, var(--teal-850) 100%);
  padding: 130px 0 60px;
  color: #ffffff;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-hero-inner {
  max-width: 860px;
}

.info-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.info-breadcrumbs a {
  color: var(--gold);
}

.info-breadcrumbs a:hover {
  text-decoration: underline;
}

.info-hero h1 {
  color: #ffffff;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.info-hero p.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  margin-bottom: 24px;
}

.info-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.info-pill-badge.gold {
  background-color: rgba(242, 170, 39, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

.info-pill-badge.green {
  background-color: rgba(37, 211, 102, 0.18);
  border-color: var(--whatsapp);
  color: #4ade80;
}

/* Informational Content Layouts */
.info-section {
  padding: 60px 0;
}

.info-section.bg-subtle {
  background-color: var(--surface-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.info-section.bg-white {
  background-color: #ffffff;
}

.info-section-header {
  margin-bottom: 36px;
  max-width: 780px;
}

.info-section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.info-section-header h2 {
  font-size: clamp(22px, 3.2vw, 32px);
  color: var(--teal-950);
  margin-bottom: 10px;
}

.info-section-header p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Flat Step Grid (1-2-3-4) */
.step-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-flow-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.step-flow-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.step-flow-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-normal), border-color var(--ease-normal), box-shadow var(--ease-normal);
}

.step-flow-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.step-card-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--teal-900);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.step-flow-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 10px;
}

.step-flow-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-flow-card ul.step-bullets {
  margin-top: auto;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-flow-card ul.step-bullets li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.step-flow-card ul.step-bullets li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

/* Checklist Cards Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.checklist-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.checklist-card.featured {
  border-color: var(--teal-700);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.checklist-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}

.checklist-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #dcfce7;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist-item strong {
  color: var(--teal-950);
}

/* Flat Informational Alert / Notice Box */
.info-alert-box {
  background-color: #fef5e7;
  border: 1px solid rgba(242, 170, 39, 0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 32px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-alert-box.teal {
  background-color: #f0fdfa;
  border-color: #99f6e4;
  border-left: 4px solid var(--teal-700);
}

.info-alert-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-alert-content h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 4px;
}

.info-alert-content p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Informational Flat FAQ Grid */
.info-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-faq-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.info-faq-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 8px;
}

.info-faq-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Flat Informational CTA Section */
.info-cta-banner {
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-900) 100%);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 40px 0 20px;
}

.info-cta-content h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.info-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

.info-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Responsive Overrides for Informational Pages */
@media (max-width: 1024px) {
  .step-flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-flow-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .step-flow-grid,
  .step-flow-grid.grid-4,
  .step-flow-grid.grid-2,
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .info-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .info-cta-actions {
    width: 100%;
    justify-content: center;
  }
  .info-cta-actions .btn {
    width: 100%;
  }
  .info-alert-box {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}

/* ==========================================================================
   Utility Classes & Compact Feature Badges
   ========================================================================== */

.text-xs {
  font-size: 11px !important;
  line-height: 1.3 !important;
}

.text-sm {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

.text-gray-600 {
  color: #4b5563 !important;
}

.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-1 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.package-card-body p.text-sm {
  font-size: 13.5px;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 12px;
}

/* ==========================================================================
   UI/UX Audit & Cross-Browser Consistency Polish (Applied Programmatically)
   ========================================================================== */

/* 1. Touch Targets & Mobile Optimization (Min 44px for accessibility) */
a.btn, button.btn, .nav-link, .sticky-action-btn, .link-arrow, button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 2. Image Fallbacks & Rendering Consistency (Prevent white flashes on slow networks) */
.hero-bg-media, .package-image, .dest-image, img {
  background-color: #e2e8f0; 
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* 3. Typography Standardization (Ensure consistent visual hierarchy) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--teal-900, #134e4a);
  line-height: 1.25;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; }

/* 4. Trust Signals Styling Enhancement */
.highlights-list li, #pkgInclusions li, #pkgExclusions li {
  line-height: 1.6;
  margin-bottom: 8px;
}

/* 5. Smooth Scrolling for Anchor Links */
html {
  scroll-behavior: smooth;
}
