/* ============================================================
   VARIABLES — Snow White · Lime Green · Gold  (3-colour theme)
   ============================================================ */
:root {
  /* ── Lime Green ── */
  --lime:       #78c520;
  --lime-dk:    #5a9a14;
  --lime-md:    #64aa1a;
  --lime-lt:    #f0fae0;
  --lime-xs:    #f7fced;

  /* ── Gold ── */
  --gold:       #c9960d;
  --gold-viv:   #e8ab0c;
  --gold-dk:    #a87a08;
  --gold-lt:    #fffbeb;
  --gold-xs:    #fdf6d4;

  /* ── Snow White ── */
  --snow:       #ffffff;
  --snow-2:     #fafafa;
  --snow-3:     #f4f4f4;
  --ice:        var(--snow);
  --ice-2:      var(--snow-2);
  --ice-3:      var(--snow-3);

  /* ── Text — neutral dark (no green tint) ── */
  --text:       #1a1a1a;
  --text-2:     #333333;
  --text-3:     #555555;
  --muted:      #888888;
  --line:       #e0e0e0;
  --line-lt:    #eeeeee;

  --bg-card:    #ffffff;
  --bg-page:    var(--snow);

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 14px rgba(0,0,0,0.06), 0 6px 24px rgba(0,0,0,0.04);
  --shadow-hover:0 8px 36px rgba(0,0,0,0.1), 0 2px 12px rgba(120,197,32,0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --r-card: 18px;
  --r-btn:  9px;
  --wrap:   min(1160px, calc(100% - 48px));
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--snow);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: var(--wrap);
  margin-inline: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.navbar.scrolled .nav-links a { color: var(--text-2); }
.nav-links a:hover { color: var(--gold-viv); }

.nav-menu-logo { display: none; }
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-icon {
  height: 40px;
  width: auto;
  display: block;
}

/* ============================================================
   HAMBURGER NAV
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s;
}
.navbar.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 72vw;
    max-width: 280px;
    height: 100dvh;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -4px 0 24px rgba(20,50,5,0.12);
    padding: 80px 28px 32px;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-2);
    border-bottom: 1px solid var(--line-lt);
  }
  .nav-links a:hover { color: var(--lime-dk); }
  .nav-menu-logo {
    display: block;
    margin-top: 24px;
    height: 30px;
    width: auto;
  }
  /* Overlay behind the panel */
  .nav-links.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    right: 72vw;
    background: rgba(0,0,0,0.35);
    z-index: -1;
  }
}

/* ============================================================
   HERO — Image slideshow
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides stack */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  /* Ken Burns zoom */
  animation: kenBurns 12s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.hero-slide.is-active {
  opacity: 1;
  animation-play-state: running;
}
@keyframes kenBurns {
  0%   { transform: scale(1);    transform-origin: 40% 60%; }
  100% { transform: scale(1.08); transform-origin: 60% 40%; }
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

/* Cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18)  0%,
      rgba(0,0,0,0.48) 40%,
      rgba(0,0,0,0.72)  100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 740px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(120,197,32,0.92), rgba(90,154,20,0.9));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(90,154,20,0.45);
}
.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  /* lime-gold radiant text */
  background: linear-gradient(135deg, #ffffff 30%, #d4f59a 65%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin: 0 0 34px;
  font-size: clamp(0.97rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 40px;
  border-radius: var(--r-btn);
  background: linear-gradient(135deg, var(--lime), var(--lime-dk));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(90,154,20,0.55);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(90,154,20,0.6);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(200,245,130,0.7), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;    transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--snow-2);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: flex;
  align-items: stretch;
  width: var(--wrap);
  margin-inline: auto;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 20px 16px;
  text-align: center;
}
.trust-sep {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}
.trust-num {
  font-size: 1.35rem;
  font-weight: 900;
  /* radiant lime-gold number */
  background: linear-gradient(135deg, var(--lime-md), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trust-stars {
  color: var(--gold-viv);
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1;
}
.trust-label {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container  { width: var(--wrap); margin-inline: auto; }
.page-shell { padding: clamp(40px, 6vw, 64px) 0 clamp(60px, 8vw, 96px); }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
}
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

/* ============================================================
   PACKAGE CARD
   ============================================================ */
.package-card {
  position: relative;
  margin-bottom: 24px;
  border-radius: var(--r-card);
  background: var(--bg-card);
  /* subtle lime-tinted card border */
  border: 1px solid var(--line-lt);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line);
}
.featured-card {
  border-color: var(--gold-viv);
  border-width: 2px;
  /* soft gold radiant glow */
  box-shadow: var(--shadow-card), 0 0 0 4px rgba(232,171,12,0.1);
}
.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-viv), var(--gold));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(201,150,13,0.45);
}

