/* =====================================================
   NORTHEAST TOUR PACKAGES — style.css
   northeasttourpackages.in

   A premium travel magazine aesthetic inspired by the
   misty mountains, lush forests, and golden silks of
   Northeast India.
   ===================================================== */

/* ==========================================================
   1. CUSTOM PROPERTIES
   ========================================================== */
:root {
  /* Northeast India palette */
  --green-dark: #0f2b1d;
  --green: #1a5c38;
  --green-light: #2d8a55;
  --gold: #d4a853;
  --gold-light: #e8d5a3;
  --gold-dark: #b8923a;
  --mist: #e8f0ec;
  --cloud: #f5f8f6;
  --blue-deep: #1a3a5c;
  --blue-sky: #4a9aca;
  --earth: #8b6b4a;
  --sunset: #e87040;
  --white: #ffffff;
  --text: #1a2a1f;
  --text-light: #4a5a50;
  --text-muted: #8a9a90;
  --border: #dce5df;
  --bg-alt: #f0f5f2;

  /* Legacy aliases for inline styles in HTML */
  --cream: var(--mist);
  --cream-dark: var(--border);
  --surface: var(--bg-alt);

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 43, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 43, 29, 0.1);
  --shadow-lg: 0 20px 48px rgba(15, 43, 29, 0.14);
  --shadow-xl: 0 32px 64px rgba(15, 43, 29, 0.18);
  --shadow-gold: 0 8px 28px rgba(212, 168, 83, 0.3);
  --shadow-card-hover: 0 16px 40px rgba(15, 43, 29, 0.16);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 100px;

  /* Transitions */
  --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1320px;
  --header-h: 72px;

  /* Reading progress (set via JS) */
  --reading-progress: 0%;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: rgba(212, 168, 83, 0.25);
  color: var(--green-dark);
}


/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

p {
  line-height: 1.8;
}

/* Gradient text for special headings */
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ==========================================================
   4. LAYOUT
   ========================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--full {
  max-width: 100%;
  padding: 0 40px;
}


/* ==========================================================
   5. READING PROGRESS BAR
   ========================================================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--reading-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--sunset) 100%);
  z-index: 1100;
  transition: width 0.1s linear;
}


/* ==========================================================
   6. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

/* Gold primary */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--green-dark);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.btn-gold:active {
  transform: translateY(0) scale(0.99);
}

/* Green secondary */
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 92, 56, 0.2);
}

.btn-green:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(26, 92, 56, 0.3);
}

/* Outline variants */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
  border-radius: var(--r-md);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}


/* ==========================================================
   7. SECTIONS
   ========================================================== */
.section {
  padding: 72px 0;
  position: relative;
}

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

/* Subtle decorative pattern on alternating sections */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45, 138, 85, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.section-dark {
  background: var(--green-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--white);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-label::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-header.center .section-label::before,
.section-header.center .section-label::after {
  width: 36px;
}


/* ==========================================================
   8. ANNOUNCEMENT BAR
   ========================================================== */
.annbar {
  background: linear-gradient(90deg, var(--green-dark) 0%, #0a1f14 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.annbar strong {
  color: var(--gold);
}


/* ==========================================================
   9. HEADER / NAVIGATION
   ========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(220, 229, 223, 0.5);
  transition: var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(15, 43, 29, 0.1);
  border-bottom-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
  transition: var(--ease);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 43, 29, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
  opacity: 0.85;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--ease);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}

.hamburger:hover {
  background: var(--mist);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--ease);
}


/* ==========================================================
   10. MOBILE NAVIGATION
   ========================================================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #071a10 100%);
  z-index: 1010;
  padding: 90px 36px 40px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

/* Decorative mountain silhouette at bottom */
.mobile-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(212, 168, 83, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
  transform: rotate(90deg);
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--ease);
  display: block;
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 12px;
}


/* ==========================================================
   11. HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(45, 138, 85, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(26, 58, 92, 0.2) 0%, transparent 50%),
    linear-gradient(155deg, #061410 0%, #0f2b1d 30%, #1a5c38 70%, #0f2b1d 100%);
  overflow: hidden;
}

/* Subtle dot pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(212, 168, 83, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 0;
}

/* Warm glow accent */
.hero::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 60%);
  z-index: 0;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  color: var(--white);
  max-width: 740px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-italic);
  font-weight: 600;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.12rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.7s 0.26s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.34s ease both;
}

