/* ============================================================
   Taj Travel Services — Main Stylesheet
   Extracted directly from homepage.html
   ============================================================ */

:root {
  --blue: #143A5C;
  --blue-light: #1e527a;
  --sky: #4A90C4;
  --sky-pale: #deeef8;
  --terra: #E8643C;
  --terra-dark: #c94f28;
  --teal: #2A9D8F;
  --teal-light: #3dbdad;
  --white: #FFFFFF;
  --sand: #F7F4EF;
  --sand-dark: #ede9e2;
  --slate: #4A5568;
  --dark: #1A202C;
  --mid: #718096;
  --border: #e2e0db;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 12px rgba(20,58,92,0.07);
  --shadow-md: 0 4px 24px rgba(20,58,92,0.10);
  --shadow-lg: 0 8px 40px rgba(20,58,92,0.13);
  --r: 10px;
  --r-lg: 16px;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
p { line-height: 1.75; color: var(--slate); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 72px 0; }

.label-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; border-color: var(--terra); }
.btn-primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,100,60,0.35); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(20,58,92,0.10);
  backdrop-filter: blur(8px);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s, height 0.3s;
}
#navbar.scrolled .nav-logo-img {
  filter: none;
  height: 40px;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 13px 12px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-links a { color: var(--slate); }
#navbar.scrolled .nav-links a:hover { color: var(--blue); background: var(--sand); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s;
  display: block;
}
#navbar.scrolled .hamburger span { background: var(--blue); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  flex-direction: column; padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-links { list-style: none; }
.mobile-menu-links li { border-bottom: 1px solid var(--border); }
.mobile-menu-links a {
  display: block; padding: 18px 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--dark);
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--terra); }
.mobile-menu-ctas { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; background: var(--sand); border: none;
  border-radius: 50%; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/wp-content/uploads/2026/05/hero-taj.jpg');
  background-size: cover;
  background-position: center 35%;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(7,25,38,0.55) 0%,
    rgba(7,25,38,0.50) 40%,
    rgba(7,25,38,0.65) 75%,
    rgba(7,25,38,0.85) 100%
  );
}

.hero-content {
  position: relative; z-index: 10;
  width: 100%; text-align: center;
  padding: 160px 0 60px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--terra); border-radius: 50%; }

.hero-h1 {
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 1500px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.8s 0.15s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-h1 em { font-style: italic; color: #f4c07d; }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto 40px;
  font-weight: 400; line-height: 1.7;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  padding: 0 20px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.82);
}
.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.25);
}
.trust-stars { color: #fbbf24; letter-spacing: -1px; font-size: 13px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TOURS ─── */
#tours { background: var(--white); }
.tours-header { text-align: center; margin-bottom: 56px; }
.tours-header h2 { font-size: clamp(32px, 4vw, 48px); color: var(--dark); margin-bottom: 16px; }
.tours-header p { max-width: 500px; margin: 0 auto; font-size: 17px; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.28s ease;
  display: flex; flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.tour-img {
  height: 200px; position: relative; overflow: hidden;
  flex-shrink: 0;
}
.tour-img-inner {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-img-inner { transform: scale(1.06); }

.tour-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--blue);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.tour-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tour-route {
  font-size: 11px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.tour-body h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.tour-body p { font-size: 14px; color: var(--slate); line-height: 1.65; flex: 1; }
.tour-cta {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--terra);
  transition: gap 0.2s;
  min-height: 44px; padding: 4px 0;
}
.tour-cta:hover { gap: 10px; }
.tour-cta svg { transition: transform 0.2s; }
.tour-cta:hover svg { transform: translateX(3px); }

.tour-img-inner {
  background-size: cover;
  background-position: center;
}
.tour-img-inner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.52) 100%);
  z-index: 0;
}
.tour-card:hover .tour-img-inner::after {
  background: linear-gradient(160deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.58) 100%);
}

.tour-img-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 1;
  padding: 20px;
}
.tour-img-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  text-align: center;
}