.package-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: 460px;
}

/* Image panel */
.package-image {
  position: relative;
  background: var(--ice-2);
}
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-duration {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(90,154,20,0.88), rgba(50,90,8,0.9));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Details panel */
.package-details {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  background: #fff;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.loc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  flex-shrink: 0;
}

.package-title {
  margin: 0 0 8px;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}
.stars {
  color: var(--gold-viv);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.rating-val {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text);
}
.rating-ct {
  font-size: 0.78rem;
  color: var(--muted);
}

.route-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--snow-2);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 0.7rem;
  font-weight: 700;
}
.route-pill .arrow {
  color: var(--lime-md);
  opacity: 0.7;
}

.inclusions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  margin-bottom: 14px;
}
.inclusion {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  min-width: 0;
}
.inclusion .icon {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
}
.inclusion.good .icon {
  background: var(--lime-lt);
  color: var(--lime-dk);
}
.inclusion.extra .icon {
  background: var(--gold-lt);
  color: var(--gold);
}
.inclusion.extra { color: var(--gold-dk); }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line-lt);
  background: transparent;
  color: var(--text-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.accordion-trigger:hover,
.accordion-trigger.is-open { color: var(--lime-dk); }
.accordion-trigger .chevron {
  display: inline-block;
  color: var(--muted);
  font-style: normal;
  transition: transform 0.25s ease;
}
.accordion-trigger.is-open .chevron { transform: rotate(180deg); }

.accordion-panel {
  display: none;
  padding: 8px 0 4px;
}
.accordion-panel.is-open { display: block; }

.list { list-style: none; margin: 0; padding: 0; }
.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 7px;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background 0.18s;
}
.itinerary-list li {
  background: var(--lime-xs);
  border-left: 3px solid var(--lime);
}
.itinerary-list li:hover {
  background: var(--lime-lt);
}
.highlight-list li {
  background: var(--gold-xs);
  border-left: 3px solid var(--gold-viv);
}
.highlight-list li:hover {
  background: var(--gold-lt);
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lime-lt);
  color: var(--lime-dk);
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}
.highlight-list .list-icon {
  background: var(--gold-xs);
  color: var(--gold);
}
.list li span:last-child {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.62;
}

/* ============================================================
   CARD FOOTER — price + CTA
   ============================================================ */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-lt);
  flex-wrap: wrap;
}
.price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-from {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 600;
}
.price-amount {
  font-size: 1.45rem;
  font-weight: 900;
  /* radiant lime-to-gold price */
  background: linear-gradient(135deg, var(--lime-md), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.price-per {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 600;
}

.package-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--r-btn);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.18s, transform 0.15s, box-shadow 0.18s;
}
.package-btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

/* Lime green primary button */
.btn-lime {
  background: linear-gradient(135deg, var(--lime), var(--lime-dk));
  box-shadow: 0 2px 12px rgba(90,154,20,0.32);
}

/* Gold secondary button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-viv), var(--gold));
  box-shadow: 0 2px 12px rgba(201,150,13,0.32);
}

/* Ghost outline button */
.btn-outline {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--text-2);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime-dk);
  background: var(--lime-lt);
  filter: none;
}

