/* ═══════════════════════════════════════════════════════════
   BHUTAN BLISS TOURS — MASTER STYLESHEET
   Design: Luxury Heritage — Deep indigo, burnished gold, earth
   Typography: Cormorant Garamond (display) + Jost (body)
════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --midnight: #0d1f35;
  --navy: #1a3a5c;
  --navy-mid: #2a5a8c;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-pale: #f5edd5;
  --earth: #8b6914;
  --cream: #faf8f3;
  --cream-dark: #f0ebe0;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --white: #ffffff;
  --border: rgba(26,58,92,.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --bg: var(--cream);
  --bg-soft: var(--cream-dark);
  --card-bg: var(--white);
  --nav-bg: rgba(255,255,255,.92);
  --footer-bg: var(--midnight);
}

[data-theme="dark"] {
  --bg: #111820;
  --bg-soft: #1a2535;
  --card-bg: #1e2d40;
  --text: #e8e0d0;
  --text-muted: #a0a8b4;
  --text-light: #6b7a8d;
  --border: rgba(255,255,255,.1);
  --nav-bg: rgba(13,31,53,.95);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.bg-soft { background: var(--bg-soft) !important; }

/* ── PRELOADER ──────────────────────────────────────────── */
/* preloader removed */

/* ── NAVBAR ─────────────────────────────────────────────── */
#mainNavbar {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
  transition: all var(--transition);
}
#mainNavbar.scrolled {
  padding: .55rem 0;
  box-shadow: var(--shadow-md);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
}
[data-theme="dark"] .logo-text { color: var(--gold-light); }
.logo-icon { font-size: 1.2rem; }
.logo-accent { color: var(--gold); }
.logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: .5rem .75rem !important;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
[data-theme="dark"] .nav-link { color: var(--text) !important; }
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: all var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: .75rem; right: .75rem; }
.nav-link:hover, .nav-link.active { color: var(--navy) !important; }
.dropdown-menu {
  z-index: 99999 !important;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  background: var(--card-bg);
}
.dropdown-item {
  font-size: .87rem; font-weight: 500; color: var(--text);
  padding: .55rem 1rem; border-radius: 8px;
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--gold-pale); color: var(--navy); }
.theme-toggle {
  background: transparent; border: 1.5px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 15px;
  transition: all var(--transition);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav-login {
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  color: var(--text-muted); padding: .45rem 1rem;
  border: 1.5px solid var(--border); border-radius: 50px;
  transition: all var(--transition);
}
.btn-nav-login:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav-cta {
  font-size: .85rem; font-weight: 600; letter-spacing: .5px;
  color: var(--white); background: var(--navy);
  padding: .5rem 1.25rem; border-radius: 50px;
  transition: all var(--transition);
}
.btn-nav-cta:hover { background: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.navbar-toggler {
  border: none; background: transparent; padding: .25rem;
  display: flex; flex-direction: column; gap: 5px;
}
.toggler-icon, .toggler-icon::before, .toggler-icon::after {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition); content: '';
}
[data-theme="dark"] .toggler-icon,
[data-theme="dark"] .toggler-icon::before,
[data-theme="dark"] .toggler-icon::after { background: var(--gold-light); }

/* ── HERO SECTION ───────────────────────────────────────── */
.hero-section {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,31,53,.75) 0%, rgba(13,31,53,.4) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 80px; color: var(--white);
}
.hero-eyebrow {
  font-size: .8rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
  display: inline-block;
  animation: fadeSlideDown .8s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--white); margin-bottom: 1.25rem;
}
.hero-accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 650px; margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--earth));
  color: var(--midnight); padding: .9rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,.4); color: var(--midnight); }