/* ─── WHY CHOOSE US ─── */
#why { background: var(--sand); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header h2 { font-size: clamp(32px, 4vw, 46px); color: var(--dark); margin-bottom: 14px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  border: 1px solid transparent;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-pale); }
.why-card:hover .why-icon { transform: scale(1.1); box-shadow: 0 6px 20px rgba(42,157,143,0.4); }
.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--teal) 0%, #1e7a6e 100%);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(42,157,143,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.why-card p { font-size: 14px; line-height: 1.7; }

/* ─── STORIES ─── */
#stories { background: var(--white); }
.stories-header { text-align: center; margin-bottom: 72px; }
.stories-header h2 { font-size: clamp(32px, 4vw, 46px); color: var(--dark); margin-bottom: 14px; }

.story-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
}
.story-row:last-child { margin-bottom: 0; }

.story-visual {
  min-height: 400px; position: relative; overflow: hidden;
}
.story-visual-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 40px;
}
.story-visual-label {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: rgba(255,255,255,0.2);
  position: absolute; top: 30px; left: 30px; line-height: 1;
  letter-spacing: -1px;
}
.story-visual-place {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  text-align: center;
}

.story-text {
  padding: 56px 52px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.story-number {
  font-size: 11px; font-weight: 700; color: var(--terra);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px;
}
.story-text h3 {
  font-size: clamp(22px, 2.5vw, 30px); color: var(--dark);
  margin-bottom: 16px; line-height: 1.25;
}
.story-text p { font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.story-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--blue);
  padding: 13px 0; min-height: 44px;
  transition: gap 0.2s;
}
.story-link:hover { gap: 10px; color: var(--terra); }

/* Story photo backgrounds */
.story-bg {
  background-size: cover;
  background-position: center;
}
.story-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.62) 100%);
  z-index: 0;
}
.story-bg .story-visual-label { z-index: 1; }
.story-bg .story-visual-place { position: relative; z-index: 1; }

/* ─── REVIEWS ─── */
#reviews { background: var(--sand); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header h2 { font-size: clamp(30px, 4vw, 44px); color: var(--dark); margin-bottom: 16px; }