/* Keep .btn-orange as alias for lime */
.btn-orange {
  background: linear-gradient(135deg, var(--lime), var(--lime-dk));
  box-shadow: 0 2px 12px rgba(90,154,20,0.32);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(160deg, #111, #1a1a1a 50%, #0f0f0f);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}

/* 4-col grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-heading {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime-lt); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-copy { margin: 0; font-size: 0.75rem; opacity: 0.45; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 40px 0 0; }
}

/* ============================================================
   FEATURED CARD SHIMMER
   ============================================================ */
.featured-tag {
  animation: tagShimmer 3s ease-in-out infinite;
}
@keyframes tagShimmer {
  0%, 100% { box-shadow: 0 2px 10px rgba(201,150,13,0.45); }
  50%      { box-shadow: 0 4px 22px rgba(232,171,12,0.7), 0 0 8px rgba(232,171,12,0.3); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(20,42,8,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: rgba(120,197,32,0.6);
  border-color: rgba(120,197,32,0.8);
}

/* ============================================================
   FLOATING BUTTONS — right middle
   ============================================================ */
.float-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.float-btns.is-scrolling {
  transform: translateY(-50%) translateX(120%);
}

.float-btn {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0;
  height: 48px;
  padding: 0 12px 0 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 0;
  box-shadow: -2px 2px 12px rgba(0,0,0,0.18);
  /* hide label by default — slide out on hover */
  max-width: 48px;
  overflow: hidden;
  transition: max-width 0.3s ease, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.float-btn:hover {
  max-width: 160px;
  box-shadow: -4px 4px 18px rgba(0,0,0,0.22);
}

.float-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.float-label {
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.2s 0.1s;
}
.float-btn:hover .float-label { opacity: 1; }

.float-whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.72), rgba(26,175,85,0.72));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px 0 0 0;
}
.float-call {
  background: linear-gradient(135deg, rgba(120,197,32,0.72), rgba(90,154,20,0.72));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0 0 0 10px;
}

@media (max-width: 640px) {
  .float-btn { height: 44px; padding: 0 12px; }
  .float-icon { width: 20px; height: 20px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: clamp(48px, 7vw, 80px) 0 clamp(48px, 7vw, 72px);
  background: linear-gradient(160deg, #111111 0%, #1a1a1a 55%, #0f0f0f 100%);
}

/* Center section head on dark background */
.gallery-section .section-head {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gallery-section .section-head .eyebrow {
  color: var(--lime);
  justify-content: center;
}
.gallery-section .section-head h2 { color: #fff; }
.gallery-section .section-head p  { color: rgba(255,255,255,0.6); }

.gallery-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.gallery-tab {
  padding: 10px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gallery-tab.is-active,
.gallery-tab:hover {
  background: linear-gradient(135deg, var(--lime), var(--lime-dk));
  border-color: var(--lime);
  color: #fff;
}

/* ============================================================
   GALLERY CAROUSEL
   ============================================================ */
.gal-carousel {
  display: none;
  padding: 0 0 40px;
}
.gal-carousel.is-active { display: block; }

/* ── Stage (main image) ── */
.gc-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: clamp(240px, 38vw, 480px);
  background: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  cursor: pointer;
}

.gc-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.45,0,0.15,1);
  will-change: transform;
}

.gc-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.gc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Arrow buttons ── */
.gc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.gc-prev { left: 16px; }
.gc-next { right: 16px; }
.gc-arrow:hover {
  background: rgba(120,197,32,0.55);
  border-color: rgba(120,197,32,0.8);
  transform: translateY(-50%) scale(1.1);
}

/* ── Counter badge ── */
.gc-counter {
  position: absolute;
  bottom: 52px;
  right: 18px;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* ── Progress bar ── */
.gc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.15);
}
.gc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--lime-dk));
  border-radius: 0 2px 2px 0;
}

/* ── Hover overlay ── */
.gal-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gal-hover span {
  padding: 7px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--lime-dk);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.gc-stage:hover .gal-hover { opacity: 1; }

/* ── Thumbnail strip ── */
.gc-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px 6px;
  justify-content: center;
}
.gc-thumbs::-webkit-scrollbar { display: none; }