.btn-hero-secondary {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white); padding: .9rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.25); color: var(--white); transform: translateY(-3px); }
.hero-stats {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.7); }
.hero-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.25); }
.hero-nav {
  position: absolute; bottom: 2.5rem; left: 73%; transform: translateX(-40%);
  z-index: 3; display: flex; align-items: center; gap: 1.5rem;
}
.hero-prev, .hero-next {
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3); color: var(--white);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
}
.hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); }
.hero-dots { display: flex; gap: .5rem; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll-cue {
  position: absolute; right: 3rem; bottom: 3rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.hero-scroll-cue span { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.6); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, var(--navy), var(--midnight));
  padding: .9rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 500; flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: .75rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); display: inline-block; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--navy); margin-bottom: 1rem;
}
[data-theme="dark"] .section-title { color: var(--gold-light); }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; line-height: 1.8; }
.section-lead-center { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-bhutan-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white) !important; padding: .8rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--transition);
}
.btn-bhutan-primary:hover { background: linear-gradient(135deg, var(--gold), var(--earth)); transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--midnight) !important; }
.btn-outline-bhutan {
  border: 1.5px solid var(--navy); color: var(--navy);
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all var(--transition);
}
.btn-outline-bhutan:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
[data-theme="dark"] .btn-outline-bhutan { border-color: var(--gold); color: var(--gold); }
[data-theme="dark"] .btn-outline-bhutan:hover { background: var(--gold); color: var(--midnight); }
.btn-bhutan-sm { background: var(--navy); color: var(--white) !important; padding: .55rem 1.25rem; border-radius: 50px; font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; transition: all var(--transition); }
.btn-bhutan-sm:hover { background: var(--gold); color: var(--midnight) !important; transform: translateY(-1px); }
.btn-outline-bhutan-sm { border: 1.5px solid var(--border); color: var(--text-muted); padding: .55rem 1.25rem; border-radius: 50px; font-size: .85rem; font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; transition: all var(--transition); }
.btn-outline-bhutan-sm:hover { border-color: var(--navy); color: var(--navy); }
.btn-book-now { background: var(--gold); color: var(--midnight) !important; padding: .55rem 1.2rem; border-radius: 50px; font-size: .83rem; font-weight: 700; transition: all var(--transition); white-space: nowrap; }
.btn-book-now:hover { background: var(--navy); color: var(--white) !important; transform: translateY(-2px); }

/* ── WHY SECTION ────────────────────────────────────────── */
.why-img-stack { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; height: 420px; }
.img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 220px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
[data-theme="dark"] .img-secondary { border-color: var(--card-bg); }
.img-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--gold); color: var(--midnight);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-gold);
}
.badge-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: .8; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.why-item h5 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .3rem; color: var(--navy); }
[data-theme="dark"] .why-item h5 { color: var(--gold-light); }
.why-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── DESTINATION CARDS ──────────────────────────────────── */
.dest-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-img { position: relative; height: 230px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-card-region { position: absolute; top: 1rem; left: 1rem; background: var(--navy); color: var(--white); font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: .3rem .7rem; border-radius: 50px; }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,53,.8), transparent 60%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1.5rem; }
.dest-card:hover .dest-card-overlay { opacity: 1; }
.dest-card-btn { background: var(--gold); color: var(--midnight); padding: .55rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; gap: .4rem; }
.dest-card-body { padding: 1.4rem; }
.dest-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
[data-theme="dark"] .dest-card-title { color: var(--gold-light); }
.dest-card-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .9rem; }
.dest-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--text-muted); }
.dest-card-meta span { display: flex; align-items: center; gap: .3rem; }
.map-link { color: var(--gold) !important; display: flex; align-items: center; gap: .3rem; font-weight: 500; }
.map-link:hover { color: var(--navy) !important; }