.hero-stat {
  padding: 0 30px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}

.hero-stat-lbl {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-stat-div {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bobble 2.8s ease-in-out infinite;
}

.hero-scroll-hint::before {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}


/* ==========================================================
   12. QUICK SEARCH BAR
   ========================================================== */
.search-wrap {
  margin-top: -56px;
  position: relative;
  z-index: 10;
}

.search-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 34px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(220, 229, 223, 0.5);
}

.search-card h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.sf label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.sf select,
.sf input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cloud);
  outline: none;
  transition: var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.sf select:focus,
.sf input:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 92, 56, 0.08);
}


/* ==========================================================
   13. USP STRIP
   ========================================================== */
.usp-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.usp-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 168, 83, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--ease);
}

.usp-item:hover .usp-icon {
  background: rgba(212, 168, 83, 0.25);
  transform: scale(1.08);
}

.usp-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.usp-text span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
}


/* ==========================================================
   14. PACKAGE CARDS
   ========================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease-slow);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.pkg-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pkg-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--green-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.3);
}

.pkg-tag.hot {
  background: linear-gradient(135deg, var(--sunset) 0%, #d05a30 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(232, 112, 64, 0.3);
}

.pkg-dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
  background: rgba(15, 43, 29, 0.75);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}

.pkg-body {
  padding: 18px 20px 14px;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.rating-txt {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.pkg-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.pkg-tag-sm {
  font-size: 0.69rem;
  background: var(--mist);
  color: var(--green);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--ease);
}

.pkg-tag-sm:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.pkg-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--cloud);
}

.pkg-footer .affiliate-links {
  margin-top: 0;
}

.pkg-price-lbl {
  font-size: 0.66rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pkg-price-val {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.pkg-price-val small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}

.pkg-price-old {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-decoration: line-through;
}


/* ==========================================================
   15. DESTINATIONS GRID
   ========================================================== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.dest-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 200px;
}

.dest-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  min-height: 420px;
}

.dest-card:nth-child(n+2) {
  min-height: 200px;
}

.dest-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover .dest-bg {
  transform: scale(1.05);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 43, 29, 0.88) 0%, rgba(15, 43, 29, 0.08) 60%);
  transition: var(--ease);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(15, 43, 29, 0.95) 0%, rgba(15, 43, 29, 0.25) 60%);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
}

.dest-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-card:first-child .dest-name {
  font-size: 1.65rem;
}

.dest-pkgs {
  font-size: 0.74rem;
  color: var(--gold-light);
}

.dest-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--ease);
}

.dest-card:hover .dest-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Destination background gradients */
.dest-meghalaya { background: linear-gradient(155deg, #1a5c38, #2d8a55); }
.dest-arunachal { background: linear-gradient(155deg, #1a3a5c, #2d5a8a); }
.dest-assam { background: linear-gradient(155deg, #5c3a1a, #8b6b4a); }
.dest-sikkim { background: linear-gradient(155deg, #2d3a5c, #4a6a9a); }
.dest-nagaland { background: linear-gradient(155deg, #5c1a2d, #8a2d4a); }
.dest-manipur { background: linear-gradient(155deg, #1a4a5c, #2d7a8a); }
.dest-mizoram { background: linear-gradient(155deg, #2d1a5c, #4a2d8a); }
.dest-tripura { background: linear-gradient(155deg, #1a3a28, #2d6a4a); }


/* ==========================================================
   16. PROCESS / HOW IT WORKS
   ========================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 13%;
  right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green-light), var(--gold));
  z-index: 0;
  opacity: 0.5;
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.proc-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--cloud);
  box-shadow: var(--shadow-gold);
  transition: var(--ease);
}

.proc-step:hover .proc-num {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.4);
}

.proc-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.proc-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* ==========================================================
   17. TESTIMONIALS
   ========================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--ease);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Decorative quote mark */
.testi-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 18px;
  left: 20px;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-italic);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
}

.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-dark);
}

.testi-loc {
  font-size: 0.74rem;
  color: var(--text-muted);
}


/* ==========================================================
   18. FAQ ACCORDION
   ========================================================== */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--ease);
}

.faq-q:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--mist);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
}


/* ==========================================================
   19. CTA BANNER
   ========================================================== */
.cta-banner {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 138, 85, 0.3), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 83, 0.1), transparent 60%),
    linear-gradient(140deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 65%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 65%);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* ==========================================================
   20. FOOTER
   ========================================================== */
.footer {
  background: linear-gradient(175deg, var(--green-dark) 0%, #061410 100%);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle leaf pattern overlay */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 168, 83, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.footer-logo-main {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--ease);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.footer-col h5,
.footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: var(--ease);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.86rem;
}

.footer-contact-row .ico {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}


/* ==========================================================
   21. WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: var(--ease);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}


/* ==========================================================
   22. PAGE HERO (Inner Pages)
   ========================================================== */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(45, 138, 85, 0.25), transparent 60%),
    linear-gradient(140deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 76px 0 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle misty veil */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: var(--gold-light);
  transition: var(--ease);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255,255,255,0.2);
}


/* ==========================================================
   23. FILTER TABS
   ========================================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.ft-btn {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.ft-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--mist);
}

.ft-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 92, 56, 0.2);
}


/* ==========================================================
   24. CONTACT PAGE
   ========================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--green-dark) 0%, #0a1f14 100%);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent 65%);
  pointer-events: none;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.cinfo-ico {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 83, 0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.cinfo-lbl {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 3px;
}

.cinfo-val {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 42px 38px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-card h3 {
  margin-bottom: 26px;
}

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

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.fg label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
}

.fg input,
.fg select,
.fg textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cloud);
  outline: none;
  transition: var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 92, 56, 0.08);
}

.fg textarea {
  resize: vertical;
  min-height: 120px;
}


/* ==========================================================
   25. BLOG GRID & CARDS
   ========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(4, 1fr); }
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--ease-slow);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.blog-card-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay at bottom of card image */
.blog-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(15, 43, 29, 0.12), transparent);
  pointer-events: none;
}

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

.blog-card-cat {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
  padding: 3px 10px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--r-pill);
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card-title a:hover {
  color: var(--green);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-card-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Featured article (large hero-style card) */
.featured-article {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--ease);
}

.featured-article:hover {
  box-shadow: var(--shadow-lg);
}


/* ==========================================================
   26. BLOG ARTICLE LAYOUT
   ========================================================== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 22px;
  transition: var(--ease);
}

.sidebar-widget:hover {
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mist);
}


/* ==========================================================
   27. ARTICLE CONTENT (Blog Posts) — Magazine-Quality Typography
   ========================================================== */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.12rem;
  line-height: 2.05;
  color: var(--text);
  letter-spacing: 0.01em;
  word-spacing: 0.02em;
}

/* Drop cap on first paragraph */
.article-content > p:first-of-type::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
}

.article-content h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin: 3rem 0 1.2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mist);
  line-height: 1.35;
}