.gc-thumb {
  flex-shrink: 0;
  width: 108px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  border: 2.5px solid transparent;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
}
.gc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gc-thumb.is-active {
  opacity: 1;
  border-color: var(--lime);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(120,197,32,0.4);
}
.gc-thumb:hover:not(.is-active) {
  opacity: 0.78;
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .gc-stage  { height: clamp(200px, 55vw, 280px); border-radius: 14px; }
  .gc-arrow  { width: 36px; height: 36px; font-size: 1.4rem; }
  .gc-prev   { left: 8px; }
  .gc-next   { right: 8px; }
  .gc-thumb  { width: 64px; height: 46px; border-radius: 8px; }
  .gc-thumbs { gap: 6px; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.15s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  border: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover { background: rgba(120,197,32,0.35); }

.lb-close { top: 20px; right: 20px; font-size: 1.1rem; }
.lb-prev  { left: 18px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--snow-2);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
}
.about-text .eyebrow { display: inline-flex; margin-bottom: 12px; }
.about-text h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}
.about-text p {
  margin: 0 0 14px;
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.78;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 5px;
  padding: 22px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.as-num {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--lime-md), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.as-label {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   DESKTOP ≥ 1024px — enhancement overrides
   ============================================================ */
@media (min-width: 1024px) {
  .package-details { padding: 32px 36px; }

  .as-num  { font-size: 2.2rem; }
  .as-label { font-size: 0.82rem; }
  .about-stat { padding: 28px 16px; }

  .gc-arrow { width: 54px; height: 54px; font-size: 2.2rem; }
}

/* ============================================================
   RESPONSIVE — TABLET ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  .trust-grid { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; }
  .trust-sep  { display: none; }
  .trust-item:nth-child(odd)  { border-right: 1px solid var(--line); }
  .trust-item:nth-child(n+3)  { border-top:  1px solid var(--line); }

  .package-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .package-image   { min-height: 280px; }
  .package-details { padding: 22px 24px; }
  .inclusions      { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --wrap: calc(100% - 32px); }

  .page-shell { padding: 32px 0 56px; }
  .nav-inner  { height: 56px; }
  .nav-logo-text { font-size: 0.95rem; }

  .hero-eyebrow { font-size: 0.68rem; padding: 5px 14px; }
  .hero-title   { font-size: clamp(2rem, 10.5vw, 2.9rem); }
  .hero-sub     { font-size: 0.93rem; }
  .hero-cta     { height: 48px; padding: 0 28px; font-size: 0.92rem; }

  .trust-item { flex: 1 1 50%; padding: 16px 12px; }
  .trust-num  { font-size: 1.1rem; }
  .trust-stars { letter-spacing: 1px; }

  .section-head    { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.5rem, 8vw, 1.9rem); }

  .package-image   { min-height: 220px; }
  .package-details {
    padding: 16px;
    background: #fff;
    overflow: hidden;
  }
  .package-title   { font-size: 1.08rem; }
  .route-pill { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .inclusions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .package-actions { width: 100%; }
  .package-btn {
    flex: 1;
    white-space: normal;
    text-align: center;
    font-size: 0.82rem;
  }

  .featured-tag {
    top: 12px; right: 12px;
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .gallery-tabs { gap: 8px; }
  .gallery-tab  { padding: 8px 16px; font-size: 0.8rem; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about-stat  { padding: 16px 8px; }
  .as-num      { font-size: 1.35rem; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ============================================================
   1. SCROLL REVEAL — Fade In / Slide In base
   ============================================================ */
.ao {
  opacity: 0;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.ao-fade-up    { transform: translateY(38px); }
.ao-slide-left  { transform: translateX(-52px); }
.ao-slide-right { transform: translateX(52px); }
.ao-scale-up   { transform: scale(0.88); }
.ao-d1 { transition-delay: 0.08s; }
.ao-d2 { transition-delay: 0.16s; }
.ao-d3 { transition-delay: 0.24s; }
.ao-d4 { transition-delay: 0.32s; }
.ao-d5 { transition-delay: 0.40s; }
.ao-d6 { transition-delay: 0.50s; }
.ao.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   2. READING PROGRESS BAR
   ============================================================ */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--gold-viv));
  z-index: 999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ============================================================
   3. HERO TEXT REVEAL — staggered fade-up
   ============================================================ */
.hero-eyebrow { animation: heroUp 0.7s  var(--ease-out) 0.2s  both; }
.hero-title   { animation: heroUp 0.85s var(--ease-out) 0.45s both; }
.hero-sub     { animation: heroUp 0.75s var(--ease-out) 0.72s both; }
.hero-cta     { animation: heroUp 0.7s  var(--ease-out) 1.0s  both; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   4. HOVER EFFECTS
   ============================================================ */
/* Trust bar — subtle lift only */
.trust-item {
  border-radius: 12px;
  transition: transform 0.25s var(--ease-out);
  cursor: default;
}
.trust-item:hover { transform: translateY(-3px); }

/* Button ripple */
.package-btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.55s linear forwards;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(6); opacity: 0; } }

/* Package image — simple zoom on hover (no rotateY) */
.package-image img { transition: transform 0.45s var(--ease-out); }
.package-card:hover .package-image img { transform: scale(1.05); }

/* ============================================================
   7. LIGHTBOX — scale-in modal animation
   ============================================================ */