/* ── PACKAGE CARDS ──────────────────────────────────────── */
.pkg-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative; border: 1px solid var(--border); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-featured { border-color: var(--gold); }
.pkg-badge { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: var(--gold); color: var(--midnight); font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: .3rem .8rem; border-radius: 50px; }
.pkg-img { position: relative; height: 180px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-category { position: absolute; bottom: .75rem; left: .75rem; background: rgba(13,31,53,.75); color: var(--white); font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: .25rem .65rem; border-radius: 50px; backdrop-filter: blur(6px); }
.pkg-body { padding: 1.25rem; }
.pkg-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
[data-theme="dark"] .pkg-title { color: var(--gold-light); }
.pkg-meta { display: flex; gap: 1rem; margin-bottom: .75rem; }
.pkg-meta span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.pkg-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .85rem; }
.pkg-includes { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.pkg-includes span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; }
.pkg-includes i { color: var(--gold); font-size: .75rem; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .85rem; border-top: 1px solid var(--border); }
.pkg-price .from { font-size: .7rem; color: var(--text-light); display: block; }
.pkg-price .amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
[data-theme="dark"] .pkg-price .amount { color: var(--gold-light); }
.pkg-price .per { font-size: .7rem; color: var(--text-light); }

/* ── GNH BANNER ─────────────────────────────────────────── */
.gnh-banner {
  position: relative; min-height: 550px;
  background: url('https://drive.google.com/thumbnail?id=1y3E2uSuTrlkDZhyLEYfJBWNrF7kONOio&sz=w1600') center/cover;
  display: flex; align-items: center;
}
.gnh-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,53,.9), rgba(13,31,53,.7)); }
.gnh-content { position: relative; z-index: 1; color: var(--white); max-width: 800px; margin: 0 auto; }
.gnh-quote-mark { font-family: var(--font-display); font-size: 8rem; color: var(--gold); line-height: .5; margin-bottom: .5rem; opacity: .7; }
.gnh-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.4; border: none; padding: 0; }
.gnh-cite { display: block; margin-top: 1.5rem; font-size: .9rem; color: var(--gold-light); letter-spacing: 1px; }
.gnh-pillars { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.gnh-pillar { display: flex; flex-direction: column; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); padding: 1rem 1.25rem; border-radius: var(--radius); transition: all var(--transition); }
.gnh-pillar:hover { background: rgba(201,168,76,.2); border-color: var(--gold); transform: translateY(-3px); }
.pillar-icon { font-size: 1.8rem; }
.gnh-pillar span { font-size: .75rem; font-weight: 600; letter-spacing: .5px; color: rgba(255,255,255,.8); text-transform: uppercase; }

/* ── FESTIVAL CARDS ─────────────────────────────────────── */
.fest-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.fest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fest-img { height: 200px; overflow: hidden; }
.fest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fest-card:hover .fest-img img { transform: scale(1.06); }
.fest-body { padding: 1.25rem; }
.fest-location { font-size: .75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .4rem; display: flex; align-items: center; gap: .3rem; }
.fest-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
[data-theme="dark"] .fest-title { color: var(--gold-light); }
.fest-date { font-size: .82rem; color: var(--text-muted); margin-bottom: .65rem; display: flex; align-items: center; gap: .4rem; }
.fest-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-swiper { padding-bottom: 3rem !important; }
.testi-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); height: 100%;
}
.testi-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; flex-shrink: 0; }
.testi-name { font-weight: 600; color: var(--navy); }
[data-theme="dark"] .testi-name { color: var(--gold-light); }
.testi-meta { font-size: .82rem; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--navy); }
.swiper-pagination-bullet-active { background: var(--gold); }
.swiper-button-prev, .swiper-button-next { color: var(--gold) !important; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1.3rem !important; }