.ta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}
.ta-logo {
  width: 28px; height: 28px;
  background: #34E0A1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff;
}
.ta-text { font-size: 13px; font-weight: 600; color: var(--dark); }
.ta-stars { color: #34E0A1; font-size: 14px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.review-quote {
  font-size: 15px; line-height: 1.75; color: var(--slate);
  margin-bottom: 20px; flex: 1;
  font-style: italic;
}
.review-quote::before { content: '\201C'; color: var(--terra); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 2px; font-family: Georgia, serif; font-style: normal; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.review-origin { font-size: 12px; color: var(--mid); }
.review-via { font-size: 11px; color: #34E0A1; font-weight: 600; margin-top: 2px; }

/* ─── CTA BANNER ─── */
#cta-banner {
  background: var(--blue);
  position: relative; overflow: hidden;
}
.cta-dots {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center; padding: 64px 24px 48px;
}
.cta-content h2 {
  font-size: clamp(32px, 4.5vw, 54px); color: #fff;
  margin-bottom: 16px;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 40px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: #0d2a40;
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand {}
.footer-logo-wrap {
  margin-bottom: 18px;
}
.footer-logo-img {
  height: 44px; width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-size: 14px;
}
.social-btn:hover { background: var(--terra); }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; }
.contact-icon { width: 20px; flex-shrink: 0; margin-top: 1px; opacity: 0.7; font-size: 14px; }
.contact-text { font-size: 14px; line-height: 1.5; }
.contact-text a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.contact-text a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px;
  background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero-tour-grid { grid-template-columns: 1fr; }
  .hero-tour-right { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 48px 0; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .tours-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .story-visual { min-height: 280px; }
  .story-text { padding: 36px 28px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 10px 0; width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto 48px; }
  .hero-ctas .btn { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Nav is now consistent across all pages — transparent by default, solid on scroll */

.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
#navbar.scrolled .nav-links a.active {
  color: var(--blue);
  background: var(--sand);
}

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-short { height: 340px; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,35,55,0.25) 0%, rgba(10,35,55,0.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 40px 0;
  width: 100%;
}
.page-hero-content h1 {
  font-size: clamp(22px, 2.8vw, 40px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.65;
}

/* ── Two-column tour hero ── */
.hero-tour-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 80px);
}
.hero-tour-left { display: flex; flex-direction: column; justify-content: center; }
.hero-booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

/* ════════════════════════════════════════════
   FILTER BAR (tours page)
════════════════════════════════════════════ */
.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(20,58,92,0.06);
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-label {
  font-size: 12px; font-weight: 600;
  color: var(--mid); text-transform: uppercase;
  letter-spacing: 0.08em; white-space: nowrap; flex-shrink: 0;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--slate);
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ════════════════════════════════════════════
   TOURS GRID FULL (tours page)
════════════════════════════════════════════ */
.tours-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tour-card-full {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  transition: all 0.28s ease;
}
.tour-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.tc-img {
  width: 260px; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.tc-img-scale {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.tc-img-scale::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.tour-card-full:hover .tc-img-scale { transform: scale(1.05); }
.tc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  letter-spacing: 0.04em;
}
.tc-badge-blue { background: var(--blue); color: #fff; }
.tc-badge-terra { background: var(--terra); color: #fff; }
.tc-badge-teal { background: var(--teal); color: #fff; }
.tc-duration {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--blue);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.tc-body {
  padding: 26px 28px; flex: 1;
  display: flex; flex-direction: column;
}
.tc-route {
  font-size: 11px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.tc-body h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.tc-body p { font-size: 14px; color: var(--slate); line-height: 1.65; margin-bottom: 14px; }
.tc-highlights {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}
.tc-highlights li {
  font-size: 13px; color: var(--slate);
  display: flex; align-items: center; gap: 8px;
}
.tc-highlights li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.tc-footer {
  margin-top: auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); text-align: center;
}
.tc-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--mid); font-weight: 500;
}
.tc-footer-btns {
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 6px; font-weight: 600;
  font-size: 14px; border: 1.5px solid var(--dark); color: var(--dark);
  background: transparent; transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ── Custom tour strip ── */
.custom-tour-strip {
  background: var(--blue);
  position: relative; overflow: hidden;
}
.custom-tour-strip::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(7, 25, 38, 0.78);
}
.custom-tour-inner {
  position: relative; z-index: 1;
  padding: 72px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.custom-tour-text h2 { font-size: clamp(26px, 3.5vw, 42px); color: #fff; margin-bottom: 12px; }
.custom-tour-text p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 440px; }
.custom-tour-ctas { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.about-intro { padding: 96px 0; background: var(--white); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-inner {
  height: 520px; border-radius: var(--r-lg);
  overflow: hidden; position: relative;
}
.about-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.about-trust-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.badge-icon {
  width: 48px; height: 48px; background: var(--sand);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px;
}
.badge-text strong { display: block; font-size: 20px; color: var(--dark); font-family: 'Outfit', sans-serif; }
.badge-text span { font-size: 12px; color: var(--mid); }
.about-text h2 { font-size: clamp(26px, 3.5vw, 42px); color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.about-text p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 32px; }
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Stats bar ── */
.stats-bar { background: var(--blue); padding: 52px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px); font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ── How it works ── */
.how-it-works { background: var(--sand); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; position: relative;
}
.how-grid::before {
  content: '';
  position: absolute; top: 36px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--sky));
  opacity: 0.25;
}
.how-step {
  text-align: center; background: var(--white);
  border-radius: var(--r-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}
.how-num {
  width: 72px; height: 72px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: #fff;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(20,58,92,0.25);
}
.how-step h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.how-step p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── Tour types ── */
.tour-types { background: var(--white); }
.tour-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tt-card {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all 0.28s;
}
.tt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.tt-img { height: 220px; position: relative; overflow: hidden; }
.tt-img-inner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.tt-img-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.tt-card:hover .tt-img-inner { transform: scale(1.05); }
.tt-body { padding: 24px; }
.tt-body h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.tt-body p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── Meet Raj ── */
.meet-raj { background: var(--sand); }
.meet-raj-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.meet-raj-img-wrap { position: relative; }
.meet-raj-img {
  height: 480px; border-radius: var(--r-lg);
  overflow: hidden; position: relative;
}
.meet-raj-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.meet-raj-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 16px 20px; box-shadow: var(--shadow-md); text-align: center;
}
.meet-raj-badge strong { display: block; font-size: 16px; color: var(--dark); font-family: 'Outfit', sans-serif; }
.meet-raj-badge span { font-size: 12px; color: var(--mid); }
.meet-raj-text h2 { font-size: clamp(26px, 3.5vw, 42px); color: var(--dark); margin-bottom: 16px; }
.meet-raj-text p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.expertise-tag {
  padding: 6px 14px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--blue);
}

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-methods { background: var(--sand); padding: 72px 0 0; }
.contact-methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cm-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all 0.25s; display: block; color: inherit;
}
.cm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cm-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.cm-icon-wa { background: var(--whatsapp); }
.cm-icon-email { background: var(--teal); }
.cm-icon-phone { background: var(--blue); }
.cm-icon-map { background: var(--terra); }
.cm-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.cm-value { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; line-height: 1.4; }
.cm-note { font-size: 12px; color: var(--mid); }

.contact-layout { background: var(--sand); padding: 56px 0 96px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
}
.form-box {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.form-box h2 { font-size: 28px; color: var(--dark); margin-bottom: 8px; }
.form-box > p { font-size: 15px; color: var(--slate); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--dark);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20,58,92,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-submit-btn {
  width: 100%; padding: 16px;
  background: var(--whatsapp); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 10px; transition: all 0.22s; margin-top: 8px;
}
.form-submit-btn:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.sidebar-card h3 { font-size: 16px; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.wa-cta-card { background: var(--whatsapp); border-color: transparent; }
.wa-cta-card h3 { color: #fff; }
.wa-cta-card p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 16px; }
.wa-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 20px;
  background: rgba(255,255,255,0.2); color: #fff;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  transition: background 0.2s; border: 1.5px solid rgba(255,255,255,0.4);
}
.wa-cta-btn:hover { background: rgba(255,255,255,0.3); }
.contact-detail-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail-item:last-child { margin-bottom: 0; }
.cd-icon {
  width: 36px; height: 36px; background: var(--sand);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.cd-info strong { display: block; font-size: 13px; color: var(--dark); margin-bottom: 2px; }
.cd-info a, .cd-info span { font-size: 13px; color: var(--mid); }
.cd-info a:hover { color: var(--blue); }
.rt-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); }
.rt-item:last-child { border-bottom: none; }
.rt-label { font-size: 13px; color: var(--slate); }
.rt-badge { font-size: 12px; font-weight: 600; color: var(--teal); }

/* ── FAQ Accordion ── */
.faq-section { background: var(--white); padding: 64px 0; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--dark); margin-bottom: 12px; }
.faq-header p { max-width: 480px; margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--r);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 20px 24px;
  background: var(--white); border: none; cursor: pointer;
  text-align: left; font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--dark);
  gap: 16px; transition: background 0.2s;
}
.faq-question:hover { background: var(--sand); }
.faq-item.open .faq-question { background: var(--sand); color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-size: 18px; font-weight: 300; color: var(--blue);
  transition: transform 0.3s, background 0.2s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 14px; color: var(--slate); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ════════════════════════════════════════════
   RESPONSIVE — inner pages
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tours-grid-full { grid-template-columns: 1fr; }
  .tc-img { width: 220px; }
  .about-intro-grid { gap: 40px; }
  .contact-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px; margin-top: 8px; }
  .meet-raj-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .page-hero { min-height: 100vh; }
  .page-hero-short { min-height: 60vh; }
  .page-hero-content { padding: 80px 0 60px; }
  .tour-card-full { flex-direction: column; }
  .tc-img { width: 100%; height: 220px; }
  .tours-grid-full { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .tour-types-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-img-inner { height: 320px; }
  .about-trust-badge { right: 10px; bottom: 10px; }
  .meet-raj-grid { grid-template-columns: 1fr; }
  .meet-raj-img { height: 300px; }
  .meet-raj-badge { top: auto; bottom: 10px; right: 10px; }
  .contact-methods-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .custom-tour-inner { flex-direction: column; text-align: center; align-items: flex-start; }
  .custom-tour-text p { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════
   TOUR DETAIL PAGES
════════════════════════════════════════════ */

/* ── Quick Facts Bar ── */
.tour-quick-facts { background: var(--blue); }
.tour-facts-inner {
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.tour-facts-inner::-webkit-scrollbar { display: none; }
.tour-fact {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.tour-fact:last-child { border-right: none; }
.tour-fact-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 5px;
}
.tour-fact-value { font-size: 16px; font-weight: 700; color: #fff; font-family: 'Outfit', sans-serif; }


/* ── Quick Facts pinned inside hero ── */
.page-hero--with-facts .tour-quick-facts {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
}
.page-hero--with-facts .hero-tour-grid {
  min-height: 0;
}
.page-hero--with-facts .page-hero-content {
  padding-bottom: 100px;
}

/* ── Tour Overview ── */
.tour-overview { padding: 64px 0; background: var(--white); }
.tour-overview-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 52px; align-items: start;
}
.tour-overview-text .label-tag { margin-bottom: 10px; }
.tour-overview-text h2 {
  font-size: clamp(26px, 3vw, 38px); color: var(--dark);
  margin-bottom: 18px; line-height: 1.25;
}
.tour-overview-text p { font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.tour-overview-text p:last-of-type { margin-bottom: 0; }

.tour-benefits-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.tour-benefit { display: flex; gap: 14px; align-items: flex-start; }
.tour-benefit-icon {
  width: 44px; height: 44px; background: var(--sky-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue); flex-shrink: 0;
}
.tour-benefit-text strong {
  display: block; font-size: 15px; color: var(--dark);
  margin-bottom: 3px; font-family: 'Outfit', sans-serif; font-weight: 700;
}
.tour-benefit-text p { font-size: 14px; line-height: 1.65; margin: 0; }

/* ── Sidebar Booking Card ── */
.tour-aside-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-md);
  overflow: hidden; position: sticky; top: 88px;
}
.tour-aside-img { height: 190px; position: relative; overflow: hidden; }
.tour-aside-img-inner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.tour-aside-card:hover .tour-aside-img-inner { transform: scale(1.04); }
.tour-aside-body { padding: 22px; }
.tour-price-row { display: flex; align-items: baseline; gap: 5px; margin-bottom: 16px; }
.tour-price-from { font-size: 12px; color: var(--mid); font-weight: 500; }
.tour-price-amount { font-size: 30px; font-weight: 700; color: var(--blue); font-family: 'Outfit', sans-serif; line-height: 1; }
.tour-price-pp { font-size: 12px; color: var(--mid); }
.tour-aside-list {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.tour-aside-list li { font-size: 13px; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.tour-aside-list li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.tour-aside-cta { display: flex; flex-direction: column; gap: 10px; }
.tour-aside-cta a { justify-content: center; text-align: center; }

/* ── Itinerary Timeline ── */
.itinerary-section { background: var(--sand); padding: 64px 0; }
.itinerary-header { text-align: center; margin-bottom: 64px; }
.itinerary-header h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--dark); margin-bottom: 12px; }
.itinerary-header p { max-width: 520px; margin: 0 auto; }
.itinerary-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.itinerary-timeline::before {
  content: ''; position: absolute;
  left: 19px; top: 10px; bottom: 10px;
  width: 2px; background: var(--border);
}
.itinerary-day {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 0 20px; padding-bottom: 32px; position: relative;
}
.itinerary-day:last-child { padding-bottom: 0; }
.day-num {
  width: 40px; height: 40px; background: var(--blue);
  border-radius: 50%; color: #fff;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(20,58,92,0.25);
}
.day-content {
  background: var(--white); border-radius: var(--r);
  padding: 20px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.day-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--terra); margin-bottom: 4px;
}
.day-content h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.day-content p { font-size: 14px; color: var(--slate); line-height: 1.75; }
.day-stops { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.day-stop {
  font-size: 12px; font-weight: 500; padding: 3px 10px;
  background: var(--sky-pale); color: var(--blue); border-radius: 50px;
}

/* ── Inclusions / Exclusions ── */
.inclusions-section { background: var(--white); padding: 64px 0; }
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.inc-card { border-radius: var(--r-lg); padding: 32px; }
.inc-card-included { background: rgba(42,157,143,0.06); border: 1.5px solid rgba(42,157,143,0.2); }
.inc-card-excluded { background: rgba(232,100,60,0.04); border: 1.5px solid rgba(232,100,60,0.15); }
.inc-card-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 20px;
}
.inc-card-included .inc-card-title { color: var(--teal); }
.inc-card-excluded .inc-card-title { color: var(--terra); }
.inc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.inc-list li {
  font-size: 14px; color: var(--slate);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.55;
}
.inc-list li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; margin-top: 1px;
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.inc-card-included .inc-list li::before {
  background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.inc-card-excluded .inc-list li::before {
  background-color: rgba(232,100,60,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8643C' stroke-width='2.5'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* ── Tour Testimonial ── */
.tour-testimonial { background: var(--sand); padding: 64px 0; }
.testimonial-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.testimonial-stars { font-size: 22px; color: #f59e0b; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 23px); color: var(--dark);
  line-height: 1.6; font-style: italic; margin-bottom: 28px;
}
.testimonial-quote::before { content: '\201C'; color: var(--terra); }
.testimonial-quote::after { content: '\201D'; color: var(--terra); }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--dark); text-align: left; }
.testimonial-origin { font-size: 13px; color: var(--mid); }
.testimonial-via { font-size: 11px; color: #34E0A1; font-weight: 600; margin-top: 2px; }

/* ── Tour Detail Responsive ── */
@media (max-width: 1024px) {
  .tour-overview-grid { grid-template-columns: 1fr; }
  .tour-aside-card { position: static; }
}
@media (max-width: 768px) {
  .tour-facts-inner { flex-wrap: wrap; }
  .tour-fact { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tour-fact:nth-child(even) { border-right: none; }
  .itinerary-timeline::before { left: 15px; }
  .itinerary-day { grid-template-columns: 32px 1fr; gap: 0 14px; }
  .day-num { width: 32px; height: 32px; font-size: 12px; }
  .day-content { padding: 16px 18px; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .inc-card { padding: 24px 20px; }
}

/* ════════════════════════════════════════════
   BLOG ARCHIVE PAGE
════════════════════════════════════════════ */

/* Hero */
.blog-hero {
  position: relative; height: 420px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: #0a2337;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,35,55,0.3) 0%, rgba(10,35,55,0.78) 100%);
}
.blog-hero-content {
  position: relative; z-index: 2;
  padding: 48px 0 52px; width: 100%;
}
.blog-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px); color: #fff;
  margin: 8px 0 12px; line-height: 1.1;
}
.blog-hero-content p {
  font-size: 16px; color: rgba(255,255,255,0.8);
  max-width: 520px; line-height: 1.7; margin: 0;
}

/* Main area */
.blog-main { padding: 72px 0 80px; }

/* Post card grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Post card */
.post-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: all 0.28s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-card-img-link { display: block; }
.post-card-thumb {
  height: 220px; position: relative; overflow: hidden;
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sky-pale), var(--sand-dark));
}
.post-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--terra); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.post-card-body {
  padding: 24px 24px 28px;
  flex: 1; display: flex; flex-direction: column;
}
.post-card-meta {
  font-size: 12px; color: var(--mid); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.post-card-dot { opacity: 0.5; }
.post-card-body h2 {
  font-size: 19px; line-height: 1.3;
  margin-bottom: 10px; color: var(--dark);
}
.post-card-body h2 a { color: inherit; transition: color 0.2s; }
.post-card-body h2 a:hover { color: var(--terra); }
.post-card-body > p {
  font-size: 14px; color: var(--slate);
  line-height: 1.7; flex: 1; margin-bottom: 18px;
}
.post-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--terra);
  transition: gap 0.2s; margin-top: auto;
}
.post-card-link:hover { gap: 10px; }