@keyframes lbBgIn  { from { opacity: 0; }               to { opacity: 1; } }
@keyframes lbImgIn { from { opacity: 0; transform: scale(0.75); } to { opacity: 1; transform: scale(1); } }
.lightbox.is-open              { animation: lbBgIn  0.28s ease both; }
.lightbox.is-open .lb-img-wrap { animation: lbImgIn 0.38s cubic-bezier(0.34,1.56,0.64,1) 0.05s both; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--snow-2);
  padding: 80px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-out);
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}
.faq-q:hover { color: var(--lime-dk); }
.faq-a { padding: 0 24px; }
.faq-a p { margin: 0 0 20px; color: var(--text-3); font-size: 0.95rem; line-height: 1.7; }

/* footer address */
.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 60px 0; }
}

/* ============================================================
   WHY VISIT DANDELI SECTION
   ============================================================ */
.why-dandeli-section {
  background: var(--snow);
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--snow-2);
  border: 1px solid var(--line-lt);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.why-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin-bottom: 16px;
  color: var(--lime-dk);
  background: var(--lime-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0 0 12px; }
.why-card p { font-size: 0.92rem; color: var(--text-3); line-height: 1.7; margin: 0; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--snow-2);
  padding: 80px 0;
}
.testimonials-track-wrap {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.testimonials-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewScroll 35s linear infinite;
}
.testimonials-grid:hover { animation-play-state: paused; }
@keyframes reviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  transition: box-shadow 0.25s var(--ease-out);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.t-stars { color: var(--gold-viv); font-size: 1.15rem; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 0.93rem; color: var(--text-2); line-height: 1.75; margin: 0 0 18px; font-style: italic; }
.t-author { display: flex; flex-direction: column; gap: 2px; }
.t-author strong { font-size: 0.95rem; color: var(--text); }
.t-author span { font-size: 0.82rem; color: var(--muted); }

/* Hero smaller subtitle */
.hero-title-sm {
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.9;
  display: block;
  margin-top: 8px;
}

/* Footer SEO text */
.footer-seo {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0 0;
  margin-top: 32px;
}
.footer-seo p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 800px;
}
.footer-seo a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-seo a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 300px; max-width: 300px; }
}
@media (max-width: 768px) {
  .why-dandeli-section { padding: 60px 0; }
  .testimonials-section { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }
  .testimonial-card { min-width: 260px; max-width: 260px; padding: 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 60px 0; }
}

/* ============================================================
   BLOG HIGHLIGHTS — Homepage
   ============================================================ */
.blog-section { background: var(--snow); padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-dk);
  background: var(--lime-lt);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.blog-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 10px; line-height: 1.4; }
.blog-body p { font-size: 0.88rem; color: var(--text-3); line-height: 1.65; margin: 0; flex: 1; }
.blog-read { font-size: 0.85rem; font-weight: 600; color: var(--lime-dk); margin-top: 16px; display: inline-block; }
.blog-card:hover .blog-read { text-decoration: underline; }
.blog-cta { text-align: center; margin-top: 40px; }
.btn-view-all {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lime-dk);
  border: 2px solid var(--lime-dk);
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-view-all:hover { background: var(--lime-dk); color: #fff; }

/* ============================================================
   BLOG PAGE — blog.html
   ============================================================ */
.blog-hero {
  background: linear-gradient(135deg, #1a2e0a 0%, #2d5016 100%);
  color: #fff;
  padding: 140px 0 60px;
  text-align: center;
}
.blog-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin: 12px 0 16px; }
.blog-hero p { font-size: 1.05rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }
.blog-hero .eyebrow { color: var(--lime); }

.blog-page { padding: 60px 0 80px; background: var(--snow-2); }
.blog-article {
  background: var(--snow);
  border: 1px solid var(--line-lt);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.article-header { padding: 36px 40px 0; }
.article-header h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: var(--text); margin: 12px 0 8px; line-height: 1.3; }
.article-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; }
.article-content { padding: 32px 40px 40px; }
.article-content p { font-size: 0.96rem; color: var(--text-2); line-height: 1.8; margin: 0 0 18px; }
.article-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.article-content h4 { font-size: 1.05rem; font-weight: 600; color: var(--text-2); margin: 20px 0 10px; }
.article-content ul { padding-left: 24px; margin: 0 0 18px; }
.article-content li { font-size: 0.94rem; color: var(--text-2); line-height: 1.8; margin-bottom: 6px; }
.article-content a { color: var(--lime-dk); font-weight: 600; text-decoration: underline; }
.article-content a:hover { color: var(--lime); }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-section { padding: 60px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 120px 0 48px; }
  .article-header { padding: 24px 20px 0; }
  .article-content { padding: 24px 20px 32px; }
}