/* ── HOTEL CARDS ────────────────────────────────────────── */
.hotel-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.hotel-img { position: relative; height: 200px; overflow: hidden; }
.hotel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hotel-card:hover .hotel-img img { transform: scale(1.06); }
.hotel-stars { position: absolute; bottom: .75rem; left: .75rem; color: var(--gold); font-size: .75rem; letter-spacing: 2px; }
.hotel-body { padding: 1.25rem; }
.hotel-location { font-size: .75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .3rem; display: flex; align-items: center; gap: .3rem; }
.hotel-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
[data-theme="dark"] .hotel-name { color: var(--gold-light); }
.hotel-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .85rem; }
.hotel-price .from { font-size: .7rem; color: var(--text-light); }
.hotel-price .price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
[data-theme="dark"] .hotel-price .price { color: var(--gold-light); }
.hotel-price .per { font-size: .72rem; color: var(--text-light); }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { position: relative; height: 210px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--midnight); font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px; }
.blog-body { padding: 1.4rem; }
.blog-date { font-size: .78rem; color: var(--text-light); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.blog-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; line-height: 1.3; }
[data-theme="dark"] .blog-title { color: var(--gold-light); }
.blog-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; transition: gap var(--transition); }
.blog-read-more:hover { gap: .75rem; }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-box {
  background: linear-gradient(135deg, var(--navy), var(--midnight));
  border-radius: var(--radius-xl); padding: 3rem;
  position: relative; overflow: hidden;
}
.newsletter-box::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.15), transparent 70%);
}
.newsletter-eyebrow { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--white); margin-bottom: .75rem; }
.newsletter-desc { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; }
.newsletter-input { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); color: var(--white); border-radius: 50px 0 0 50px; padding: .8rem 1.5rem; font-size: .9rem; }
.newsletter-input:focus { background: rgba(255,255,255,.15); border-color: var(--gold); box-shadow: none; color: var(--white); }
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-btn { background: var(--gold); border: none; color: var(--midnight); font-weight: 700; border-radius: 0 50px 50px 0; padding: .8rem 1.75rem; font-size: .9rem; display: flex; align-items: center; gap: .5rem; transition: all var(--transition); }
.newsletter-btn:hover { background: var(--gold-light); }
.newsletter-note { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .6rem; display: flex; align-items: center; gap: .3rem; }
.newsletter-feedback { font-size: .88rem; margin-top: .5rem; }
.newsletter-feedback.success { color: #86efac; }
.newsletter-feedback.error { color: #fca5a5; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position: relative; height: 420px;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  padding-top: 80px;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,31,53,.7), rgba(13,31,53,.5)); }
.page-hero-content { position: relative; z-index: 1; padding: 2rem 0; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.page-hero-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 1rem; }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold-light); }