/* Pagination */
.blog-pagination { text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--slate);
  border: 1.5px solid var(--border); transition: all 0.2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.blog-pagination .page-numbers.dots { border-color: transparent; width: auto; padding: 0 4px; }

/* Empty state */
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty p { font-size: 17px; margin-bottom: 24px; }

@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .posts-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .blog-hero { height: 340px; }
}

/* ════════════════════════════════════════════
   SINGLE POST PAGE
════════════════════════════════════════════ */

/* Post hero */
.post-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,35,55,0.18) 0%,
    rgba(10,35,55,0.55) 55%,
    rgba(5,18,30,0.88) 100%
  );
}
.post-hero-content {
  position: relative; z-index: 2;
  padding: 48px 0 56px; width: 100%;
}
.post-hero-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  margin-bottom: 14px; flex-wrap: wrap;
}
.post-hero-cat {
  background: var(--terra); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s;
}
.post-hero-cat:hover { background: var(--terra-dark); }
.post-hero-sep { opacity: 0.4; }
.post-hero-content h1 {
  font-size: clamp(28px, 4.5vw, 54px); color: #fff;
  line-height: 1.15; max-width: 820px;
}

/* Post layout */
.post-layout { padding: 64px 0 80px; background: var(--white); }
.post-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* Article body */
.post-article { min-width: 0; }

