/* ============================================================
   TARARAFTING.ME — main.css
   Base styles, design system, nav, footer, homepage sections
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Figtree:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colours — dark forest / Balkan wilderness */
  --black:   #07130d;   /* forest dark — primary background */
  --white:   #f7f2e6;   /* warm cream — primary text / light surfaces */
  --off:     #0d1f10;   /* dark green — alternate section backgrounds */
  --gray:    #1e3521;   /* dark green — borders / dividers */
  --mid:     #b1b1b1;   /* gray — muted / secondary text */
  --green:   #0a1f0c;   /* deep dark green */
  --green2:  #1a3d1e;   /* medium dark green */
  --accent:  #ffef62;   /* bright yellow — primary accent */
  --warm:    #ffd600;   /* golden yellow — secondary accent */

  /* Typography */
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  /* Spacing */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1280px;
  --gutter:      clamp(20px, 4vw, 60px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ---------- Typography ---------- */
h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; color: var(--accent); }
h2 { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: var(--accent); }
h3 { font-family: var(--font-head); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.2; color: var(--white); }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.3; color: var(--white); }
h5 { font-family: var(--font-body); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
p { font-size: clamp(0.95rem, 1.2vw, 1.05rem); line-height: 1.7; color: rgba(247, 242, 230, 0.72); }
.label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--off); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-dark {
  background: var(--accent);
  color: var(--black);
  border: 2px solid var(--accent);
}
.btn-dark:hover { background: var(--warm); border-color: var(--warm); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(247, 242, 230, 0.35);
}
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost .arrow {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(247, 242, 230, 0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 68px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links > li > a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  color: rgba(247, 242, 230, 0.82);
  transition: color 0.15s, background 0.15s;
}
.nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

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

/* Mega menu trigger */
.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-chevron {
  transition: transform 0.2s;
}
.has-mega:hover .nav-chevron { transform: rotate(180deg); }

/* Invisible hover bridge */
.has-mega::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-mega { position: relative; }

/* Mega menu panel */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--off);
  border: 1px solid var(--gray);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  min-width: 640px;
  z-index: 999;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 0;
  padding: 24px;
}

.mega-col {
  padding: 0 20px 0 0;
  border-right: 1px solid var(--gray);
  margin-right: 20px;
}
.mega-col:last-of-type { border-right: none; margin-right: 0; }

.mega-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

.mega-tour-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background 0.15s;
  margin-bottom: 4px;
}
.mega-tour-card:hover { background: rgba(255,255,255,0.05); }
.mega-tour-img {
  width: 52px; height: 40px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.mega-tour-img img { width: 100%; height: 100%; object-fit: cover; }
.mega-tour-name { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.mega-tour-meta { display: block; font-size: 0.75rem; color: var(--mid); margin-top: 1px; }

.mega-view-all {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 10px;
  padding: 4px 8px;
}
.mega-view-all:hover { text-decoration: underline; }

.mega-promo {
  padding: 16px;
  background: var(--green2);
  border-radius: var(--r-md);
}
.mega-promo-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.mega-promo p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(247, 242, 230, 0.72);
  margin-bottom: 14px;
}
.mega-promo .btn { width: 100%; text-align: center; font-size: 0.82rem; padding: 10px 16px; }
.mega-all-link {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-top: 10px;
}
.mega-all-link:hover { text-decoration: underline; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Mobile Nav Drawer ---------- */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100dvh;
  background: var(--off);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray);
}
.mobile-nav-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gray);
  transition: background 0.15s;
}
.mobile-nav-close:hover { background: var(--green2); }

.mobile-nav-body { flex: 1; padding: 12px 0; }

.mobile-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.15s;
}
.mobile-section-toggle:hover { background: rgba(255,255,255,0.04); }
.mobile-section-toggle .nav-chevron { transition: transform 0.2s; }
.mobile-section-toggle[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.mobile-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-section-body.open { max-height: 600px; }

.mobile-tour-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 32px;
  font-size: 0.875rem;
  color: rgba(247, 242, 230, 0.75);
  transition: background 0.15s;
}
.mobile-tour-link:hover { background: rgba(255,255,255,0.04); }
.mobile-tour-meta { font-size: 0.75rem; color: var(--mid); }