/* ── DESTINATION DETAIL ─────────────────────────────────── */
.dest-detail-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.dest-detail-img { height: 300px; overflow: hidden; }
.dest-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-detail-body { padding: 2rem; }
.dest-detail-region { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.dest-detail-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
[data-theme="dark"] .dest-detail-title { color: var(--gold-light); }
.dest-detail-highlights { background: var(--bg-soft); border-radius: var(--radius); padding: 1.25rem; margin: 1.25rem 0; }
.dest-detail-highlights h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .85rem; display: flex; align-items: center; gap: .4rem; }
.highlights-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.highlight-tag { background: var(--white); border: 1px solid var(--border); color: var(--text-muted); font-size: .78rem; padding: .3rem .75rem; border-radius: 50px; transition: all var(--transition); }
.highlight-tag:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--navy); }
[data-theme="dark"] .highlight-tag { background: var(--card-bg); }
.dest-detail-meta { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.meta-item { display: flex; align-items: flex-start; gap: .75rem; }
.meta-item i { color: var(--gold); font-size: 1.1rem; margin-top: .2rem; }
.meta-item strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: .2rem; }
.meta-item span { font-size: .88rem; color: var(--text); }
.dest-detail-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── FILTER TABS ────────────────────────────────────────── */
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.gallery-filter { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.filter-tab {
  background: var(--card-bg); border: 1.5px solid var(--border);
  color: var(--text-muted); padding: .5rem 1.25rem;
  border-radius: 50px; font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── PACKAGE DETAIL CARDS ───────────────────────────────── */
.pkg-detail-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); position: relative; }
.pkg-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg-detail-img { height: 240px; overflow: hidden; position: relative; }
.pkg-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-detail-card:hover .pkg-detail-img img { transform: scale(1.05); }
.pkg-detail-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,53,.6), transparent 50%); display: flex; align-items: flex-end; padding: 1rem; }
.pkg-category-tag { background: var(--gold); color: var(--midnight); font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px; }
.pkg-detail-body { padding: 1.5rem; }
.pkg-detail-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
[data-theme="dark"] .pkg-detail-title { color: var(--gold-light); }
.pkg-detail-meta { display: flex; gap: 1.25rem; margin-bottom: .85rem; flex-wrap: wrap; }
.pkg-detail-meta span { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.pkg-detail-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.includes-section { margin-bottom: 1rem; }
.includes-section h6 { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
[data-theme="dark"] .includes-section h6 { color: var(--gold-light); }
.includes-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem; }
.includes-list li { font-size: .78rem; background: var(--bg-soft); color: var(--text-muted); padding: .25rem .65rem; border-radius: 50px; }
.itinerary-preview h6 { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.itin-day { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .4rem; font-size: .82rem; }
.day-badge { background: var(--gold); color: var(--midnight); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.pkg-detail-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.price-from { font-size: .7rem; color: var(--text-light); }
.price-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
[data-theme="dark"] .price-amount { color: var(--gold-light); }
.price-per { font-size: .7rem; color: var(--text-light); }

/* ── HOTEL DETAIL ───────────────────────────────────────── */
.hotel-detail-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.hotel-detail-img { height: 100%; min-height: 280px; position: relative; overflow: hidden; }
.hotel-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.hotel-detail-stars { position: absolute; bottom: 1rem; left: 1rem; background: rgba(13,31,53,.75); padding: .35rem .75rem; border-radius: 50px; color: var(--gold); font-size: .82rem; letter-spacing: 2px; backdrop-filter: blur(6px); }
.hotel-detail-body { padding: 2rem; }
.hotel-detail-location { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .4rem; display: flex; align-items: center; gap: .3rem; }
.hotel-detail-name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--navy); margin-bottom: .75rem; }
[data-theme="dark"] .hotel-detail-name { color: var(--gold-light); }
.hotel-facilities h6 { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.facility-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.facility-tag { background: var(--bg-soft); color: var(--text-muted); font-size: .78rem; padding: .3rem .7rem; border-radius: 50px; border: 1px solid var(--border); }
.hotel-detail-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.hotel-detail-price .from { font-size: .7rem; color: var(--text-light); }
.hotel-detail-price .price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); }
[data-theme="dark"] .hotel-detail-price .price { color: var(--gold-light); }
.hotel-detail-actions { display: flex; gap: .75rem; }

/* ── FESTIVAL DETAIL ────────────────────────────────────── */
.fest-detail-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.fest-detail-img { height: 280px; position: relative; overflow: hidden; }
.fest-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.fest-detail-location { position: absolute; bottom: 1rem; left: 1rem; background: var(--navy); color: var(--white); font-size: .78rem; font-weight: 600; padding: .35rem .85rem; border-radius: 50px; display: flex; align-items: center; gap: .3rem; }
.fest-detail-body { padding: 2rem; }
.fest-detail-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
[data-theme="dark"] .fest-detail-title { color: var(--gold-light); }
.fest-detail-date { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.fest-highlights h6 { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; display: flex; align-items: center; gap: .4rem; }

/* ── GALLERY MASONRY ────────────────────────────────────── */
.gallery-masonry {
  columns: 4; column-gap: 1rem;
}
@media (max-width: 1200px) { .gallery-masonry { columns: 3; } }
@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,53,.7), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-size: .85rem; font-weight: 600; }
.gallery-zoom { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: var(--white); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(6px); transition: background var(--transition); }
.gallery-zoom:hover { background: var(--gold); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.94); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white); width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .9rem; text-align: center; }