.article-body { font-size: 16px; line-height: 1.85; color: var(--slate); }

.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px); color: var(--dark);
  margin: 48px 0 16px; line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand-dark);
}
.article-body h2:first-child { margin-top: 0; }

/* ── In-content CTA blocks (WordPress wraps buttons in <p> with <br>) ── */
.article-body div[style*="border-radius"] {
  /* ensure the CTA wrapper isn't affected by article-body p line-height */
}
.article-body div[style*="border-radius"] p {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  line-height: 1;
  background: transparent;
}
.article-body div[style*="border-radius"] p br { display: none; }
.article-body div[style*="border-radius"] a[style*="border-radius"] {
  display: inline-flex !important;
  align-items: center;
  margin-right: 0 !important;
  white-space: nowrap;
  line-height: 1;
}
/* "Send Enquiry" button — has white text but no bg; give it a visible outline style */
.article-body div[style*="border-radius"] a[style*="color:#fff"]:not([style*="background"]) {
  background: rgba(255,255,255,0.15) !important;
  border: 2px solid rgba(255,255,255,0.6);
}

.article-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin: 28px 0 10px;
}
.article-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--blue);
  margin: 20px 0 8px; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 12px;
}

.article-body p { margin-bottom: 18px; }
.article-body p:last-child { margin-bottom: 0; }