.article-content h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.4;
}

.article-content h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 2rem 0 0.8rem;
}

.article-content p {
  margin-bottom: 1.6rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0 2rem 1.8rem;
}

.article-content li {
  margin-bottom: 0.9rem;
  line-height: 1.95;
  padding-left: 4px;
}

.article-content ul li::marker {
  color: var(--gold);
}

.article-content ol li::marker {
  color: var(--green);
  font-weight: 600;
}

.article-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(26, 92, 56, 0.3);
  text-underline-offset: 3px;
  transition: var(--ease);
}

.article-content a:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--gold);
}

/* --- Images --- */
.article-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  display: block;
}
@media (max-width: 768px) {
  .article-content img { height: 240px; }
}
@media (max-width: 480px) {
  .article-content img { height: 180px; }
}

/* --- Tables --- */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin: 2rem 0 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.article-content thead tr,
.article-content tr:first-child:has(th) {
  background: var(--green-dark);
}
.article-content th {
  background: var(--green-dark);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.article-content td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.article-content tr:nth-child(even) td {
  background: var(--cloud);
}
.article-content tr:hover td {
  background: var(--mist);
}
.article-content .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.article-content .table-wrap table {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

/* --- Blockquote --- */
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, rgba(232, 240, 236, 0.5) 100%);
  margin: 2.5rem 0;
  padding: 28px 32px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-italic);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.8;
  position: relative;
}
.article-content blockquote::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -5px;
  left: 12px;
  line-height: 1;
}