/* ── TRAVEL INFO ────────────────────────────────────────── */
.info-section { background: var(--card-bg); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; border: 1px solid var(--border); }
.info-section h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
[data-theme="dark"] .info-section h3 { color: var(--gold-light); }
.info-note { border-radius: var(--radius); padding: 1rem 1.25rem; margin-top: 1rem; font-size: .88rem; display: flex; align-items: flex-start; gap: .6rem; }
.info-important { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.info-green { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
[data-theme="dark"] .info-important { background: rgba(201,168,76,.1); color: var(--gold-light); border-color: var(--gold); }
[data-theme="dark"] .info-green { background: rgba(16,185,129,.1); color: #6ee7b7; border-color: #34d399; }
.seasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .75rem; }
.season-item { padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); }
.season-item h5 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy); }
[data-theme="dark"] .season-item h5 { color: var(--gold-light); }
.season-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.packing-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.pack-cat strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: .5rem; }
.pack-cat ul { list-style: none; padding: 0; }
.pack-cat ul li { font-size: .85rem; color: var(--text-muted); padding: .25rem 0; padding-left: 1rem; position: relative; }
.pack-cat ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }
.emergency-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.emergency-item { background: var(--bg-soft); border-radius: var(--radius); padding: 1rem; text-align: center; }
.emergency-item strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .3rem; }
.emergency-item span { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
[data-theme="dark"] .emergency-item span { color: var(--gold-light); }
.quick-facts { list-style: none; padding: 0; }
.quick-facts li { display: flex; align-items: flex-start; gap: .75rem; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.quick-facts li i { color: var(--gold); margin-top: .2rem; }
.quick-facts li strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.sidebar-widget { background: var(--card-bg); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.sidebar-widget h5 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; border-bottom: 2px solid var(--gold); padding-bottom: .5rem; }
[data-theme="dark"] .sidebar-widget h5 { color: var(--gold-light); }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-form-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.contact-form-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
[data-theme="dark"] .contact-form-title { color: var(--gold-light); }
.contact-form-sub { color: var(--text-muted); margin-bottom: 1.75rem; }
.contact-input { border: 1.5px solid var(--border); border-radius: var(--radius); padding: .75rem 1rem; font-size: .9rem; transition: all var(--transition); background: var(--bg); color: var(--text); }
.contact-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); background: var(--card-bg); }
.form-label { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: .4rem; }
.contact-info-card { background: linear-gradient(135deg, var(--navy), var(--midnight)); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--gold-light); margin-bottom: 1.75rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; }
.ci-icon { width: 44px; height: 44px; background: rgba(201,168,76,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.15rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: .3rem; }
.contact-info-item p { color: rgba(255,255,255,.85); font-size: .88rem; margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--gold-light); }
.contact-info-item a:hover { color: var(--white); }
.social-links-contact { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-btn-contact { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 1rem; transition: all var(--transition); }
.social-btn-contact:hover { background: var(--gold); border-color: var(--gold); color: var(--midnight); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; }
.map-card iframe { border-radius: var(--radius-lg); display: block; }
#contactFeedback.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: .75rem 1rem; font-size: .88rem; }
#contactFeedback.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; border-radius: var(--radius); padding: .75rem 1rem; font-size: .88rem; }

/* ── BLOG FULL ──────────────────────────────────────────── */
.blog-card-full { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); }
.blog-card-full:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img-full { position: relative; height: 220px; overflow: hidden; }
.blog-img-full img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card-full:hover .blog-img-full img { transform: scale(1.05); }
.blog-body-full { padding: 1.5rem; }
.blog-title-full { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: .65rem; line-height: 1.3; }
[data-theme="dark"] .blog-title-full { color: var(--gold-light); }
.blog-author { color: var(--text-light); font-size: .78rem; margin-left: .5rem; }
.blog-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .85rem; }
.blog-tag { font-size: .75rem; color: var(--gold); background: var(--gold-pale); padding: .2rem .6rem; border-radius: 50px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--midnight); margin-top: 0; }
.footer-top { padding: 5rem 0 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); display: block; margin-bottom: 1rem; }
.footer-about { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 1rem; transition: all var(--transition); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--midnight); }
.footer-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: .65rem; display: flex; align-items: flex-start; gap: .6rem; line-height: 1.5; }
.footer-contact i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-map { border-radius: var(--radius); overflow: hidden; margin-top: 1rem; border: 1px solid rgba(255,255,255,.1); }
.footer-map iframe { border-radius: var(--radius); display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; margin: 0; }
.cert-badge { display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .75rem; padding: .3rem .75rem; border-radius: 50px; margin-left: .5rem; }
.cert-badge i { color: var(--gold); }