.article-body strong { color: var(--dark); font-weight: 700; }
.article-body em { font-style: italic; }

.article-body ul, .article-body ol {
  margin: 0 0 20px 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.article-body ul li, .article-body ol li {
  font-size: 15px; color: var(--slate);
  padding-left: 26px; position: relative; line-height: 1.7;
}
.article-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 8px; background-repeat: no-repeat; background-position: center;
}
.article-body ol { counter-reset: article-ol; }
.article-body ol li { counter-increment: article-ol; }
.article-body ol li::before {
  content: counter(article-ol);
  position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; justify-content: center;
}

.article-body blockquote {
  margin: 28px 0; padding: 20px 24px;
  background: var(--sky-pale); border-left: 4px solid var(--sky);
  border-radius: 0 var(--r) var(--r) 0;
}
.article-body blockquote p { color: var(--blue); font-style: italic; margin: 0; }

.article-body table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 14px;
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-body table th {
  background: var(--blue); color: #fff;
  padding: 11px 16px; text-align: left;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.article-body table td {
  padding: 11px 16px; color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.article-body table tr:last-child td { border-bottom: none; }
.article-body table tr:nth-child(even) td { background: var(--sand); }

.article-body details {
  border: 1.5px solid var(--border); border-radius: var(--r);
  margin-bottom: 10px; overflow: hidden;
}
.article-body details summary {
  padding: 16px 20px; font-weight: 600; font-size: 15px;
  color: var(--dark); cursor: pointer; font-family: 'Outfit', sans-serif;
  list-style: none; display: flex; justify-content: space-between;
  background: var(--white); transition: background 0.2s;
}
.article-body details summary::-webkit-details-marker { display: none; }
.article-body details summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--blue); line-height: 1;
}
.article-body details[open] summary {
  background: var(--sand); color: var(--blue);
}
.article-body details[open] summary::after { content: '−'; }
.article-body details p { padding: 0 20px 16px; margin: 0; font-size: 14px; }

