/* ============================================
   Punya Pathways — Design System v9
   Clean, consolidated, mobile-first
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #e8604c;
  --primary-dark: #c94535;
  --primary-light: #fef0ee;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --secondary: #1a3c5e;
  --secondary-light: #2a5a8a;
  --dark: #0f1923;
  --text: #2c3345;
  --text-light: #6b7280;
  --text-muted: #767676;
  --bg: #fafbfc;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { content-visibility: auto; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ---------- Layout ---------- */
.container { width: 96%; max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.section { padding: 56px 0; position: relative; }
.section-alt { background: #f4f6f8; }
.section-compact { padding: 36px 0; }
.section-compact .title-box { margin-bottom: 24px; }
.section-compact .title { font-size: 1.6rem; }
.section-compact .section-desc { margin-bottom: 0; }
.text-center { text-align: center; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--secondary); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
.title-box { text-align: center; max-width: 640px; margin: 0 auto 24px; }
.sub-title { font-size: .82rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.title { font-size: clamp(1.3rem, 3.5vw, 2rem); margin-bottom: 10px; }
.section-desc { color: var(--text-light); max-width: 600px; margin: 0 0 24px; font-size: .95rem; line-height: 1.7; margin-top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: .95rem;
  padding: 12px 28px; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,96,76,.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--secondary); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--secondary); }
.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- Top Bar ---------- */
.top-bar { background: var(--secondary); color: rgba(255,255,255,.85); font-size: .82rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--accent); }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); font-size: .85rem; }
.top-bar-right a:hover { background: var(--primary); color: #fff; }
.top-bar-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.1); padding: 2px 10px; border-radius: 50px; font-size: .7rem; font-weight: 600; }
.top-bar-badge i { color: var(--success); }