/* ── FLOATING BUTTONS ───────────────────────────────────── */
.floating-whatsapp, .floating-chatbot {
  position: fixed; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: none; text-decoration: none;
}
/* Stack: chatbot=bottom 1.5rem, whatsapp=5rem above, scroll=9rem above */
.floating-chatbot  { bottom: 1.5rem;  background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); }
.floating-chatbot:hover  { background: linear-gradient(135deg, var(--gold), var(--earth)); transform: scale(1.1); }
.floating-whatsapp { bottom: 7rem;  background: #25d366; color: var(--white); }
.floating-whatsapp:hover { background: #128c7e; transform: scale(1.1); }
.float-tooltip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: var(--midnight); color: var(--white); font-size: .78rem;
  font-weight: 500; padding: .4rem .85rem; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.floating-whatsapp:hover .float-tooltip, .floating-chatbot:hover .float-tooltip { opacity: 1; }
.scroll-top-btn {
  position: fixed; right: 1.5rem; bottom: 12.5rem; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card-bg); border: 1.5px solid var(--border);
  color: var(--text); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  opacity: 0; visibility: hidden;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-3px); }

/* ── CHATBOT ────────────────────────────────────────────── */
.chatbot-widget {
  position: fixed; right: 1.5rem; bottom: 5rem;
  width: 380px; max-height: 560px; z-index: 1000;
  background: var(--card-bg); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.95);
  transition: all var(--transition); overflow: hidden;
  border: 1px solid var(--border);
}
.chatbot-widget.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chatbot-header { background: linear-gradient(135deg, var(--navy), var(--midnight)); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.chatbot-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--midnight); font-size: 1.2rem; }
.chatbot-info { flex: 1; }
.chatbot-name { color: var(--white); font-weight: 600; font-size: .95rem; }
.chatbot-status { font-size: .72rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .3rem; }
.chatbot-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; }
.chatbot-close-btn { background: rgba(255,255,255,.1); border: none; color: rgba(255,255,255,.7); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.chatbot-close-btn:hover { background: rgba(255,255,255,.2); color: var(--white); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .85rem; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.msg-bubble { padding: .75rem 1rem; border-radius: 18px; font-size: .88rem; line-height: 1.6; }
.bot .msg-bubble { background: var(--bg-soft); color: var(--text); border-bottom-left-radius: 4px; }
.user .msg-bubble { background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.chatbot-suggestions { padding: .5rem 1.25rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.suggest-btn { background: var(--bg-soft); border: 1px solid var(--border); color: var(--text); font-size: .75rem; padding: .35rem .75rem; border-radius: 50px; cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.suggest-btn:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--navy); }
.chatbot-input-row { padding: 1rem 1.25rem; border-top: 1px solid var(--border); display: flex; gap: .6rem; align-items: center; }
.chatbot-input { flex: 1; border: 1.5px solid var(--border); border-radius: 50px; padding: .6rem 1.1rem; font-size: .88rem; background: var(--bg); color: var(--text); outline: none; transition: border-color var(--transition); }
.chatbot-input:focus { border-color: var(--gold); }
.chatbot-send { background: var(--navy); border: none; color: var(--white); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background var(--transition); flex-shrink: 0; }
.chatbot-send:hover { background: var(--gold); color: var(--midnight); }
.chat-typing { display: flex; align-items: center; gap: .3rem; padding: .6rem .85rem; background: var(--bg-soft); border-radius: 18px; align-self: flex-start; border-bottom-left-radius: 4px; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: typingBounce 1.2s ease infinite; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce { 0%, 100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-5px); opacity: 1; } }

/* ── ADMIN BADGE ────────────────────────────────────────── */
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .navbar-collapse { background: var(--nav-bg); border-top: 1px solid var(--border); padding: 1rem; margin-top: .5rem; border-radius: 0 0 var(--radius) var(--radius); }
  .hero-stats { gap: 1rem; }
  .hero-stat-div { height: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .img-badge { display: none; }
  .chatbot-widget { width: 340px; right: 1rem; }
}
@media (max-width: 767.98px) {
  .hero-section { height: 100svh; }
  .hero-title { font-size: 2.2rem; }
  .gnh-pillars { gap: .6rem; }
  .gnh-pillar { padding: .65rem .85rem; }
  .why-img-stack { padding: 0; }
  .img-secondary { display: none; }
  .seasons-grid { grid-template-columns: 1fr; }
  .hero-scroll-cue { display: none; }
  .floating-whatsapp { bottom: 5.5rem; }
  .chatbot-widget { width: calc(100vw - 2rem); right: 1rem; bottom: 5.5rem; }
  .scroll-top-btn { display: none; }
  .footer-certifications { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .5rem; }
}
@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; gap: .75rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .pkg-detail-footer { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hotel-detail-footer { flex-direction: column; align-items: flex-start; }
  .newsletter-box { padding: 2rem 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
}

/* ══════════════════════════════════════════
   TOP HEADER BAR
══════════════════════════════════════════ */
.top-header-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1031;
  background: var(--midnight);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.top-header-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.8rem;
}
.top-header-brand i { font-size: 0.85rem; }
.top-header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.top-header-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-header-link:hover { color: var(--gold); }
.top-header-link i { font-size: 0.75rem; }
.top-header-sep { color: rgba(255,255,255,0.3); }
.top-header-right { white-space: nowrap; }
.top-header-admin {
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  transition: all 0.2s;
}
.top-header-admin:hover {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

/* Push navbar down by height of top bar */
#mainNavbar { top: 38px !important; }
/* Push main content down for both bars */
body { padding-top: calc(38px + 70px) !important; }

/* Hide top bar on mobile (save space) */
@media (max-width: 768px) {
  .top-header-bar { display: none; }
  #mainNavbar { top: 0 !important; }
  body { padding-top: 70px !important; }
}
/* On tablet show only icon+admin, hide company name and phone */
@media (min-width: 769px) and (max-width: 991px) {
  .top-header-brand { display: none; }
  .top-header-contact { font-size: 0.72rem; }
}

/* ══════════════════════════════════════════
   BRAND COMPANY NAME UNDER LOGO
══════════════════════════════════════════ */
.navbar-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}
.brand-company-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--font-body, 'Jost', sans-serif);
  line-height: 1;
}
.scrolled .brand-company-name { color: var(--gold); }

/* ══════════════════════════════════════════
   NAVBAR - NO WRAP FOR TOUR PACKAGES
══════════════════════════════════════════ */
.navbar-nav .nav-link { white-space: nowrap !important; }
.navbar-nav { flex-wrap: nowrap; }

/* Reduce navbar gap on medium screens */
@media (min-width: 992px) and (max-width: 1280px) {
  .navbar-nav { gap: 0 !important; }
  .navbar-nav .nav-link { padding-left: 0.5rem !important; padding-right: 0.5rem !important; font-size: 0.82rem; }
}

/* ══════════════════════════════════════════
   DROPDOWN FIX
══════════════════════════════════════════ */
.dropdown-menu {
  margin-top: 0 !important;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 99999 !important;
}