/* Inline CTA div (from post content) */
.article-body > div[style*="background:#1a56a7"],
.article-body > div[style*="background:var(--blue)"] {
  border-radius: var(--r-lg) !important;
}

/* Author card */
.post-author-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--sand); border-radius: var(--r-lg);
  padding: 24px 28px; margin: 48px 0 32px;
  border: 1px solid var(--border);
}
.post-author-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; font-family: 'Playfair Display', serif;
}
.post-author-info strong {
  display: block; font-size: 15px; font-family: 'Outfit', sans-serif;
  font-weight: 700; color: var(--dark); margin-bottom: 6px;
}
.post-author-info p {
  font-size: 13px; color: var(--slate); line-height: 1.65; margin: 0;
}

/* CTA band */
.post-cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--blue); border-radius: var(--r-lg);
  padding: 28px 32px; margin-bottom: 40px;
}
.post-cta-band-text strong {
  display: block; font-size: 17px; font-family: 'Outfit', sans-serif;
  font-weight: 700; color: #fff; margin-bottom: 4px;
}
.post-cta-band-text p { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; }
.post-cta-band-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Post nav */
.post-nav-links { border-top: 1px solid var(--border); padding-top: 32px; }
.post-nav-links .nav-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.post-nav-links .nav-previous a,
.post-nav-links .nav-next a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px; background: var(--sand);
  border-radius: var(--r); border: 1px solid var(--border);
  transition: all 0.2s; color: inherit;
}
.post-nav-links .nav-next a { text-align: right; }
.post-nav-links a:hover { border-color: var(--blue); background: var(--sky-pale); }
.post-nav-label { font-size: 11px; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }
.post-nav-title { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
.post-sidebar-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.post-sidebar-book-img {
  height: 160px; background-size: cover; background-position: center;
}
.post-sidebar-book-body {
  padding: 20px;
}
.post-sidebar-book-body strong {
  display: block; font-size: 16px; font-family: 'Outfit', sans-serif;
  font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.post-sidebar-book-body > p { font-size: 13px; color: var(--mid); margin-bottom: 12px; }
.post-sidebar-price {
  font-size: 13px; color: var(--slate); margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.post-sidebar-price span { font-size: 24px; font-weight: 700; color: var(--blue); font-family: 'Outfit', sans-serif; }

.post-sidebar-heading {
  font-size: 12px; font-weight: 700; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 16px 20px 0; font-family: 'Outfit', sans-serif; margin: 0;
}
.post-sidebar-facts {
  list-style: none; padding: 12px 20px 20px;
  display: flex; flex-direction: column;
}
.post-sidebar-facts li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.post-sidebar-facts li:last-child { border-bottom: none; }
.post-sidebar-facts li span { color: var(--slate); }
.post-sidebar-facts li strong { color: var(--dark); font-family: 'Outfit', sans-serif; }

.post-sidebar-tours {
  list-style: none; padding: 12px 20px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.post-sidebar-tours li a {
  display: block; padding: 8px 0;
  font-size: 14px; font-weight: 600; color: var(--blue);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s; padding-right: 4px;
}
.post-sidebar-tours li:last-child a { border-bottom: none; }
.post-sidebar-tours li a:hover { color: var(--terra); }

/* Responsive */
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-sidebar-book { display: none; } /* hide on mobile, CTA band is enough */
}
@media (max-width: 768px) {
  .post-hero { min-height: 360px; }
  .post-cta-band { flex-direction: column; align-items: flex-start; }
  .post-nav-links .nav-links { grid-template-columns: 1fr; }
  .post-nav-links .nav-next a { text-align: left; }
  .article-body h2 { font-size: 22px; }
  .article-body table { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.visible { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