/* --- Tip / Pro Tip Boxes --- */
.article-content .tip-box {
  background: linear-gradient(135deg, rgba(26, 92, 56, 0.06), rgba(212, 168, 83, 0.06));
  border: 1px solid rgba(26, 92, 56, 0.15);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.8;
}
.article-content .tip-box strong {
  color: var(--green);
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Warning / Important Boxes --- */
.article-content .warning-box {
  background: rgba(232, 112, 64, 0.06);
  border: 1px solid rgba(232, 112, 64, 0.15);
  border-left: 4px solid var(--sunset);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.8;
}
.article-content .warning-box strong {
  color: var(--sunset);
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Key Takeaway Box --- */
.article-content .takeaway-box {
  background: linear-gradient(135deg, var(--green-dark), #1a4a3a);
  color: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 2.5rem 0;
}
.article-content .takeaway-box strong {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-content .takeaway-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
}
.article-content .takeaway-box p:last-child { margin-bottom: 0; }

/* --- Related Articles Grid --- */
.related-articles {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--border);
}
.related-articles h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.related-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.related-card-body {
  padding: 16px;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--green-dark);
  line-height: 1.4;
  margin-bottom: 6px;
}
.related-card-title a { color: inherit; text-decoration: none; }
.related-card-title a:hover { color: var(--gold); }
.related-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Dark mode for new components */
[data-theme="dark"] .article-content table { box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
[data-theme="dark"] .article-content th { background: #1a3a2e; }
[data-theme="dark"] .article-content td { border-color: #1e3528; }
[data-theme="dark"] .article-content tr:nth-child(even) td { background: #0a1410; }
[data-theme="dark"] .article-content tr:hover td { background: #12241a; }
[data-theme="dark"] .article-content .tip-box { background: rgba(26, 92, 56, 0.1); border-color: rgba(26, 92, 56, 0.2); }
[data-theme="dark"] .article-content .warning-box { background: rgba(232, 112, 64, 0.08); border-color: rgba(232, 112, 64, 0.15); }
[data-theme="dark"] .article-content .takeaway-box { background: linear-gradient(135deg, #0a1a14, #1a3a2e); }
[data-theme="dark"] .related-card { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .related-card-title { color: #e0e8e2; }
[data-theme="dark"] .article-content > p:first-of-type::first-letter { color: var(--gold); }

/* Content block (used in policy / disclosure pages) */
.content-block {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.content-block h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 2rem 0 0.75rem;
}

.content-block h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin: 1.5rem 0 0.6rem;
}

.content-block p {
  margin-bottom: 1.1rem;
}

.content-block ul,
.content-block ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
}

.content-block li {
  margin-bottom: 0.4rem;
}

.content-block a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(26, 92, 56, 0.3);
  text-underline-offset: 2px;
}

.content-block a:hover {
  color: var(--gold-dark);
}


/* ==========================================================
   28. TABLE OF CONTENTS
   ========================================================== */
.toc {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin: 1.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative gold top accent */
.toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.toc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.toc li {
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.toc a {
  color: var(--text);
  text-decoration: none;
  transition: var(--ease);
}

.toc a:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}


/* ==========================================================
   29. INLINE CTA (In-article CTAs)
   ========================================================== */
.inline-cta {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 138, 85, 0.2), transparent 60%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.inline-cta::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent 65%);
  pointer-events: none;
}

.inline-cta h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.inline-cta p {
  font-size: 0.9rem;
  opacity: 0.82;
  margin-bottom: 18px;
  color: var(--white);
}

.inline-cta .btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
}


/* ==========================================================
   30. AFFILIATE DISCLOSURE BANNER
   ========================================================== */
.aff-disclosure {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.aff-disclosure a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ==========================================================
   31. AUTHOR BOX
   ========================================================== */
.author-box {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 22px;
  margin: 2.5rem 0;
  border: 1px solid var(--border);
  transition: var(--ease);
}

.author-box:hover {
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  font-family: var(--font-head);
}

.author-name {
  font-weight: 700;
  color: var(--green-dark);
}

.author-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.6;
}


/* ==========================================================
   32. RELATED POSTS
   ========================================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 1rem;
}


/* ==========================================================
   33. AFFILIATE LINK BUTTONS
   ========================================================== */
.affiliate-links {
  width: 100%;
}

.aff-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.aff-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.aff-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: var(--r-sm);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.aff-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.aff-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.aff-btn:hover::after {
  opacity: 1;
}

.aff-makemytrip { background: #eb5b2d; color: #fff; }
.aff-booking { background: #003580; color: #fff; }
.aff-tripadvisor { background: #34e0a1; color: #1a1a1a; }
.aff-goibibo { background: #ec5b24; color: #fff; }
.aff-agoda { background: #5392f9; color: #fff; }
.aff-klook { background: #ff5722; color: #fff; }
.aff-skyscanner { background: #0770e3; color: #fff; }


/* ==========================================================
   34. AD CONTAINERS (CLS-safe)
   ========================================================== */
.ad-container {
  min-height: 90px;
  text-align: center;
  overflow: hidden;
  margin: 1.5rem auto;
  max-width: 100%;
  background: var(--cloud);
  border-radius: var(--r-sm);
}

.ad-container--leaderboard {
  max-width: 728px;
  min-height: 90px;
}

.ad-container--rectangle {
  max-width: 336px;
  min-height: 280px;
}

.ad-container--infeed {
  min-height: 100px;
}


/* ==========================================================
   35. SUBSCRIBE / NEWSLETTER LAYOUT
   ========================================================== */
.subscribe-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}

/* Newsletter inline form */
#newsletterForm {
  display: flex;
  gap: 10px;
}

#newsletterForm input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--white);
  outline: none;
  transition: var(--ease);
}

#newsletterForm input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}


/* ==========================================================
   36. EXIT-INTENT POPUP
   ========================================================== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 43, 29, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.exit-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 460px;
  width: 90%;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(15, 43, 29, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.exit-popup-overlay.active .exit-popup {
  transform: scale(1) translateY(0);
}

/* Decorative top bar */
.exit-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.exit-popup-close:hover {
  background: var(--mist);
  color: var(--text);
}

.exit-popup h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.exit-popup p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.exit-popup input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--ease);
}

.exit-popup input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.exit-popup .btn {
  width: 100%;
  justify-content: center;
}

.exit-popup-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
}


/* ==========================================================
   37. SCROLL REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* ==========================================================
   38. KEYFRAME ANIMATIONS
   ========================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bobble {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* ==========================================================
   39. STATS / COUNTERS
   ========================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}


/* ==========================================================
   40. BUDGET TABLE (Blog-specific)
   ========================================================== */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.92rem;
  border-radius: var(--r-md);
  overflow: hidden;
}

.budget-table th,
.budget-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.budget-table th {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.budget-table tr:nth-child(even) td {
  background: var(--cloud);
}

.budget-table td:first-child {
  font-weight: 600;
  color: var(--green-dark);
}

.budget-table .col-budget { color: var(--green-light); }
.budget-table .col-mid { color: var(--gold-dark); }
.budget-table .col-luxury { color: var(--sunset); }

.sample-budget-card {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}


/* ==========================================================
   41. RESPONSIVE — 1024px (Tablet Landscape)
   ========================================================== */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dest-card:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .process-grid::before {
    display: none;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}


/* ==========================================================
   42. RESPONSIVE — 768px (Tablet Portrait)
   ========================================================== */
@media (max-width: 768px) {
  :root {
    --container: 100%;
    --header-h: 64px;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mega-menu {
    display: none;
  }

  .ad-container--leaderboard {
    max-width: 300px;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .search-wrap {
    margin-top: 0;
  }

  .packages-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .hero-stats {
    gap: 0;
  }

  .hero-stat {
    padding: 0 18px;
  }

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

  .subscribe-layout {
    grid-template-columns: 1fr;
  }

  #newsletterForm {
    flex-direction: column;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-article {
    display: block !important;
  }

  .featured-article > div:first-child {
    min-height: 220px;
  }

  .budget-table {
    font-size: 0.78rem;
  }

  .budget-table th,
  .budget-table td {
    padding: 8px 10px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .cta-banner {
    padding: 64px 0;
  }
}


/* ==========================================================
   43. RESPONSIVE — 480px (Mobile)
   ========================================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat {
    padding: 0;
    text-align: center;
  }

  .hero-stat-div {
    display: none;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .section-header {
    margin-bottom: 36px;
  }

  .section-label::before,
  .section-label::after {
    width: 16px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .testi-card {
    padding: 20px;
  }

  .exit-popup {
    padding: 28px 20px;
    width: 95%;
  }

  .search-card {
    padding: 20px;
  }

  .inline-cta {
    padding: 24px 20px;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================
   44. RESPONSIVE — 1200px+ (Large Screens)
   ========================================================== */
@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }

  .packages-grid {
    gap: 28px;
  }

  .footer-grid {
    gap: 56px;
  }
}


/* ==========================================================
   45. PRINT STYLES
   ========================================================== */
@media print {
  .header,
  .footer,
  .whatsapp-float,
  .exit-popup-overlay,
  .mobile-nav,
  .annbar,
  .cta-banner,
  .inline-cta,
  .ad-container {
    display: none !important;
  }

  .article-content {
    max-width: 100%;
    font-size: 12pt;
  }

  .section {
    padding: 20px 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}


/* ==========================================================
   46. ACCESSIBILITY & REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--green-dark);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}


/* ==========================================================
   47. UTILITY CLASSES
   ========================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Image lazy load fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}


/* ==========================================================
   SEARCH OVERLAY
   ========================================================== */
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  padding: 6px;
  border-radius: 8px;
  transition: var(--ease);
  display: flex;
  align-items: center;
}
.search-toggle:hover { color: var(--gold); background: rgba(212,168,83,0.08); }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 43, 29, 0.5);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.search-overlay.active { opacity: 1; pointer-events: auto; }

.search-box {
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 620px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  overflow: hidden;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.search-input-wrap svg { flex-shrink: 0; color: var(--text-muted); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.15rem;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
}
.search-input::placeholder { color: var(--text-muted); }
.search-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}
.search-close:hover { color: var(--text); }

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0;
}
.search-results:empty::after {
  content: 'Type to search articles...';
  display: block;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.search-result-item:hover { background: var(--cloud); }
.search-result-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.search-result-text { flex: 1; }
.search-result-title { font-weight: 600; color: var(--green-dark); font-size: 0.92rem; }
.search-result-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.search-no-results {
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* ==========================================================
   MEGA MENU DROPDOWN
   ========================================================== */
.nav-links li { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 520px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}

.nav-links li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.mega-menu-item:hover { background: var(--cloud); }
.mega-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.mega-menu-text { font-weight: 600; font-size: 0.85rem; color: var(--green-dark); line-height: 1.3; }
.mega-menu-text span { display: block; font-weight: 400; font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }

.mega-menu-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}
/* Simple dropdown for Destinations */
.simple-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}
.simple-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}
.nav-links li:hover .simple-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.simple-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}
.simple-dropdown a:hover { background: var(--cloud); color: var(--green); }
.simple-dropdown a::after { display: none; }
.simple-dropdown .dd-icon { font-size: 1rem; width: 24px; text-align: center; }

[data-theme="dark"] .simple-dropdown { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .simple-dropdown::before { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .simple-dropdown a { color: #a8b8ad; }
[data-theme="dark"] .simple-dropdown a:hover { background: #12241a; color: var(--gold); }

/* Nav arrow indicator for dropdowns */
.has-dropdown > a::before {
  content: '';
  display: none;
}
.has-dropdown > a .nav-arrow {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 3px;
  transition: transform 0.2s;
}
.has-dropdown:hover > a .nav-arrow {
  transform: rotate(180deg);
}

.mega-menu-footer a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ==========================================================
   STICKY READ NEXT BAR
   ========================================================== */
.read-next-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 14px 0;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.read-next-bar.visible { transform: translateY(0); }
.read-next-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.read-next-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.read-next-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.read-next-title a { color: #fff; text-decoration: none; }
.read-next-title a:hover { color: var(--gold); }
.read-next-btn { flex-shrink: 0; }
.read-next-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.read-next-close:hover { color: #fff; }


/* ==========================================================
   SCROLL INDICATOR (Hero)
   ========================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator-text {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.scroll-indicator-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ==========================================================
   FLOATING TOC SIDEBAR (Blog Articles)
   ========================================================== */
.floating-toc {
  position: fixed;
  top: 100px;
  left: max(16px, calc((100vw - var(--container)) / 2 - 200px));
  width: 180px;
  z-index: 50;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.floating-toc.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.floating-toc-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 10px;
}
.floating-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--border);
}
.floating-toc li {
  padding: 4px 0 4px 14px;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: border-color 0.2s;
}
.floating-toc li.active {
  border-left-color: var(--gold);
}
.floating-toc a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
}
.floating-toc li.active a { color: var(--green-dark); font-weight: 600; }
.floating-toc a:hover { color: var(--green); }

@media (max-width: 1400px) {
  .floating-toc { display: none; }
}


/* ==========================================================
   READING TIME REMAINING
   ========================================================== */
.time-remaining {
  position: fixed;
  top: 80px;
  right: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  z-index: 50;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.time-remaining.visible {
  opacity: 1;
  transform: translateY(0);
}
.time-remaining-num { color: var(--green-dark); font-family: var(--font-head); }

@media (max-width: 1200px) {
  .time-remaining { display: none; }
}


/* Dark mode for new components */
[data-theme="dark"] .search-overlay { background: rgba(8,15,11,0.7); }
[data-theme="dark"] .search-box { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .search-input-wrap { border-color: #1e3528; }
[data-theme="dark"] .search-input { color: #e0e8e2; }
[data-theme="dark"] .search-result-item:hover { background: #12241a; }
[data-theme="dark"] .search-result-title { color: #e0e8e2; }
[data-theme="dark"] .search-result-icon { background: #1a3a2e; }
[data-theme="dark"] .mega-menu { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .mega-menu::before { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .mega-menu-item:hover { background: #12241a; }
[data-theme="dark"] .mega-menu-text { color: #e0e8e2; }
[data-theme="dark"] .read-next-bar { background: #050a07; }
[data-theme="dark"] .floating-toc ol { border-color: #1e3528; }
[data-theme="dark"] .floating-toc li.active a { color: #e0e8e2; }
[data-theme="dark"] .time-remaining { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .time-remaining-num { color: #e0e8e2; }


/* ==========================================================
   READING PROGRESS BAR
   ========================================================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  z-index: 10001;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(212, 168, 83, 0.4);
}


/* ==========================================================
   BACK TO TOP BUTTON
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212,168,83,0.4);
}
@media (max-width: 480px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 1.1rem; }
}


/* ==========================================================
   SOCIAL SHARE BUTTONS
   ========================================================== */
.social-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-share-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.share-btn--twitter { background: #1da1f2; color: #fff; }
.share-btn--facebook { background: #1877f2; color: #fff; }
.share-btn--whatsapp { background: #25d366; color: #fff; }
.share-btn--copy { background: var(--mist); color: var(--green-dark); border: 1px solid var(--border); }
.share-btn--copy.copied { background: var(--green-light); color: #fff; border-color: var(--green-light); }

@media (max-width: 480px) {
  .social-share { gap: 8px; }
  .share-btn { padding: 6px 12px; font-size: 0.75rem; }
  .social-share-label { width: 100%; margin-bottom: 2px; }
}


/* ==========================================================
   DARK MODE
   ========================================================== */
.dark-toggle {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.3s, background 0.3s;
  color: var(--text);
}
.dark-toggle:hover {
  border-color: var(--gold);
  background: rgba(212,168,83,0.1);
}

[data-theme="dark"] {
  --white: #0f1a14;
  --text: #e0e8e2;
  --text-light: #a8b8ad;
  --text-muted: #6a7a6f;
  --border: #1e3528;
  --bg-alt: #0a1410;
  --cloud: #0d1c14;
  --mist: #12241a;
  --green-dark: #b8d4c4;
}
[data-theme="dark"] body {
  background: #080f0b;
  color: #e0e8e2;
}
[data-theme="dark"] .header {
  background: rgba(8, 15, 11, 0.92) !important;
  border-color: #1e3528;
}
[data-theme="dark"] .nav-links a { color: #a8b8ad; }
[data-theme="dark"] .nav-links a:hover { color: var(--gold); }
[data-theme="dark"] .logo-main { color: #e0e8e2; }
[data-theme="dark"] .logo-sub { color: var(--gold); }
[data-theme="dark"] .section { background: #080f0b; }
[data-theme="dark"] .section-alt,
[data-theme="dark"] .section.section-alt { background: #0a1410; }
[data-theme="dark"] .section-title { color: #e0e8e2; }
[data-theme="dark"] .section-label { color: var(--gold); }
[data-theme="dark"] .blog-card { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
[data-theme="dark"] .blog-card-title a { color: #e0e8e2; }
[data-theme="dark"] .blog-card-title a:hover { color: var(--gold); }
[data-theme="dark"] .blog-card-excerpt { color: #a8b8ad; }
[data-theme="dark"] .toc { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .toc a { color: #a8b8ad; }
[data-theme="dark"] .aff-disclosure { background: #0f1a14; border-color: #1e3528; color: #6a7a6f; }
[data-theme="dark"] .article-content { color: #c8d8cc; }
[data-theme="dark"] .article-content h2,
[data-theme="dark"] .article-content h3 { color: #e0e8e2; }
[data-theme="dark"] .article-content a { color: var(--gold); }
[data-theme="dark"] .author-box { background: #0f1a14; border-color: #1e3528; }
[data-theme="dark"] .author-name { color: #e0e8e2; }
[data-theme="dark"] .footer { background: #050a07; }
[data-theme="dark"] .page-hero { background: linear-gradient(135deg, #050a07 0%, #0f2b1d 50%, #0a1a2e 100%); }
[data-theme="dark"] .faq-q { background: #0f1a14; color: #e0e8e2; border-color: #1e3528; }
[data-theme="dark"] .faq-a { background: #0a1410; color: #a8b8ad; }
[data-theme="dark"] .social-share { border-color: #1e3528; }
[data-theme="dark"] .share-btn--copy { background: #0f1a14; color: #e0e8e2; border-color: #1e3528; }
[data-theme="dark"] .back-to-top { background: #0f1a14; }
[data-theme="dark"] .exit-popup { background: #0f1a14; }
[data-theme="dark"] .exit-popup h3 { color: #e0e8e2; }
[data-theme="dark"] .exit-popup p { color: #a8b8ad; }
[data-theme="dark"] .exit-popup input[type="email"] { background: #080f0b; border-color: #1e3528; color: #e0e8e2; }
[data-theme="dark"] .dark-toggle { color: #e0e8e2; border-color: rgba(255,255,255,0.15); }
[data-theme="dark"] .btn-gold { background: var(--gold); color: #0f1a14; }
[data-theme="dark"] .inline-cta { background: linear-gradient(135deg, #0a1410, #1a3a2e); }


/* ==========================================================
   39. BLOG ARTICLE UTILITY CLASSES (replace inline styles)
   ========================================================== */

/* Hero subtitle under h1 */
.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* Narrow article container */
.container--article {
  max-width: 820px;
}

/* Author meta row */
.author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.author-badge {
  background: var(--gold);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Sidebar subscribe widget text */
.sidebar-subscribe-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.sidebar-subscribe-btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

.sidebar-fine {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.sidebar-fine a { color: var(--gold); }

/* Inline CTA bottom links */
.inline-cta-links {
  margin-top: 14px;
  font-size: 0.9rem;
}

.inline-cta-links a {
  color: var(--gold);
  margin-right: 18px;
}


/* ==========================================================
   40. PRINT STYLES
   ========================================================== */
@media print {
  /* Hide UI elements */
  .header, .mobile-nav, .reading-progress, .back-to-top,
  .exit-popup, .search-overlay, .social-share, .read-next-bar,
  .floating-toc, .sidebar-widget, .inline-cta, .newsletter-section,
  .footer, .breadcrumb, .author-meta, .aff-disclosure,
  .dark-toggle, .nav-cta, .page-hero, .related-articles,
  .btn, script, .share-btn { display: none !important; }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12pt;
    line-height: 1.6;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
  }

  .container, .container--article {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .article-content {
    max-width: 100%;
    font-size: 11pt;
    line-height: 1.7;
  }

  .article-content h2 {
    font-size: 16pt;
    margin-top: 24pt;
    page-break-after: avoid;
  }

  .article-content h3 {
    font-size: 13pt;
    margin-top: 18pt;
    page-break-after: avoid;
  }

  .article-content img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  .article-content table {
    font-size: 9pt;
    page-break-inside: avoid;
  }

  .article-content th {
    background: #333 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .toc {
    border: 1px solid #ccc;
    padding: 12pt;
    page-break-inside: avoid;
  }

  a { color: #000; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .article-content a[href^="#"]::after { content: ""; }

  h1 { font-size: 20pt; text-align: center; margin-bottom: 6pt; }
}


/* ==========================================================
   41. IMAGE SCROLL REVEAL
   ========================================================== */
.article-content img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.article-content img.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Dark mode additions for new classes */
[data-theme="dark"] .hero-sub { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .author-meta { color: #6a7a6f; }
[data-theme="dark"] .author-badge { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .sidebar-subscribe-text { color: #6a7a6f; }
[data-theme="dark"] .sidebar-fine { color: #4a5a4f; }