.mobile-nav-links { border-top: 1px solid var(--gray); padding: 8px 0; margin-top: 4px; }
.mobile-nav-links a {
  display: block;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(247, 242, 230, 0.82);
  transition: background 0.15s;
}
.mobile-nav-links a:hover { background: rgba(255,255,255,0.04); }

.mobile-nav-cta {
  padding: 16px 20px;
  border-top: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { width: 100%; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Footer ---------- */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--accent);
}
.footer-brand p { font-size: 0.875rem; color: rgba(247, 242, 230, 0.5); line-height: 1.6; max-width: 240px; }
.footer-col h5 { color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(247, 242, 230, 0.5); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(247, 242, 230, 0.3);
}

/* ---------- Floating Contact Button ---------- */
.contact-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
body.has-sticky-bar .contact-float-wrap { bottom: 80px; }

.contact-float-btn {
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.contact-float-menu {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
}
.contact-float-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-float-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-float-menu a:last-child {
  border-bottom: none;
}
.contact-float-menu a:hover {
  background: var(--off);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ---------- Homepage — Hero (framed) ---------- */
.hero-outer {
  padding: 14px 14px 0;
}

.hero-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

/* Transparent nav inside the hero frame */
.hero-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  background: transparent;
}

.hero-header .nav-logo {
  color: var(--white);
  min-width: 120px;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hero-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  color: rgba(247, 242, 230, 0.82);
  transition: color 0.15s, background 0.15s;
}
.hero-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.hero-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(247, 242, 230, 0.6);
  min-width: 120px;
  justify-content: flex-end;
}
.hero-follow-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(247,242,230,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,242,230,0.75);
  transition: border-color 0.15s, color 0.15s;
}
.hero-follow-icon:hover { border-color: var(--accent); color: var(--accent); }

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,19,13,0.45) 0%, rgba(7,19,13,0.2) 40%, rgba(7,19,13,0.55) 100%);
}

/* Centered hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px var(--gutter) 80px;
  color: var(--white);
  width: 100%;
}
.hero-content h1 { color: var(--accent); margin-bottom: 20px; max-width: 800px; }
.hero-content p { color: rgba(247,242,230,0.8); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Homepage — Trust Bar ---------- */
.trust-bar {
  background: var(--off);
  border-bottom: 1px solid var(--gray);
  padding: 16px 0;
}
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(247, 242, 230, 0.62);
  white-space: nowrap;
}
.trust-item-icon { font-size: 1rem; }

/* ---------- Homepage — Stats ---------- */
.stats-section { padding: var(--section-pad) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--gray);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.stat-card {
  padding: 40px 32px;
  text-align: center;
  background: var(--off);
  border-right: 1px solid var(--gray);
}
.stat-card:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent);
}
.stat-label { font-size: 0.82rem; color: var(--mid); font-weight: 500; }

/* ---------- Homepage — Featured Tours ---------- */
.featured-section { padding: var(--section-pad) 0; background: var(--off); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 { margin-bottom: 0; }

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

/* Tour card */
.tour-card {
  background: var(--black);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.45); }

.tour-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green);
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.04); }

.tour-card-season {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(7,19,13,0.72);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.tour-card-body { padding: 20px; }
.tour-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.tour-card-top h4 { font-size: 1rem; font-weight: 700; color: var(--white); }
.tour-card-desc { font-size: 0.875rem; color: rgba(247,242,230,0.58); margin-bottom: 16px; line-height: 1.5; }
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray);
}
.tour-card-meta { font-size: 0.78rem; color: var(--mid); font-weight: 500; }
.tour-card-price { font-size: 0.9rem; font-weight: 700; color: var(--accent); }

/* Difficulty dots */
.diff-dots { display: flex; align-items: center; gap: 4px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 242, 230, 0.4);
  background: transparent;
}
.dot.filled { background: var(--accent); border-color: var(--accent); }