/* ---------- Navbar ---------- */
.main-nav { background: #fff; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.main-nav.scrolled { box-shadow: var(--shadow-md); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li { position: relative; }
.nav-links a { color: var(--text); font-weight: 500; font-size: .9rem; padding: 10px 16px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 4px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-links .dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 100; list-style: none; display: block; }
.nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { padding: 10px 14px; font-size: .87rem; border-radius: var(--radius-sm); }
.dropdown-menu a:hover { background: var(--primary-light); }
.nav-cta { margin-left: 8px; }

/* Desktop Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-action-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  font-size: .9rem; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.nav-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Mobile Right Side (Account + Hamburger) */
.mobile-right { display: none; align-items: center; gap: 8px; }
.mobile-account-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-light); border: none; color: var(--primary);
  font-size: 1rem; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.mobile-account-btn:active { background: var(--primary); color: #fff; }
.mobile-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); border: none;
  color: var(--primary); font-size: 1.3rem; cursor: pointer;
  transition: all .2s; flex-shrink: 0;
}
.mobile-toggle:active { background: var(--primary); color: #fff; }

/* Extra small phones */
@media (max-width: 360px) {
  .top-bar-left { gap: 6px; overflow: hidden; }
  .top-bar-left a, .top-bar-badge { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; font-size: .7rem; }
  .top-bar .top-bar-right { display: none; }
  .top-bar .container { padding: 0 10px; }
  .main-nav .container { height: 52px; padding: 0 10px; }
  .nav-logo img { height: 30px; }
  .nav-actions { gap: 4px; }
  .nav-search-btn { width: 34px; height: 34px; font-size: .85rem; }
  .nav-cta { padding: 7px 12px !important; font-size: .75rem !important; }
  .mobile-toggle { font-size: 1.3rem; }
  .btn { padding: 10px 18px; font-size: .82rem; }
  .btn-lg { padding: 12px 24px; font-size: .9rem; }
  .hero-content h1 { font-size: 1.2rem; }
  .hero-content p { font-size: .78rem; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 12px 16px; font-size: .82rem; }
  .package-card-body h3 { font-size: .85rem; }
  .package-price .price-new { font-size: 1rem; }
  .package-price .btn { padding: 6px 12px; font-size: .75rem; }
  .section-desc { font-size: .8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* --- 361px-414px: Standard Android phones --- */
@media (min-width: 361px) and (max-width: 414px) {
  .top-bar-left { gap: 8px; overflow: hidden; }
  .top-bar-left a, .top-bar-badge { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; font-size: .72rem; }
  .top-bar .top-bar-right { display: none; }
  .top-bar .container { padding: 0 12px; }
  .main-nav .container { height: 56px; padding: 0 12px; }
  .nav-logo img { height: 34px; }
  .nav-actions { gap: 6px; }
  .nav-search-btn { width: 36px; height: 36px; font-size: .85rem; }
  .nav-cta { padding: 8px 14px !important; font-size: .78rem !important; }
}

/* --- 415px-480px: Large Android phones --- */
@media (min-width: 415px) and (max-width: 480px) {
  .top-bar-left { gap: 10px; overflow: hidden; }
  .top-bar-left a, .top-bar-badge { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .top-bar .top-bar-right { display: none; }
  .main-nav .container { height: 58px; }
  .nav-logo img { height: 36px; }
}

/* ---------- Mega Menu ---------- */
.has-mega { position: static !important; }
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 3px solid var(--primary);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease; z-index: 1000; padding: 28px 0;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 300px; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mega-title { font-size: .78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #f0ecff; }
.mega-title i { margin-right: 6px; }
.mega-link { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 10px; text-decoration: none; color: var(--text); transition: all .2s; margin-bottom: 4px; }
.mega-link:hover { background: #f8f5ff; transform: translateX(4px); }
.mega-icon { font-size: 1.5rem; width: 40px; text-align: center; flex-shrink: 0; }
.mega-link-title { font-weight: 600; font-size: .9rem; color: var(--text); }
.mega-link-desc { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.mega-highlight { background: linear-gradient(135deg, #f8f5ff, #f0ecff); border-radius: 16px; padding: 24px; display: flex; align-items: center; }
.mega-promo { text-align: center; width: 100%; }
.mega-promo-tag { display: inline-block; background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.mega-promo h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.mega-promo p { font-size: .82rem; color: var(--text-muted); margin-bottom: 8px; }
.mega-promo-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.mega-promo-price span { font-size: .78rem; font-weight: 400; color: var(--text-muted); }

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,26,46,.95); backdrop-filter: blur(20px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px; opacity: 0; visibility: hidden; transition: all .3s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 640px; padding: 0 24px; position: relative; }
.search-overlay h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.search-close { position: absolute; top: -60px; right: 24px; background: rgba(255,255,255,.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: all .2s; }
.search-close:hover { background: rgba(255,255,255,.2); }
.search-overlay-input { position: relative; margin-bottom: 24px; }
.search-overlay-input i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.1rem; }
.search-overlay-input input {
  width: 100%; padding: 18px 24px 18px 52px;
  border: 2px solid rgba(255,255,255,.2); border-radius: 16px;
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 1.05rem; outline: none; transition: all .2s;
}
.search-overlay-input input::placeholder { color: rgba(255,255,255,.5); }
.search-overlay-input input:focus { border-color: var(--primary); background: rgba(255,255,255,.15); }
.search-tag-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.search-tag-label { color: rgba(255,255,255,.5); font-size: .82rem; }
.search-tag { display: inline-block; padding: 6px 16px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-radius: 50px; font-size: .82rem; text-decoration: none; transition: all .2s; }
.search-tag:hover { background: var(--primary); color: #fff; }
.search-results { margin-top: 16px; }
.search-result-item { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: rgba(255,255,255,.05); border-radius: 12px; margin-bottom: 8px; text-decoration: none; color: #fff; transition: all .2s; }
.search-result-item:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.search-result-item img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.search-result-title { font-weight: 600; font-size: .9rem; }
.search-result-meta { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.search-result-price { margin-left: auto; font-weight: 700; color: var(--primary-light); font-size: .95rem; }

/* ---------- Hero Section ---------- */
.hero { position: relative; height: 75vh; min-height: 480px; max-height: 720px; overflow: hidden; }
.hero.hero-slider { display: block; height: 65vh; min-height: 400px; max-height: none; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.65); transition: transform 8s ease; }
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,25,35,.78) 0%, rgba(26,60,94,.45) 50%, rgba(15,25,35,.25) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 680px; padding: 0 20px; }
.hero-content h1 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-content p { font-size: 1.15rem; opacity: .92; margin-bottom: 28px; line-height: 1.7; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); padding: 8px 16px; border-radius: 50px; font-size: .82rem; color: #fff; }

/* ---------- Hero Slider ---------- */
.hero-slides { position: relative; height: 100%; min-height: inherit; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; z-index: 0; }
.hero-slide.active { opacity: 1; z-index: 1; will-change: opacity; }
.hero-slide .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.85), rgba(26,26,46,.5)); }
.hero-slide .container { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-slide .hero-content { max-width: 600px; }
.hero-tag { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(8px); padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; }
.hero-slide h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.hero-slide p { font-size: 1rem; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 20px; max-width: 500px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.hero-nav:hover { background: rgba(255,255,255,.3); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-dots { position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 6px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; }
.hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }
.hero-search-wrap { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; padding: 16px 0; background: linear-gradient(transparent, rgba(0,0,0,.4)); }

/* ---------- Hero Search Bar ---------- */
.hero-search { position: relative; max-width: 540px; margin-bottom: 28px; }
.hero-search-inner { position: relative; display: flex; align-items: center; background: rgba(255,255,255,.15); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.25); border-radius: 60px; padding: 4px 6px 4px 20px; transition: all .3s ease; }
.hero-search-inner:focus-within { background: rgba(255,255,255,.95); border-color: var(--primary); box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.hero-search-icon { color: rgba(255,255,255,.6); font-size: .95rem; margin-right: 12px; flex-shrink: 0; transition: color .3s; }
.hero-search-inner:focus-within .hero-search-icon { color: var(--primary); }
.hero-search input { flex: 1; background: none; border: none; outline: none; color: #fff; font-family: var(--font); font-size: .92rem; padding: 12px 0; }
.hero-search-inner:focus-within input { color: var(--text); }
.hero-search input::placeholder { color: rgba(255,255,255,.55); }
.hero-search-inner:focus-within input::placeholder { color: var(--text-muted); }
.hero-search-results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: var(--radius-md); box-shadow: 0 12px 40px rgba(0,0,0,.18); max-height: 320px; overflow-y: auto; display: none; z-index: 100; }
.hero-search-results.active { display: block; }
.hero-search-results a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--text); border-bottom: 1px solid #f3f4f6; transition: background .15s; }
.hero-search-results a:last-child { border-bottom: none; }
.hero-search-results a:hover { background: #f9fafb; }
.hero-search-results .sr-thumb { width: 48px; height: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.hero-search-results .sr-info { flex: 1; min-width: 0; }
.hero-search-results .sr-title { font-weight: 600; font-size: .88rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-search-results .sr-meta { font-size: .75rem; color: var(--text-muted); }
.hero-search-btn { background: var(--primary); color: #fff; border: none; border-radius: 60px; padding: 10px 20px; font-weight: 600; font-size: .85rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
.hero-search-btn:hover { background: var(--primary-dark); }
.hero-search-clear { position: absolute; right: 130px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.5); font-size: .85rem; cursor: pointer; display: none; z-index: 5; }
.hero-search-clear.visible { display: block; }
.hero-search-inner:focus-within .hero-search-clear { color: var(--text-muted); }

/* ---------- Stats Bar ---------- */
.stats-bar { background: #fff; margin-top: -40px; position: relative; z-index: 12; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 20px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 16px 12px; border-radius: var(--radius-md); background: var(--bg); transition: transform .3s ease; }
.stat-item:hover { transform: translateY(-4px); }
.stat-number { font-size: 2rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .85rem; color: var(--text-light); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Package Cards ---------- */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.package-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; position: relative; display: flex; flex-direction: column; contain: content; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
a.package-card { color: inherit; text-decoration: none; display: block; }
a.package-card:hover { color: inherit; }
.package-card-img { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; display: block; }
.package-card:hover .package-card-img img { transform: scale(1.06); }
.package-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.package-rating { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); color: #fff; padding: 4px 10px; border-radius: 50px; font-size: .8rem; display: flex; align-items: center; gap: 4px; }
.package-rating i { color: var(--accent); }
.package-card-body { padding: 16px; }
.package-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.package-meta { display: flex; align-items: center; gap: 16px; font-size: .82rem; color: var(--text-light); margin-bottom: 16px; }
.package-meta span { display: flex; align-items: center; gap: 4px; }
.package-price { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: .85rem; }
.price-new { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.price-per { font-size: .75rem; color: var(--text-light); }

/* ---------- Category Cards ---------- */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card { position: relative; height: 200px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; display: block; transition: transform .3s ease, box-shadow .3s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; color: #fff; pointer-events: none; }
.category-card-overlay h4 { font-size: .9rem; color: #fff; margin-bottom: 2px; font-weight: 700; }
.category-card-overlay span { font-size: .72rem; opacity: .8; }

/* ---------- Features / Why Us ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.feature-card { background: #fff; padding: 20px 14px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; contain: content; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: var(--radius-md); background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform .3s ease; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { font-size: .88rem; color: var(--text-light); }

/* ---------- Destinations Grid ---------- */
.destinations-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dest-card { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 220px; cursor: pointer; display: block; transition: transform .3s ease, box-shadow .3s ease; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card.featured { grid-column: span 2; height: 220px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; }
.dest-card-overlay h4 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; font-weight: 700; }
.dest-card-overlay span { font-size: .78rem; opacity: .8; }

/* ---------- Process / How It Works ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { text-align: center; position: relative; padding: 32px 16px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); counter-increment: step; }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step:has(.process-icon)::before { display: none; }
.process-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 16px rgba(232,96,76,.25); transition: transform .3s ease; }
.process-step:hover .process-icon { transform: scale(1.1) rotate(5deg); }
.process-step::before { content: counter(step); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 800; font-size: 1.2rem; box-shadow: 0 4px 16px rgba(232,96,76,.25); }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: .85rem; color: var(--text-light); }

/* ---------- About / Split Section ---------- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; transition: transform .6s ease; }
.split-img:hover img { transform: scale(1.04); }
.split-content .check-list { list-style: none; margin: 20px 0; }
.split-content .check-list li { padding: 6px 0; font-size: .95rem; display: flex; align-items: center; gap: 10px; }
.split-content .check-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--success); font-size: .85rem; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); color: #fff; position: relative; }
.testimonials-slider-wrap { position: relative; overflow: hidden; padding: 8px 0; }
.testimonials-slider-track { display: flex; gap: 20px; animation: testimonialScroll 40s linear infinite; width: max-content; }
.testimonials-slider-track:hover { animation-play-state: paused; }
.testimonials-slider-track .testimonial-card { flex: 0 0 340px; min-width: 340px; }
@keyframes testimonialScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-card { background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); padding: 20px; border-radius: var(--radius-md); }
.testimonial-stars { color: var(--accent); margin-bottom: 12px; font-size: .9rem; }
.testimonial-card p { font-size: .95rem; opacity: .92; line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; }
.testimonial-name { font-weight: 600; }
.testimonial-trip { font-size: .8rem; opacity: .7; }

/* ---------- CTA Banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #b83a2a 100%); color: #fff; padding: 32px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -20%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { opacity: .9; margin-bottom: 24px; font-size: 1.05rem; }

/* ---------- Enquiry Form ---------- */
.enquiry-form { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.enquiry-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form .form-group { margin-bottom: 0; }
.enquiry-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .form-group.full { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: .92rem; transition: var(--transition); background: #f9fafb; color: var(--text); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ---------- Contact Info ---------- */
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 18px; border-radius: var(--radius-lg); background: var(--card-bg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.contact-info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; transition: var(--transition); }
.contact-info-item:hover .contact-icon { background: var(--primary); color: #fff; }
.contact-info-text h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--secondary); }
.contact-info-text p, .contact-info-text a { color: var(--text-light); font-size: .95rem; line-height: 1.5; }
.contact-info-text a:hover { color: var(--primary); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 780px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--text); transition: var(--transition); border: none; background: none; width: 100%; text-align: left; font-family: var(--font); min-height: 52px; }
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform .3s ease; color: var(--primary); font-size: .8rem; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; color: var(--text-light); font-size: .92rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* ---------- Alert ---------- */
.alert-bar { padding: 14px 20px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ---------- Page Banner ---------- */
.page-banner { height: 220px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background-size: cover; background-position: center; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,60,94,.85), rgba(26,60,94,.6)); pointer-events: none; }
.page-banner-content { position: relative; z-index: 2; color: #fff; }
.page-banner-content h1 { color: #fff; margin-bottom: 8px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: .88rem; opacity: .85; list-style: none; }
.breadcrumb a { color: #fff; }

/* ---------- Inner Banner ---------- */
.inner-banner9 { background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%); padding: 64px 0 48px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.inner-banner9::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: rgba(232,96,76,.08); pointer-events: none; }
.inner-banner9::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(245,166,35,.06); pointer-events: none; }
.inner-banner9 .inner-text { position: relative; z-index: 2; }
.inner-banner9 .inner-text h1 { color: #fff !important; font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 8px; }
.inner-banner9 small { font-size: .85rem; opacity: .8; display: flex !important; gap: 8px; align-items: center; }
.inner-banner9 small a { color: var(--accent) !important; }
.inner-banner9 small i { font-size: .65rem; color: rgba(255,255,255,.5); }

/* ---------- Package Detail ---------- */
.pkg-hero { position: relative; height: 380px; display: flex; align-items: flex-end; background-size: cover; background-position: center; overflow: hidden; }
.pkg-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,25,35,.85) 0%, rgba(15,25,35,.3) 60%, transparent); pointer-events: none; }
.pkg-hero-content { position: relative; z-index: 2; color: #fff; padding-bottom: 48px; width: 100%; max-width: 640px; }
.pkg-hero-content h1 { color: #fff; font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: 10px; }
.pkg-hero-content .lead { color: rgba(255,255,255,.8); font-size: 1.05rem; opacity: .9; margin-top: 8px; }
.pkg-breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 12px; opacity: .9; }
.pkg-breadcrumb a { color: var(--accent); }
.pkg-breadcrumb a:hover { color: #fff; }
.pkg-main-content { padding: 48px 0 64px; }
.pkg-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.pkg-sidebar { position: sticky; top: 90px; }
.pkg-price-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.pkg-price-card .price-display { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.pkg-price-card .price-per { font-size: .82rem; color: var(--text-muted); }

/* ---------- Itinerary Box ---------- */
.itinerary-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 14px; border-left: 3px solid var(--primary); transition: border-color .2s, box-shadow .2s; }
.itinerary-box:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.itinerary-box strong { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--secondary); margin-bottom: 8px; }
.itinerary-box strong span { background: var(--primary); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; }
.itinerary-box p { font-size: .88rem; color: var(--text-light); line-height: 1.7; margin: 0; padding-left: 38px; }

/* ---------- Check List ---------- */
.check-list { list-style: none; padding: 0; margin: 16px 0 0; }
.check-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .92rem; line-height: 1.5; }
.check-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--success); color: #fff; border-radius: 50%; font-size: .65rem; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 32px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand-text { font-size: .88rem; line-height: 1.7; opacity: .75; margin-top: 12px; }
.footer-heading { color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .88rem; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact p { display: flex; align-items: center; gap: 10px; font-size: .88rem; margin-bottom: 12px; }
.footer-contact i { color: var(--primary); width: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.footer-socials a:hover { background: var(--primary); }
.footer-payment { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.footer-payment span { display: inline-flex; align-items: center; justify-content: center; padding: 4px 10px; background: rgba(255,255,255,.08); border-radius: 4px; font-size: .72rem; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .5px; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: .82rem; opacity: .6; }
.footer-contact-link { color: rgba(255,255,255,.7); }
.footer-contact-link:hover { color: var(--primary); }
.footer-payment-wrap { margin-top: 16px; }
.footer-heading-sm { font-size: .82rem; }
.footer-policy-link { color: rgba(255,255,255,.6); }
.footer-policy-link:hover { color: var(--primary); }

/* ---------- Newsletter ---------- */
.newsletter-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%); position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: rgba(232,96,76,.08); pointer-events: none; }

/* ---------- Quick Support Chat Widget ---------- */
.qs-widget {
  position: fixed;
  bottom: clamp(16px, 2vw, 24px);
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}
.qs-widget[data-position="right"] { right: clamp(12px, 2vw, 20px); }
.qs-widget[data-position="left"] { left: clamp(12px, 2vw, 20px); }

.qs-trigger {
  width: 56px; height: 56px; border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #c0392b));
  color: #fff; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 96, 76, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  position: relative; z-index: 2;
}
.qs-trigger:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(232, 96, 76, 0.5); }
.qs-trigger .qs-icon-close { display: none; font-size: 1.2rem; }
.qs-widget.open .qs-trigger .qs-icon-open { display: none; }
.qs-widget.open .qs-trigger .qs-icon-close { display: block; }
.qs-widget.open .qs-trigger { background: linear-gradient(135deg, #6b7280, #4b5563); transform: rotate(90deg); }

.qs-menu {
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.qs-widget.open .qs-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }

.qs-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 50px; color: #fff;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  white-space: nowrap; box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: transform 0.2s, box-shadow 0.2s; min-height: 44px;
}
.qs-item:hover { transform: translateX(-4px); box-shadow: 0 4px 20px rgba(0,0,0,.2); color: #fff; }
.qs-widget[data-position="left"] .qs-item:hover { transform: translateX(4px); }
.qs-item i { font-size: 1.1rem; width: 24px; text-align: center; }
.qs-whatsapp { background: #25d366; }
.qs-phone { background: var(--primary); }
.qs-email { background: #3b82f6; }
.qs-sms { background: #8b5cf6; }
.qs-enquiry { background: var(--accent, #f39c12); }

/* Staggered entrance animation */
.qs-widget.open .qs-item:nth-child(1) { transition-delay: 0.05s; }
.qs-widget.open .qs-item:nth-child(2) { transition-delay: 0.1s; }
.qs-widget.open .qs-item:nth-child(3) { transition-delay: 0.15s; }
.qs-widget.open .qs-item:nth-child(4) { transition-delay: 0.2s; }
.qs-widget.open .qs-item:nth-child(5) { transition-delay: 0.25s; }

/* Chat label tooltip */
.qs-label {
  background: #fff; color: var(--text, #1a1a2e);
  padding: 6px 14px; border-radius: 8px;
  font-size: .78rem; font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  white-space: nowrap; position: relative;
  animation: qsLabelBounce 2s infinite;
}
.qs-label::after {
  content: ''; position: absolute; bottom: -6px; right: 16px;
  width: 12px; height: 12px; background: #fff;
  transform: rotate(45deg); box-shadow: 2px 2px 4px rgba(0,0,0,.06);
}
.qs-widget[data-position="left"] .qs-label::after { right: auto; left: 16px; }
@keyframes qsLabelBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Pulse animation on trigger button */
.qs-trigger::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(232, 96, 76, 0.3);
  animation: qsPulse 2s infinite; z-index: -1;
}
.qs-widget.open .qs-trigger::before { animation: none; opacity: 0; }
@keyframes qsPulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ---------- Scroll to Top ---------- */
.scroll-top { position: fixed; bottom: 100px; right: 24px; width: 42px; height: 42px; border-radius: 50%; background: var(--secondary); color: #fff; display: none; align-items: center; justify-content: center; font-size: 1rem; border: none; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition); z-index: 998; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ---------- Loading / Animations ---------- */
.fade-up { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: no-preference) { .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; } .fade-up.visible { opacity: 1; transform: translateY(0); } }
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img[loading="lazy"].loaded, img[loading="lazy"][complete] { opacity: 1; }

/* ---------- Modal (Quick Enquiry) ---------- */
.modal-open .modal { z-index: 9999; }
.modal-body.modal-form h4 { color: var(--primary); margin-bottom: 15px; }
.modal-body.modal-form form .form-control { margin-bottom: 5px; }
.modal-body.modal-form form textarea.form-control { height: 80px; }
.modal-body.modal-form input.btn-primary { width: 100%; }
.modal-content { margin-top: 0; }
.modal-open .modal { backdrop-filter: blur(4px); }
.modal-backdrop { opacity: 0.5 !important; }

/* ---------- Trust Section ---------- */
.trust-section { text-align: center; padding: 48px 0; }

/* ============================================================
   RESPONSIVE — Single clean set of breakpoints
   Mobile-first: 480 → 768 → 992 → 1200
   ============================================================ */

/* --- 480px: Small phones --- */
@media (max-width: 480px) {
  .container { padding: 0 12px; max-width: 100%; }
  .section { padding: 24px 0; }
  .section-compact { padding: 20px 0; }
  .section-compact .title { font-size: 1.15rem; }
  img { max-width: 100%; height: auto; }
  .btn { padding: 10px 20px; font-size: .85rem; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .btn-sm { padding: 7px 16px; font-size: .78rem; }
  a { word-break: break-word; }
  p, .section-desc { font-size: .85rem; line-height: 1.6; }

  /* Hero */
  .hero { height: 65vh; min-height: 380px; }
  .hero.hero-slider { height: 50vh; min-height: 320px; }
  .hero-content h1 { font-size: 1.35rem; line-height: 1.3; }
  .hero-content p { font-size: .8rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { display: none; }
  .hero-dots { bottom: 90px; }
  .hero-slide h1 { font-size: 1.3rem; }
  .hero-slide p { font-size: .82rem; }

  /* Stats */
  .stats-bar { padding: 14px; margin-top: -20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: .65rem; }

  /* Cards */
  .packages-grid { grid-template-columns: 1fr; gap: 12px; }
  .package-card { overflow: hidden; }
  .package-card-img { height: 200px; }
  .package-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .package-card-body { padding: 14px; }
  .package-card-body h3 { font-size: .9rem; line-height: 1.3; }
  .package-price { flex-direction: column; align-items: flex-start; gap: 8px; }
  .package-price .btn { width: 100%; justify-content: center; }
  .categories-grid { grid-template-columns: 1fr; gap: 10px; }
  .category-card { height: 140px; }
  .destinations-showcase { grid-template-columns: 1fr; gap: 10px; }
  .dest-card, .dest-card.featured { height: 160px; grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-step { padding: 12px; }
  .process-icon { width: 48px; height: 48px; font-size: 1.1rem; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 12px; }
  .blog-card { overflow: hidden; }
  .blog-card img { width: 100%; height: 180px; object-fit: cover; }
  .blog-card-body { padding: 14px; }
  .blog-card-body h3 { font-size: .95rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card { padding: 16px; }
  .testimonial-card p { font-size: .85rem; }

  /* FAQ */
  .faq-item { margin-bottom: 8px; }
  .faq-question { padding: 14px 16px; font-size: .88rem; }
  .faq-answer { padding: 0 16px 14px; font-size: .82rem; }

  /* Layout */
  .split-section { gap: 20px; }
  .split-img img { height: 180px; min-height: 160px; width: 100%; object-fit: cover; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 16px 12px; }
  .footer-bottom p { font-size: .78rem; }

  /* Package detail */
  .pkg-hero { height: 180px; }
  .pkg-hero-content h1 { font-size: 1.15rem; }
  .itinerary-box { padding: 14px; }
  .itinerary-box strong { font-size: .85rem; }
  .itinerary-box p { font-size: .82rem; padding-left: 0; margin-top: 8px; }

  /* Inner pages */
  .inner-banner9 { padding: 36px 0 24px; }
  .title { font-size: 1.15rem; }
  .sub-title { font-size: .7rem; }

  /* Search */
  .search-overlay { padding-top: 80px; }
  .search-overlay h3 { font-size: 1.1rem; }
  .search-overlay-input input { padding: 14px 18px 14px 44px; font-size: .95rem; }

  /* Floating / Chat Widget */
  .qs-trigger { width: 52px; height: 52px; font-size: 1.2rem; }
  .qs-label { display: none; }
  .qs-item { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; min-height: 48px; }
  .qs-item span { display: none; }
  .qs-item i { width: auto; font-size: 1.2rem; }
  .qs-menu { gap: 10px; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .enquiry-form .form-grid { grid-template-columns: 1fr; }
  .form-control { padding: 10px 14px; font-size: .88rem; width: 100%; box-sizing: border-box; }
  .form-group { margin-bottom: 12px; }
  input, select, textarea { max-width: 100%; box-sizing: border-box; }

  /* Booking */
  .booking-summary { padding: 16px; }
  .booking-summary h3 { font-size: 1rem; }
  .price-row { font-size: .85rem; }
  .price-total { font-size: 1.1rem; }

  /* Category pages */
  .category-header h1 { font-size: 1.3rem; }
  .category-header p { font-size: .85rem; }
  .filter-bar { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 6px 12px; font-size: .78rem; }

  /* Reviews */
  .review-card { padding: 14px; }
  .review-card p { font-size: .85rem; }
  .review-stars { font-size: .9rem; }

  /* Pagination */
  .pagination { flex-wrap: wrap; gap: 4px; }
  .pagination a, .pagination span { padding: 8px 12px; font-size: .82rem; }
}

/* --- 768px: Tablets portrait --- */
@media (min-width: 481px) and (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }
  .section-compact { padding: 24px 0; }
  .section-compact .title { font-size: 1.3rem; }

  /* Hero */
  .hero { height: 70vh; min-height: 420px; }
  .hero.hero-slider { height: 55vh; min-height: 360px; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-content p { font-size: .85rem; }
  .hero-tag { font-size: .7rem; padding: 4px 10px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: .88rem; }
  .hero-nav { width: 32px; height: 32px; font-size: .8rem; }
  .hero-dots { bottom: 90px; gap: 8px; }
  .hero-badges { gap: 8px; margin-top: 12px; }
  .hero-badge { font-size: .72rem; padding: 5px 10px; }

  /* Stats */
  .stats-bar { margin-top: -24px; padding: 18px; border-radius: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: .7rem; }

  /* Cards */
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .package-card { border-radius: 12px; }
  .package-card-img { height: 200px; }
  .package-card-body { padding: 16px; }
  .package-card-body h3 { font-size: 1.05rem; }
  .package-price { flex-direction: column; align-items: flex-start; gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { height: 150px; border-radius: 10px; }
  .destinations-showcase { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dest-card { height: 160px; border-radius: 10px; }
  .dest-card.featured { grid-column: span 2; height: 180px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 18px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-step { padding: 16px; }
  .testimonials-slider-track .testimonial-card { flex: 0 0 280px; min-width: 280px; }

  /* Layout */
  .split-section { grid-template-columns: 1fr; gap: 24px; }
  .split-img img { height: 220px; min-height: 180px; border-radius: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .enquiry-form .form-grid { grid-template-columns: 1fr; }

  /* Package detail */
  .pkg-hero { height: 220px; }
  .pkg-hero-content h1 { font-size: 1.3rem; }
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; margin-top: 24px; }
  .pkg-price-card { padding: 18px; }
  .pkg-price-card .price-display { font-size: 1.5rem; }

  /* Inner pages */
  .inner-banner9 { padding: 48px 0 32px; }
  .inner-banner9 .inner-text h1 { font-size: 1.5rem; }

  /* Buttons */
  .btn { padding: 10px 20px; font-size: .88rem; }
  .btn-lg { padding: 12px 24px; font-size: .95rem; }
  .btn-sm { padding: 7px 16px; font-size: .8rem; }

  /* Floating / Chat Widget */
  .qs-trigger { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* --- 769px-992px: Tablets landscape / small desktop --- */
@media (min-width: 769px) and (max-width: 992px) {
  .section { padding: 40px 0; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-img img { height: 280px; min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-showcase { grid-template-columns: repeat(2, 1fr); }
  .dest-card.featured { grid-column: span 2; height: 200px; }
  .dest-card { height: 200px; }
  .packages-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .features-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; margin-top: 24px; }

  /* Top Bar: compact */
  .top-bar-left a[href^="mailto:"],
  .top-bar-badge { display: none; }
  .top-bar { padding: 6px 0; font-size: .78rem; }
  .top-bar-left { gap: 12px; }
  .top-bar-right { gap: 8px; }
  .top-bar-right a { width: 28px; height: 28px; font-size: .8rem; }

  /* Nav: show mobile-right (account + hamburger), hide desktop links */
  .nav-links { display: none; }
  .nav-actions { display: none !important; }
  .mobile-right { display: flex; }
  .mobile-toggle { display: flex; }
  .main-nav .container { height: 60px; }
  .nav-logo img { height: 40px; }
  .nav-logo { flex-shrink: 0; margin-right: auto; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 70px 0 20px;
    overflow-y: auto; z-index: 998;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open li { border-bottom: 1px solid #f3f4f6; }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { padding: 14px 16px; font-size: .92rem; }
  .mobile-menu-header { display: block !important; border-bottom: 2px solid var(--primary) !important; background: #f8f5ff; }
  .nav-links.open .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding-left: 16px; display: none;
  }
  .nav-links.open li.open .dropdown-menu { display: block; }
  .mega-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: none; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
  }
  .has-mega.open .mega-menu { max-height: 800px; padding: 8px 0; }
  .mega-grid { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .mega-highlight { display: none; }
  .mega-link { padding: 12px 16px; border-radius: 0; border-bottom: 1px solid #f3f4f6; }
  .mega-link:last-child { border-bottom: none; }
  .mega-link:hover { transform: none; background: #f8f5ff; }
  .mega-title { padding: 10px 16px 6px; font-size: .72rem; }

  /* Mobile menu footer */
  .mobile-menu-footer {
    display: flex; flex-direction: column; gap: 10px;
    padding: 20px 16px; background: #f8f9fa;
    border-top: 2px solid var(--primary, #6C35DE);
  }
  .mobile-menu-footer .btn { width: 100%; text-align: center; padding: 14px; font-size: .95rem; border-radius: 10px; }
  .mobile-search-trigger {
    width: 100%; padding: 14px; border: 2px solid var(--border, #e5e7eb);
    border-radius: 10px; background: #fff; color: var(--text-muted, #6b7280);
    font-size: .9rem; cursor: pointer; display: flex; align-items: center; gap: 8px;
    transition: border-color .2s;
  }
  .mobile-search-trigger:active { border-color: var(--primary, #6C35DE); }

  /* Hero */
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
}

/* --- 993px-1200px: Tablet landscape / small desktop --- */
@media (min-width: 993px) and (max-width: 1200px) {
  .container { max-width: 960px; padding: 0 20px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .destinations-showcase { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .dest-card.featured { grid-column: span 2; height: 220px; }
  .testimonials-slider-track .testimonial-card { flex: 0 0 320px; min-width: 320px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-compact .title { font-size: 1.5rem; }
  .stat-number { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 24px; }
  .split-section { gap: 32px; }
  .split-img img { height: 340px; }
  .nav-links a { padding: 8px 12px; font-size: .85rem; }
  .pkg-sidebar { position: static; }
  .mega-grid { grid-template-columns: 1fr 1fr 260px; gap: 24px; }
}

/* --- 1200px+: Desktop adjustments --- */
@media (min-width: 1201px) {
  .destinations-showcase { grid-template-columns: repeat(4, 1fr); }
  .packages-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .mega-grid { grid-template-columns: 1fr 1fr 300px; gap: 32px; }
}

/* ============================================================
   v9.1 ENHANCEMENTS — Auto-Resize & Device Fixes
   ============================================================ */

/* --- Fluid typography for all devices --- */
html { font-size: clamp(14px, 1.6vw, 16px); }

/* --- Hero auto-resize --- */
.hero {
  height: clamp(350px, 60vh, 600px);
  min-height: clamp(300px, 50vh, 500px);
}
.hero.hero-slider {
  height: clamp(300px, 50vh, 500px);
  min-height: clamp(280px, 45vh, 450px);
}
.hero-content h1 { font-size: clamp(1.5rem, 4vw, 2.8rem); }
.hero-content p { font-size: clamp(0.85rem, 1.8vw, 1.1rem); }

/* --- Package card auto-resize --- */
.package-card-img { height: clamp(180px, 22vw, 240px); }
.package-card-body h3 { font-size: clamp(0.95rem, 1.8vw, 1.15rem); }
.package-card-body .package-desc { font-size: clamp(0.75rem, 1.4vw, 0.85rem); }

/* --- Stats auto-resize --- */
.stat-number { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.stat-label { font-size: clamp(0.65rem, 1.2vw, 0.82rem); }

/* --- Section titles auto-resize --- */
.section-compact .title { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.section-compact .sub-title { font-size: clamp(0.72rem, 1.2vw, 0.82rem); }

/* --- Category card auto-resize --- */
.category-card { height: clamp(140px, 18vw, 200px); }
.category-card h4 { font-size: clamp(0.9rem, 1.6vw, 1.1rem); }

/* --- Footer auto-resize --- */
.footer-brand-text { font-size: clamp(0.82rem, 1.4vw, 0.9rem); }
.footer-grid { gap: clamp(16px, 3vw, 32px); }

/* --- CTA banner auto-resize --- */
.cta-banner h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.cta-banner p { font-size: clamp(0.85rem, 1.6vw, 1rem); }

/* --- Split section auto-resize --- */
.split-text h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.split-text p { font-size: clamp(0.88rem, 1.6vw, 1rem); }

/* --- Package detail auto-resize --- */
.pkg-hero { height: clamp(220px, 35vw, 380px); }
.pkg-hero-content h1 { font-size: clamp(1.2rem, 3vw, 2rem); }
.pkg-price-card .price-display { font-size: clamp(1.4rem, 3vw, 2rem); }

/* --- Booking form auto-resize --- */
.booking-form-card { padding: clamp(16px, 3vw, 32px); }
.booking-form-card h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* --- Inner page banner auto-resize --- */
.inner-banner9 { padding: clamp(32px, 6vw, 72px) 0 clamp(24px, 4vw, 48px); }
.inner-banner9 .inner-text h1 { font-size: clamp(1.3rem, 3.5vw, 2.2rem); }

/* --- Process step auto-resize --- */
.process-step { padding: clamp(14px, 2.5vw, 24px); }
.process-icon { width: clamp(40px, 6vw, 56px); height: clamp(40px, 6vw, 56px); font-size: clamp(1rem, 2vw, 1.3rem); }

/* --- Testimonial card auto-resize --- */
.testimonial-card { padding: clamp(16px, 3vw, 28px); }

/* --- Feature card auto-resize --- */
.feature-card { padding: clamp(14px, 2.5vw, 24px); }
.feature-icon { width: clamp(44px, 6vw, 60px); height: clamp(44px, 6vw, 60px); font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* --- Price display auto-resize --- */
.price-new { font-size: clamp(1rem, 2vw, 1.3rem); }
.price-per { font-size: clamp(0.7rem, 1.2vw, 0.82rem); }

/* --- Button auto-resize --- */
.btn { padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px); font-size: clamp(0.82rem, 1.5vw, 0.95rem); }
.btn-lg { padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 36px); font-size: clamp(0.9rem, 1.8vw, 1.05rem); }

/* --- Form control auto-resize --- */
.form-control { padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 16px); font-size: clamp(0.85rem, 1.5vw, 0.95rem); }

/* --- Newsletter auto-resize --- */
.newsletter-section { padding: clamp(24px, 4vw, 48px) 0; }
.newsletter-inner { padding: clamp(20px, 3vw, 32px); }
.newsletter-content h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

/* --- Stats bar auto-resize --- */
.stats-bar { padding: clamp(14px, 2.5vw, 24px); margin-top: clamp(-16px, -2vw, -32px); }

/* --- Mega menu auto-resize on desktop --- */
@media (min-width: 993px) {
  .mega-menu { padding: clamp(20px, 3vw, 32px) 0; }
  .mega-grid { padding: 0 clamp(16px, 2vw, 24px); }
  .mega-link { padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 16px); }
}

/* --- Chat widget auto-resize --- */
.qs-trigger { width: clamp(50px, 7vw, 56px); height: clamp(50px, 7vw, 56px); font-size: clamp(1.2rem, 2vw, 1.4rem); }

/* ============================================================
   v9.1 ENHANCEMENTS — Mobile Menu, Badges, Package Cards
   ============================================================ */

/* --- Enhanced Mobile Menu (Android/iOS fix) --- */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 997; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-overlay.active { display: block; }

.nav-links.open {
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* Mobile mega menu accordion */
@media (max-width: 992px) {
  .has-mega > a {
    display: flex !important; align-items: center; justify-content: space-between;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .has-mega > a::after {
    content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: .75rem; transition: transform .3s ease; margin-left: 8px;
  }
  .has-mega.open > a::after { transform: rotate(180deg); }
  .mega-menu {
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
    padding: 0; background: #f8f9fa; border-radius: 0 0 8px 8px;
  }
  .has-mega.open .mega-menu {
    max-height: 800px; padding: 12px 0;
  }
  .mega-link {
    padding: 12px 16px !important; border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .mega-link:last-child { border-bottom: none; }
  .mega-title { padding: 8px 16px 4px; font-size: .72rem; }
}

/* --- Package Badge Variants --- */
.package-badge { background: var(--primary); }
.package-badge.badge-bestseller { background: linear-gradient(135deg, #f59e0b, #d97706); }
.package-badge.badge-premium { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.package-badge.badge-popular { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.package-badge.badge-value { background: linear-gradient(135deg, #10b981, #059669); }
.package-badge.badge-quick { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.package-badge.badge-helicopter { background: linear-gradient(135deg, #ec4899, #db2777); }
.package-badge.badge-vip { background: linear-gradient(135deg, #f59e0b, #b45309); }
.package-badge.badge-budget { background: linear-gradient(135deg, #84cc16, #65a30d); }
.package-badge.badge-romantic { background: linear-gradient(135deg, #f472b6, #ec4899); }
.package-badge.badge-special { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.package-badge.badge-luxury { background: linear-gradient(135deg, #fbbf24, #d97706); }
.package-badge.badge-adventure { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.package-badge.badge-heritage { background: linear-gradient(135deg, #78716c, #57534e); }
.package-badge.badge-unesco { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.package-badge.badge-winter { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
.package-badge.badge-family { background: linear-gradient(135deg, #fb923c, #ea580c); }
.package-badge.badge-multi { background: linear-gradient(135deg, #6366f1, #4f46e5); }

/* --- Package Card Highlights --- */
.package-highlights {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 0;
}
.package-highlight-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; background: #f0fdf4; color: #166534;
  border-radius: 50px; font-size: .68rem; font-weight: 500;
}
.package-highlight-tag i { font-size: .55rem; color: var(--success); }

/* --- Enhanced Package Card --- */
.package-card-body .package-desc {
  font-size: .82rem; color: var(--text-light); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin: 4px 0 8px;
}

/* --- Sticky Filter Tabs (mobile scrollable) --- */
.filter-tabs {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  flex-shrink: 0; padding: 14px 20px; font-weight: 600; font-size: .85rem;
  color: var(--text-light); border-bottom: 3px solid transparent;
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  scroll-snap-align: start; transition: all .2s; white-space: nowrap;
  cursor: pointer; background: none; border-top: none; border-left: none;
  border-right: none; font-family: var(--font);
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* --- Touch-friendly Android/iOS overrides --- */
@supports (-webkit-touch-callout: none) {
  /* iOS specific */
  .nav-links.open { -webkit-overflow-scrolling: touch; }
  .form-control { font-size: 16px; } /* Prevent iOS zoom on focus */
}

/* Android Chrome address bar fix */
@media (max-width: 992px) {
  .hero { min-height: calc(60vh - 56px); }
  .nav-links.open {
    max-height: calc(100dvh - 72px);
    max-height: -webkit-fill-available;
  }
}

/* --- Swipe hint for mobile package cards --- */
.swipe-hint {
  display: none; text-align: center; padding: 8px; font-size: .75rem;
  color: var(--text-muted); animation: swipeHint 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .swipe-hint { display: block; }
}
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ============================================================
   ACCESSIBILITY & SPECIAL MODES
   ============================================================ */

/* Touch-friendly targets */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; }
  .form-control { min-height: 48px; padding: 14px 16px; }
  .nav-links a { min-height: 48px; }
  .search-tag { padding: 10px 18px; min-height: 44px; display: inline-flex; align-items: center; }
  .search-result-item { padding: 16px; min-height: 60px; }
  .faq-question { min-height: 52px; }
  .mega-link { min-height: 52px; }
  .category-card { min-height: 160px; }
  .dest-card { min-height: 180px; }
  .package-card:hover { transform: none; }
  .feature-card:hover { transform: none; }
  .btn, .nav-cta, .mega-link, .form-control, .search-tag { min-height: 44px; }
  .btn, .nav-cta, .search-tag, .mega-link, .package-card { -webkit-tap-highlight-color: transparent; }
  .hero-nav { width: 44px; height: 44px; }
  .hero-dot { width: 12px; height: 12px; }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { height: 100vh; min-height: 300px; }
  .hero-slide h1 { font-size: 1.3rem; }
  .hero-slide p { display: none; }
  .hero-cta { flex-direction: row; }
  .hero-cta .btn { padding: 10px 20px; font-size: .82rem; }
  .hero-dots { bottom: 60px; }
  .hero-badges { display: none; }
  .hero-search-wrap { padding: 8px 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-slide { transition: none; }
  .fade-up { opacity: 1; transform: none; }
  .hero-nav { transition: none; }
  .testimonials-slider-track { animation: none; }
}

/* High contrast */
@media (prefers-contrast: high) {
  :root { --primary: #c94535; --text: #000; --text-light: #333; --border: #999; --bg: #fff; --card-bg: #fff; }
  .btn-primary { border: 2px solid #000; }
  .package-card, .feature-card, .testimonial-card { border: 1px solid #999; }
}

/* Focus visible */
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }

/* Safe area insets */
@supports (padding: max(0px)) {
  .top-bar .container { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .main-nav .container { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .site-footer .container { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .qs-widget { bottom: calc(24px + env(safe-area-inset-bottom)); }
  .scroll-top { bottom: calc(90px + env(safe-area-inset-bottom)); }
}

/* High DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img { image-rendering: -webkit-optimize-contrast; }
}

/* Print */
@media print {
  .top-bar, .main-nav, .qs-widget, .cta-banner, .scroll-top, #quickEnquiryModal, .hero-nav, .hero-dots { display: none !important; }
  .section { padding: 20px 0; }
  body { color: #000; background: #fff; }
  .hero { height: auto; min-height: 0; }
  .package-card { break-inside: avoid; }
}

/* Hero search mobile */
@media (max-width: 768px) {
  .hero-search { max-width: 100%; }
  .hero-search-inner { border-radius: 50px; padding: 3px 4px 3px 16px; }
  .hero-search input { font-size: .85rem; padding: 10px 0; }
  .hero-search-btn { padding: 8px 14px; font-size: .8rem; }
  .hero-search-clear { right: 110px; }
  .hero-search-wrap { padding: 12px 0; }
  .hero-dots { bottom: 110px; }
}

/* ============================================================
   v9.2 ENHANCEMENTS — Mobile-First Redesign
   Comprehensive fixes for Android, iOS, and all mobile devices
   ============================================================ */

/* --- Enhanced Button System (Touch-Friendly) --- */
.btn {
  min-height: 48px;
  min-width: 48px;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

/* Ripple effect on touch */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.btn:active::after { opacity: 1; transition: opacity 0s; }

/* Button states */
.btn:active { transform: scale(.97); }
.btn-primary:active { background: var(--primary-dark); }
.btn-outline:active { background: var(--primary-light); }

/* Full-width button on mobile */
@media (max-width: 576px) {
  .btn-block-mobile { width: 100%; justify-content: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* --- Enhanced Package Cards (Mobile-First) --- */
.package-card {
  contain: layout style;
  will-change: transform;
}

/* Better touch feedback on mobile */
@media (max-width: 768px) {
  .package-card:active {
    transform: scale(.98);
    box-shadow: var(--shadow-sm);
  }

  /* Stack price and button vertically on small screens */
  .package-price {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .package-price .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  /* Better card image ratio for mobile */
  .package-card-img {
    height: 180px;
  }

  /* Show more text on mobile */
  .package-card-body h3 {
    font-size: .95rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Package highlights on mobile */
  .package-highlights {
    display: none;
  }

  /* Better meta layout */
  .package-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* --- Featured Packages Section --- */
.featured-packages-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}
.featured-packages-scroll::-webkit-scrollbar { display: none; }
.featured-packages-scroll .package-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

@media (min-width: 769px) {
  .featured-packages-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 4px 0 0;
  }
  .featured-packages-scroll .package-card {
    flex: none;
  }
}

/* --- Android-Specific Fixes --- */
@supports (-webkit-appearance: none) and (not (-webkit-touch-callout: none)) {
  /* Android Chrome */
  .form-control {
    font-size: 16px !important; /* Prevent zoom on focus */
  }

  /* Fix Android address bar shifting */
  .hero {
    min-height: max(350px, 60vh);
  }

  /* Fix bottom navigation overlap */
  .qs-widget {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }

  /* Fix Android keyboard pushing content */
  .enquiry-form {
    transform: translateZ(0);
  }
}

/* --- Enhanced Form Controls (Mobile) --- */
@media (max-width: 576px) {
  .form-control {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 16px !important; /* Prevent iOS/Android zoom */
    border-radius: 12px;
  }

  textarea.form-control {
    min-height: 120px;
  }

  select.form-control {
    padding-right: 40px;
    background-position: right 16px center;
  }

  /* Better label visibility */
  .form-group label {
    font-size: .88rem;
    margin-bottom: 8px;
    font-weight: 600;
  }

  /* Full-width form on mobile */
  .enquiry-form {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .enquiry-form .form-grid {
    gap: 14px;
  }
}

/* --- Enhanced Navigation (Mobile) --- */
@media (max-width: 576px) {
  .main-nav .container {
    height: 60px;
    padding: 0 12px;
  }

  .nav-logo img {
    height: 36px;
  }

  /* Bigger touch targets for nav */
  .nav-search-btn {
    width: 44px;
    height: 44px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: .82rem;
  }

  /* Mobile menu items */
  .nav-links.open a {
    padding: 16px;
    font-size: .95rem;
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  /* Sticky CTA on mobile */
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    display: flex;
    gap: 8px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
    min-height: 48px;
  }
}

/* --- Enhanced Category Cards (Mobile) --- */
@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    height: 140px;
    border-radius: 12px;
  }

  .category-card-overlay h4 {
    font-size: .82rem;
  }

  .category-card-overlay span {
    font-size: .68rem;
  }
}

/* --- Enhanced Stats Bar (Mobile) --- */
@media (max-width: 576px) {
  .stats-bar {
    margin-top: -16px;
    padding: 16px 12px;
    border-radius: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: .68rem;
  }
}

/* --- Enhanced Hero (Mobile) --- */
@media (max-width: 576px) {
  .hero {
    height: 55vh;
    min-height: 320px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: .85rem;
    margin-bottom: 20px;
  }

  .hero-tag {
    font-size: .7rem;
    padding: 4px 10px;
  }

  .hero-slide h1 {
    font-size: 1.3rem;
  }

  .hero-slide p {
    font-size: .82rem;
    margin-bottom: 16px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-nav {
    width: 36px;
    height: 36px;
    font-size: .85rem;
  }

  .hero-dots {
    bottom: 80px;
  }
}

/* --- Enhanced Footer (Mobile) --- */
@media (max-width: 576px) {
  .site-footer {
    padding: 24px 0 0;
  }

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

  .footer-brand-text {
    font-size: .85rem;
    line-height: 1.6;
  }

  .footer-heading {
    font-size: .9rem;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: .85rem;
    padding: 8px 0;
    display: block;
  }

  .footer-contact p {
    font-size: .85rem;
    margin-bottom: 10px;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: .78rem;
  }
}

/* --- Enhanced Chat Widget (Mobile) --- */
@media (max-width: 576px) {
  .qs-trigger {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .qs-item {
    min-height: 48px;
    padding: 12px 16px;
    font-size: .88rem;
  }

  .qs-item span {
    display: inline;
  }
}

/* --- Scroll Snap for Mobile Package Cards --- */
@media (max-width: 576px) {
  .packages-grid.mobile-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 4px 0 16px;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .packages-grid.mobile-scroll::-webkit-scrollbar { display: none; }
  .packages-grid.mobile-scroll .package-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

/* --- Enhanced Section Spacing (Mobile) --- */
@media (max-width: 576px) {
  .section {
    padding: 32px 0;
  }

  .section-compact {
    padding: 24px 0;
  }

  .title-box {
    margin-bottom: 20px;
  }

  .title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .sub-title {
    font-size: .72rem;
    letter-spacing: 1.5px;
  }

  .section-desc {
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}

/* --- Touch-Optimized Cards --- */
@media (pointer: coarse) {
  .package-card,
  .category-card,
  .dest-card,
  .feature-card {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .package-card:active,
  .category-card:active,
  .dest-card:active {
    transform: scale(.97);
    transition: transform .1s;
  }

  /* Larger touch targets */
  a, button {
    min-height: 44px;
  }

  .btn-sm {
    min-height: 40px;
    padding: 8px 16px;
  }
}

/* --- Improved Text Readability on Mobile --- */
@media (max-width: 576px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  p {
    font-size: .9rem;
    line-height: 1.7;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  /* Better contrast for small text */
  .text-light, .text-muted {
    color: var(--text);
    opacity: .75;
  }
}

/* --- Split Section Mobile --- */
@media (max-width: 576px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-img {
    order: -1;
  }

  .split-img img {
    height: 200px;
    min-height: 180px;
    border-radius: 12px;
  }

  .split-content .check-list li {
    font-size: .88rem;
    padding: 8px 0;
  }
}

/* --- Process Steps Mobile --- */
@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .process-step {
    padding: 16px 12px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .process-step h4 {
    font-size: .88rem;
  }

  .process-step p {
    font-size: .78rem;
  }
}

/* --- Testimonials Mobile --- */
@media (max-width: 576px) {
  .testimonials-slider-track .testimonial-card {
    flex: 0 0 260px;
    min-width: 260px;
    padding: 16px;
  }

  .testimonial-card p {
    font-size: .88rem;
    -webkit-line-clamp: 4;
  }
}

/* --- CTA Banner Mobile --- */
@media (max-width: 576px) {
  .cta-banner {
    padding: 28px 0;
  }

  .cta-banner h2 {
    font-size: 1.2rem;
  }

  .cta-banner p {
    font-size: .88rem;
    margin-bottom: 20px;
  }

  .cta-banner .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

/* --- Newsletter Mobile --- */
@media (max-width: 576px) {
  .newsletter-section {
    padding: 32px 0;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-input-wrap {
    flex-direction: column;
  }

  .newsletter-input {
    min-height: 48px;
  }

  .newsletter-btn {
    min-height: 48px;
    width: 100%;
  }
}

/* --- Package Detail Mobile --- */
@media (max-width: 576px) {
  .pkg-hero {
    height: 200px;
  }

  .pkg-hero-content {
    padding-bottom: 24px;
  }

  .pkg-hero-content h1 {
    font-size: 1.2rem;
  }

  .pkg-hero-content .lead {
    font-size: .88rem;
  }

  .pkg-info-chips {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pkg-chip {
    font-size: .72rem;
    padding: 4px 10px;
  }

  .pkg-main-content {
    padding: 24px 0 32px;
  }

  .pkg-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pkg-sidebar {
    position: static;
    margin-top: 20px;
  }

  .pkg-price-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .pkg-price-card .price-display {
    font-size: 1.6rem;
  }

  /* Sticky bottom bar for package detail */
  .pkg-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .pkg-bottom-bar .price-display {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
  }

  .pkg-bottom-bar .btn {
    flex: 1;
    justify-content: center;
    min-height: 48px;
  }
}

/* --- Itinerary Mobile --- */
@media (max-width: 576px) {
  .itinerary-box {
    padding: 14px 12px;
    margin-bottom: 10px;
  }

  .itinerary-box strong {
    font-size: .82rem;
    gap: 8px;
  }

  .itinerary-box strong span {
    width: 24px;
    height: 24px;
    font-size: .7rem;
  }

  .itinerary-box p {
    font-size: .82rem;
    padding-left: 0;
    margin-top: 8px;
  }
}

/* --- Blog Cards Mobile --- */
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card-img {
    height: 180px;
  }

  .blog-card-body {
    padding: 14px;
  }

  .blog-card-body h3 {
    font-size: .95rem;
  }
}

/* --- Review Cards Mobile --- */
@media (max-width: 576px) {
  .review-card {
    padding: 16px;
  }

  .review-card .review-text {
    font-size: .88rem;
    -webkit-line-clamp: 4;
  }
}

/* --- Destinations Grid Mobile --- */
@media (max-width: 576px) {
  .destinations-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dest-card {
    height: 140px;
    border-radius: 12px;
  }

  .dest-card.featured {
    grid-column: span 2;
    height: 160px;
  }

  .dest-card-overlay h4 {
    font-size: .85rem;
  }

  .dest-card-overlay span {
    font-size: .7rem;
  }
}

/* --- Features Grid Mobile --- */
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature-card {
    padding: 16px 12px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .feature-card h4 {
    font-size: .88rem;
    margin-bottom: 4px;
  }

  .feature-card p {
    font-size: .78rem;
  }
}

/* --- Smooth Transitions --- */
@media (prefers-reduced-motion: no-preference) {
  .package-card,
  .category-card,
  .dest-card,
  .feature-card,
  .btn {
    transition: transform .2s ease, box-shadow .2s ease;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   UNIVERSAL DEVICE OPTIMIZATION — Smartphones, Tablets, Laptops
   ══════════════════════════════════════════════════════════════════════ */

/* --- Global Overflow & Media --- */
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe, embed, object { max-width: 100%; height: auto; display: block; }
table { max-width: 100%; overflow-x: auto; }
pre, code, .mono { overflow-x: auto; word-break: break-word; max-width: 100%; }
input, select, textarea { font-size: max(16px, 1em); /* Prevent iOS zoom */ }

/* --- Small Smartphones (up to 360px) --- */
@media (max-width: 360px) {
  .container { padding: 0 8px; }
  .section { padding: 20px 0; }
  h1, .section-title { font-size: 1.15rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: .92rem; }
  p, li, .desc { font-size: .8rem; line-height: 1.5; }
  .btn { padding: 10px 16px; font-size: .8rem; border-radius: 8px; }
  .btn-lg { padding: 12px 20px; font-size: .88rem; }
  .btn-sm { padding: 7px 12px; font-size: .72rem; }
  .card, .package-card, .blog-card, .review-card { border-radius: 10px; }
  .card-body, .package-card-body { padding: 12px; }
  .badge { font-size: .65rem; padding: 2px 8px; }
  .form-control { padding: 10px 12px; font-size: .85rem; border-radius: 8px; }
  .modal-content { border-radius: 12px; margin: 8px; }
  .modal-body { padding: 16px; }
  .table td, .table th { padding: 6px 8px; font-size: .75rem; }
}

/* --- Standard Smartphones (361px-480px) --- */
@media (min-width: 361px) and (max-width: 480px) {
  .container { padding: 0 12px; }
  .section { padding: 24px 0; }
  h1, .section-title { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: .95rem; }
  p, li, .desc { font-size: .82rem; }
  .btn { padding: 10px 18px; font-size: .83rem; }
  .btn-lg { padding: 13px 24px; font-size: .9rem; }
  .card-body, .package-card-body { padding: 14px; }
  .form-control { padding: 10px 14px; font-size: .87rem; }
}

/* --- Large Smartphones / Small Tablets (481px-576px) --- */
@media (min-width: 481px) and (max-width: 576px) {
  .container { padding: 0 16px; }
  h1, .section-title { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
}

/* --- Tablets (577px-768px) --- */
@media (min-width: 577px) and (max-width: 768px) {
  .container { padding: 0 20px; max-width: 720px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { flex-direction: column; }
  .split-img img { width: 100%; height: 220px; object-fit: cover; }
}

/* --- Small Laptops (769px-1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { max-width: 960px; }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .kpi-grid { grid-template-columns: repeat(4, 1fr); }
  .split-section .split-img img { height: 320px; }
}

/* --- Laptops / Desktops (1025px+) --- */
@media (min-width: 1025px) {
  .container { max-width: 1140px; }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .kpi-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Touch Device Optimization --- */
@media (pointer: coarse) {
  .btn, button, .nav-links a, .mega-link, .action-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn-sm { min-height: 38px; }
  input, select, textarea {
    min-height: 44px;
    font-size: 16px; /* Prevent iOS zoom */
  }
  .form-control { padding: 12px 14px; }
  .close-btn, .modal-close { min-width: 44px; min-height: 44px; }
}

/* --- Safe Area (Notch Devices) --- */
@supports (padding-top: env(safe-area-inset-top)) {
  .top-bar { padding-top: env(safe-area-inset-top); }
  .site-footer { padding-bottom: env(safe-area-inset-bottom); }
  .mobile-nav-overlay.active ~ .main-nav { padding-top: env(safe-area-inset-top); }
}

/* --- High DPI / Retina --- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img { image-rendering: -webkit-optimize-contrast; }
}

/* --- Landscape Smartphones --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: 1.2rem; }
  .hero-dots { bottom: 40px; }
  .stats-bar { margin-top: -10px; padding: 10px; }
}

/* --- Print --- */
@media print {
  .top-bar, .main-nav, .site-footer, .cookie-consent,
  .back-to-top, .mobile-toggle, .nav-cta, .hero-dots { display: none !important; }
  .section { padding: 10px 0; }
  .container { max-width: 100%; padding: 0; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .package-card { break-inside: avoid; border: 1px solid #ccc; }
}

/* ============================================================
   v9.3 ENHANCEMENTS — Hamburger Menu, Image Polish, Pro Layout
   ============================================================ */

/* --- Mega Menu Chevron --- */
.mega-chevron {
  font-size: .6rem;
  transition: transform .3s ease;
}

/* --- Mobile Menu Close Button --- */
.mobile-close-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  padding: 8px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-close-btn:hover,
.mobile-close-btn:active {
  background: var(--primary-light);
}

/* --- Mobile Menu Header (improved) --- */
.mobile-menu-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--primary) !important;
  background: linear-gradient(135deg, #f8f5ff, #fef0ee);
}
.mobile-menu-header > a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary) !important;
  pointer-events: none;
}

/* --- Mobile Menu Footer (CTA buttons) --- */
.nav-actions-mobile {
  display: block !important;
  border-top: 2px solid var(--border);
  background: #f8f9fa;
}
.mobile-menu-footer {
  display: flex;
  gap: 10px;
  padding: 16px;
}
.mobile-menu-footer .btn {
  flex: 1;
  justify-content: center;
  min-height: 48px;
  font-size: .9rem;
  font-weight: 600;
}

/* --- Enhanced Slide-In Animation --- */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-100%); }
}
.nav-links.open {
  animation: slideInLeft .3s cubic-bezier(.4,0,.2,1);
}
.nav-links.closing {
  animation: slideOutLeft .25s cubic-bezier(.4,0,.2,1) forwards;
}

/* --- Image Aspect Ratios (Professional Cards) --- */
.package-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.package-card:hover .package-card-img img {
  transform: scale(1.05);
}
@media (pointer: coarse) {
  .package-card:hover .package-card-img img {
    transform: none;
  }
}

.category-card {
  aspect-ratio: 4 / 3;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card {
  aspect-ratio: 16 / 10;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-img {
  aspect-ratio: 16 / 9;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-img img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* --- Trust Badges Section (Pro Grid) --- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.trust-badge i {
  font-size: 1rem;
}
@media (max-width: 576px) {
  .trust-badges {
    gap: 8px;
  }
  .trust-badge {
    padding: 8px 12px;
    font-size: .75rem;
    gap: 6px;
  }
  .trust-badge i {
    font-size: .85rem;
  }
}

/* --- Section Title Center on Mobile --- */
@media (max-width: 768px) {
  .title-box {
    text-align: center;
  }
  .section-header {
    text-align: center;
  }
}

/* --- Form Focus States (Pro) --- */
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,96,76,.15);
  outline: none;
}
.form-control:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

/* --- Consistent Card Shadows --- */
.package-card,
.feature-card,
.blog-card,
.review-card,
.category-card {
  border: 1px solid rgba(0,0,0,.04);
}

/* --- Smooth Image Load --- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-src]) {
  opacity: 1;
}

/* --- Hero Image Cover Fix --- */
.hero-slide {
  overflow: hidden;
}
.hero-slide img,
.hero-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Trust Section --- */
.trust-section-bg {
  background: #fff;
  padding: 40px 0;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-badge-item {
  text-align: center;
}
.trust-badge-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.trust-badge-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--secondary);
}
.trust-badge-sub {
  font-size: .78rem;
  color: var(--text-muted);
}
.trust-badge-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-warning { color: #f59e0b !important; }
.text-success { color: #10b981 !important; }
.text-info { color: #6366f1 !important; }
@media (max-width: 576px) {
  .trust-badges {
    gap: 16px;
  }
  .trust-badge-icon { font-size: 1.5rem; }
  .trust-badge-title { font-size: .82rem; }
  .trust-badge-sub { font-size: .7rem; }
  .trust-badge-divider { height: 24px; }
}

/* --- Enquiry Form Dark Section --- */
.enquiry-dark {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
}
.enquiry-dark .sub-title { color: #f5a623; }
.enquiry-dark .title { color: #fff; }
.enquiry-dark .enquiry-desc { color: rgba(255,255,255,.75); margin: 12px 0 24px; line-height: 1.7; }
.enquiry-dark label { color: rgba(255,255,255,.8); }
.enquiry-dark .form-control {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.enquiry-dark .form-control::placeholder { color: rgba(255,255,255,.4); }
.enquiry-dark .form-control:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,96,76,.2);
}
.enquiry-dark .btn-submit-full {
  width: 100%;
}
.split-img-first {
  order: -1;
}

/* --- Blog Grid (Homepage) --- */
.blog-grid-home {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.blog-more-btn {
  margin-top: 24px;
}

/* --- No Packages Placeholder (Homepage) --- */
.no-packages-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
}
.no-packages-placeholder p {
  color: var(--text-muted);
}

/* --- Featured Packages CTA (Homepage) --- */
.featured-cta {
  margin-top: 36px;
}

/* --- Testimonial Section (Dark BG) --- */
.testimonials-section {
  color: #fff;
}
.testimonials-section .sub-title {
  color: #fff;
}
.testimonials-section .title {
  color: #fff;
}
.testimonial-avatar-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Hero Slide BG --- */
.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Contact Page --- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
}
.contact-card-centered .contact-icon {
  margin-bottom: 16px;
}
.quick-connect-links {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.quick-connect-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  color: #222;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.quick-connect-link:hover {
  transform: translateX(4px);
}
.quick-connect-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.quick-connect-icon-whatsapp { background: #25d366; }
.quick-connect-icon-phone { background: var(--primary); }
.quick-connect-icon-email { background: #4285f4; }
.quick-connect-link-bg-wa { background: #dcf8c6; }
.quick-connect-link-bg-phone { background: var(--primary-light); }
.quick-connect-link-bg-email { background: #e8f0fe; }
.quick-connect-title {
  font-weight: 600;
  margin-bottom: 2px;
}
.quick-connect-desc {
  font-size: .85rem;
  color: var(--text-light);
}
.contact-social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.contact-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .2s;
}
.contact-social-link:hover {
  transform: scale(1.1);
}
.contact-social-fb { background: #1877f2; }
.contact-social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-social-yt { background: #ff0000; }
.contact-social-li { background: #0077b5; }
.contact-map-section {
  margin-top: -40px;
}
.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-map-wrapper iframe {
  border: 0;
  display: block;
  max-height: 400px;
}
.contact-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 14px 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1200px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 14px 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1200px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-title {
  margin-bottom: 8px;
}
.contact-form-desc {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* --- About Page Inline Style Replacements --- */
.about-hero-subtitle {
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.about-hero-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-md);
}
.about-story-text {
  color: var(--text-light);
  margin: 12px 0;
  line-height: 1.8;
}
.about-story-text-bottom {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-mission-heading {
  color: var(--primary);
  margin-bottom: 12px;
}
.about-vision-heading {
  color: var(--secondary);
  margin-bottom: 12px;
}
.about-mission-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-vision-text {
  color: var(--text-light);
  line-height: 1.8;
}
.about-cta-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}
.about-section-pt {
  padding-top: 80px;
}
.about-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-map-wrapper iframe {
  border: 0;
  max-height: 400px;
}
.about-office-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-office-grid {
  display: grid;
  gap: 16px;
}
.about-dham-badge {
  background: var(--primary);
}
.about-dham-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.about-dham-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.about-dham-card {
  cursor: default;
}
.about-dham-card .package-card-body {
  padding: 20px;
}
.about-dham-card-body {
  padding: 20px;
}
.about-hours-note {
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .about-section-pt { padding-top: 48px; }
}
@media (max-width: 576px) {
  .about-hero-btn,
  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .contact-card-centered {
    padding: 16px 10px;
  }
}

/* --- CMS Page --- */
.cms-page-hero {
  background: linear-gradient(135deg, #1a1a2e, #2d1b69);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.cms-page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
}
.cms-page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
.cms-body {
  line-height: 1.8;
  color: var(--text);
}
.cms-body h2, .cms-body h3 {
  margin-top: 1.5em;
  margin-bottom: .5em;
  color: var(--secondary);
}
.cms-body ul, .cms-body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.cms-body p {
  margin-bottom: 1em;
}
@media (max-width: 576px) {
  .cms-page-hero { padding: 40px 16px; }
  .cms-page-hero h1 { font-size: 1.5rem; }
  .cms-page-body { padding: 32px 16px; }
}

/* --- About Section (Homepage) --- */
.about-text {
  color: var(--text-light);
  margin: 12px 0 16px;
  line-height: 1.7;
}
.about-btn {
  margin-top: 16px;
}

/* --- Alert Container --- */
.alert-container {
  margin-top: 20px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #e8400c;
  color: #fff;
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 0 !important;
}

/* --- Toast Container --- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 576px) {
  .toast-container {
    right: 12px;
    left: 12px;
    top: 12px;
  }
}

/* --- Blog Card (Homepage) --- */
.blog-card-home {
  text-decoration: none;
}
.blog-card-home .blog-card-home-img {
  height: 160px;
}
.blog-card-home .blog-card-home-body {
  padding: 16px;
}
.blog-card-home .blog-card-home-title {
  font-size: .95rem;
  line-height: 1.4;
}
.blog-card-home .blog-card-home-excerpt {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 8px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- No Packages Placeholder --- */
.no-packages-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
}
.no-packages-placeholder p {
  color: var(--text-muted);
}

/* --- CTA Banner Buttons --- */
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white-outline {
  border-color: #fff;
  color: #fff;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* --- Footer Logo --- */
.footer-logo {
  height: 44px;
  margin-bottom: 12px;
  filter: brightness(2);
}

/* --- Footer Social Links --- */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* --- Ultra-Small Phone Fixes (320px and below) --- */
@media (max-width: 320px) {
  .container { padding: 0 6px; }
  .main-nav .container { height: 52px; }
  .nav-logo img { height: 32px; }
  .mobile-menu-footer { flex-direction: column; gap: 8px; }
  .mobile-menu-footer .btn { width: 100%; }
  .hero-content h1 { font-size: 1.1rem; }
  .trust-badge { font-size: .68rem; padding: 6px 8px; }
}

/* --- CTA Banner Buttons (Mobile) --- */
@media (max-width: 576px) {
  .cta-banner > .container > div {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner > .container > div .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Activity Page --- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.activity-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.activity-card-body { padding: 24px; }
.activity-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 12px;
}
.activity-card-title { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.activity-card-desc { font-size: .86rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.activity-card-location {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .78rem; color: var(--primary); font-weight: 600;
}
.activity-cta { text-align: center; margin-top: 40px; }
.activity-cta-text { color: var(--text-light); margin-bottom: 16px; }
.btn-whatsapp { background: #25d366; border-color: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; color: #fff; }
@media (max-width: 992px) {
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card-img { height: 180px; }
}

/* --- Dark Mode Variables (shared) --- */
.dark-mode {
  --bg: #0f1923;
  --card-bg: #1a2634;
  --text: #e5e7eb;
  --text-light: #9ca3af;
  --text-muted: #6b7280;
  --border: #2d3748;
  --primary-light: rgba(232,96,76,.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,.25);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.3);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.35);
}

/* --- Dark Mode Support (Toggle + System) --- */
.dark-mode,
@media (prefers-color-scheme: dark) {
  :root:not(.light-mode) {
    --bg: #0f1923;
    --card-bg: #1a2634;
    --text: #e5e7eb;
    --text-light: #9ca3af;
    --text-muted: #6b7280;
    --border: #2d3748;
    --primary-light: rgba(232,96,76,.12);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,.25);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.3);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.35);
  }
}

.dark-mode body,
@media (prefers-color-scheme: dark) {
  :root:not(.light-mode) body {
    background: var(--bg);
    color: var(--text);
  }
}

/* Dark Mode - Navigation */
.dark-mode .main-nav,
@media (prefers-color-scheme: dark) {
  :root:not(.light-mode) .main-nav {
    background: #1a2634;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
  }
}
.dark-mode .main-nav.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.dark-mode .nav-links a { color: #e5e7eb; }
.dark-mode .nav-links a:hover, .dark-mode .nav-links a.active { color: var(--primary); background: rgba(232,96,76,.1); }
.dark-mode .nav-action-btn { background: #2d3748; border-color: #3d4a5c; color: #e5e7eb; }
.dark-mode .nav-action-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.dark-mode .mobile-account-btn { background: rgba(232,96,76,.15); }
.dark-mode .mobile-toggle { background: rgba(232,96,76,.15); }

/* Dark Mode - Top Bar */
.dark-mode .top-bar { background: #0a0f16; }
.dark-mode .top-bar a { color: rgba(255,255,255,.75); }
.dark-mode .top-bar a:hover { color: var(--accent); }
.dark-mode .top-bar-right a { background: rgba(255,255,255,.08); }
.dark-mode .top-bar-right a:hover { background: var(--primary); }
.dark-mode .top-bar-badge { background: rgba(255,255,255,.06); }

/* Dark Mode - Cards */
.dark-mode .package-card, .dark-mode .feature-card, .dark-mode .process-step,
.dark-mode .enquiry-form, .dark-mode .stat-item { background: #1a2634; }
.dark-mode .package-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.dark-mode .package-card-body h3, .dark-mode .feature-card h4, .dark-mode .process-step h4 { color: #e5e7eb; }
.dark-mode .package-price { border-top-color: #2d3748; }

/* Dark Mode - Mega Menu */
.dark-mode .mega-menu { background: #1a2634; border-top-color: var(--primary); }
.dark-mode .mega-link { color: #e5e7eb; }
.dark-mode .mega-link:hover { background: rgba(232,96,76,.1); }
.dark-mode .mega-link-title { color: #e5e7eb; }
.dark-mode .mega-highlight { background: linear-gradient(135deg, rgba(232,96,76,.08), rgba(232,96,76,.04)); }

/* Dark Mode - Mobile Menu */
.dark-mode .nav-links.open { background: #1a2634; }
.dark-mode .nav-links.open li { border-bottom-color: #2d3748; }
.dark-mode .mobile-menu-header { background: rgba(232,96,76,.08); border-bottom-color: var(--primary); }
.dark-mode .mobile-menu-footer { background: #0f1923; border-top-color: var(--primary); }
.dark-mode .mobile-search-trigger { background: #1a2634; border-color: #2d3748; color: #9ca3af; }

/* Dark Mode - Search Overlay */
.dark-mode .search-overlay { background: rgba(15,25,35,.98); }
.dark-mode .search-overlay-input input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.dark-mode .search-overlay-input input:focus { border-color: var(--primary); background: rgba(255,255,255,.12); }
.dark-mode .search-result-item { background: rgba(255,255,255,.04); }
.dark-mode .search-result-item:hover { background: rgba(255,255,255,.08); }

/* Dark Mode - Forms */
.dark-mode .form-control, .dark-mode .form-select { background: #1a2634; border-color: #2d3748; color: #e5e7eb; }
.dark-mode .form-control:focus, .dark-mode .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,96,76,.15); }
.dark-mode .form-control::placeholder { color: #6b7280; }

/* Dark Mode - Hero */
.dark-mode .hero-slide .hero-overlay { background: linear-gradient(135deg, rgba(15,25,35,.9), rgba(15,25,35,.6)); }

/* Dark Mode - Stats */
.dark-mode .stats-bar { background: #1a2634; box-shadow: 0 12px 40px rgba(0,0,0,.3); }

/* Dark Mode - Sections */
.dark-mode .section-alt { background: #0f1923; }

/* Dark Mode - Footer */
.dark-mode .site-footer { background: #0a0f16; }
.dark-mode .footer-grid a { color: #9ca3af; }
.dark-mode .footer-grid a:hover { color: var(--primary); }

/* Dark Mode - Buttons */
.dark-mode .btn-outline { border-color: #3d4a5c; color: #e5e7eb; }
.dark-mode .btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Dark Mode - Category Cards */
.dark-mode .category-card-overlay h4 { color: #fff; }

/* Dark Mode - Testimonials */
.dark-mode .testimonials-section { background: linear-gradient(135deg, #0a0f16, #1a2634); }

/* Dark Mode - CTA Banner */
.dark-mode .cta-banner { background: linear-gradient(135deg, #c94535, #a83225); }

/* Dark Mode - Blog Cards */
.dark-mode .blog-card { background: #1a2634; }
.dark-mode .blog-card-title { color: #e5e7eb; }

/* Dark Mode - Tables */
.dark-mode .table { color: #e5e7eb; }
.dark-mode .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255,255,255,.03); }
.dark-mode .table td, .dark-mode .table th { border-color: #2d3748; }

/* Dark Mode - Badges & Alerts */
.dark-mode .badge { background: rgba(232,96,76,.15); color: var(--primary); }
.dark-mode .alert { background: #1a2634; border-color: #2d3748; color: #e5e7eb; }

/* Dark Mode - Scrollbar */
.dark-mode ::-webkit-scrollbar { width: 8px; height: 8px; }
.dark-mode ::-webkit-scrollbar-track { background: #0f1923; }
.dark-mode ::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 4px; }
.dark-mode ::-webkit-scrollbar-thumb:hover { background: #3d4a5c; }

/* Dark Mode - Selection */
.dark-mode ::selection { background: rgba(232,96,76,.3); color: #fff; }

/* System Dark Mode (when no toggle preference saved) */
@media (prefers-color-scheme: dark) {
  :root:not(.light-mode):not(.dark-mode) {
    --bg: #0f1923;
    --card-bg: #1a2634;
    --text: #e5e7eb;
    --text-light: #9ca3af;
    --text-muted: #6b7280;
    --border: #2d3748;
    --primary-light: rgba(232,96,76,.12);
  }
  :root:not(.light-mode):not(.dark-mode) body { background: var(--bg); color: var(--text); }
  :root:not(.light-mode):not(.dark-mode) .main-nav { background: #1a2634; }
  :root:not(.light-mode):not(.dark-mode) .nav-links a { color: #e5e7eb; }
  :root:not(.light-mode):not(.dark-mode) .top-bar { background: #0a0f16; }
  :root:not(.light-mode):not(.dark-mode) .site-footer { background: #0a0f16; }
  :root:not(.light-mode):not(.dark-mode) .package-card,
  :root:not(.light-mode):not(.dark-mode) .feature-card,
  :root:not(.light-mode):not(.dark-mode) .process-step { background: #1a2634; }
  :root:not(.light-mode):not(.dark-mode) .mega-menu { background: #1a2634; }
  :root:not(.light-mode):not(.dark-mode) .nav-links.open { background: #1a2634; }
  :root:not(.light-mode):not(.dark-mode) .form-control,
  :root:not(.light-mode):not(.dark-mode) .form-select { background: #1a2634; border-color: #2d3748; color: #e5e7eb; }
}