/* ---------- Homepage — Why Tara Section ---------- */
.why-section { padding: var(--section-pad) 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--off);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-content .label { margin-bottom: 12px; display: block; }
.why-content h2 { margin-bottom: 20px; }
.why-content p { margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 { margin-bottom: 3px; }
.why-item p { font-size: 0.875rem; margin: 0; }

/* ---------- Homepage — Canyon Strip ---------- */
.canyon-strip {
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
}
.canyon-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.canyon-text .label { color: var(--mid); margin-bottom: 12px; display: block; }
.canyon-text h2 { color: var(--accent); margin-bottom: 16px; }
.canyon-text p { color: rgba(247, 242, 230, 0.72); margin-bottom: 28px; }
.canyon-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.canyon-fact .cf-val {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.canyon-fact .cf-key { font-size: 0.78rem; font-weight: 500; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }
.canyon-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1/1; }
.canyon-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Homepage — Testimonials ---------- */
.reviews-section { padding: var(--section-pad) 0; background: var(--off); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--black);
  border: 1px solid var(--gray);
  border-radius: var(--r-lg);
  padding: 28px;
}
.review-stars { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; color: var(--accent); }
.review-text { font-size: 0.9rem; line-height: 1.65; color: rgba(247,242,230,0.68); margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.review-location { font-size: 0.78rem; color: var(--mid); }

/* ---------- Homepage — FAQ ---------- */
.faq-section { padding: var(--section-pad) 0; }
.faq-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }
.faq-intro .label { margin-bottom: 12px; display: block; }
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro p { margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray); }
.faq-item:first-child { border-top: 1px solid var(--gray); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--mid);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 0.88rem; color: rgba(247,242,230,0.62); padding-bottom: 16px; line-height: 1.65; }

/* Button FAQ pattern */
button.faq-question { background: none; border: none; font: inherit; }
button.faq-question::after { content: "+"; font-size: 1.3rem; font-weight: 300; color: var(--mid); margin-left: 12px; }
.faq-item.open button.faq-question::after { content: "−"; }

/* ---------- Homepage — CTA Banner ---------- */
.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--green);
  text-align: center;
  color: var(--white);
}
.cta-banner .label { color: var(--mid); margin-bottom: 16px; display: block; }
.cta-banner h2 { color: var(--accent); margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(247,242,230,0.62); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: rgba(247,242,230,0.3); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---------- Page Hero (non-tour pages) ---------- */
.page-hero {
  background: var(--off);
  border-bottom: 1px solid var(--gray);
  padding: 64px 0 56px;
}
.page-hero .label { margin-bottom: 12px; display: block; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { max-width: 560px; font-size: clamp(1rem, 1.3vw, 1.1rem); }

/* ---------- About Page ---------- */
.about-intro { padding: var(--section-pad) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  padding: 24px;
  background: var(--off);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray);
}
.value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; margin: 0; }

/* ---------- Contact Page ---------- */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--off);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray);
  margin-bottom: 16px;
}
.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-method h4 { margin-bottom: 4px; }
.contact-method p { font-size: 0.875rem; margin: 0 0 10px; }
.contact-method .btn { font-size: 0.82rem; padding: 9px 18px; }

.contact-info-block { padding: 0; }
.contact-info-block h3 { margin-bottom: 20px; }

/* ---------- Tours Listing Page ---------- */
.tours-listing { padding: var(--section-pad) 0; }
.tours-category { margin-bottom: 60px; }
.tours-category h2 { margin-bottom: 8px; }
.tours-category .category-desc { margin-bottom: 28px; font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .canyon-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mega-menu { display: none; }
  /* Hero header responsive */
  .hero-nav-links { display: none; }
  .hero-follow { display: none; }
  .hero-header .nav-hamburger { display: flex; }
  .hero-header { padding: 20px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { aspect-ratio: 16/9; order: -1; }
  .canyon-inner { grid-template-columns: 1fr; }
  .canyon-img-wrap { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-two-col { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-outer { padding: 10px 10px 0; }
  .hero-inner { border-radius: 14px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
  .canyon-facts { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
