/* =========================================================
   PRODUCTION ROUTE PAGE STYLESHEET
   Project: Kilimanjaro Route Page Template
   Palette: Jaynevy forest green + soft safari cream
   Fonts: Quicksand headings + Inter body
========================================================= */

/* =========================================================
   1. IMPORTS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   2. CSS VARIABLES
========================================================= */
:root {
  --primary: #3a6a2a;
  --primary-dark: #284f1d;
  --primary-light: #5f914b;
  --primary-pale: #eaf5e4;

  --text: #000000;
  --text-soft: #263322;
  --muted: #5f6f5a;

  --bg: #f7fdf3;
  --white: #ffffff;
  --cream: #fbfff7;
  --border: #d7e8cf;

  --accent: #b98532;
  --accent-light: #d7a85a;
  --accent-pale: #fff4df;

  --danger: #c0392b;

  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  --radius: 6px;
  --radius-lg: 14px;
  --max-width: 900px;
  --wide-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

img,
picture,
svg {
  max-width: 100%;
}

/* =========================================================
   4. TYPOGRAPHY
========================================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-soft);
  font-size: 1.025rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

strong {
  color: var(--text);
}

/* =========================================================
   5. GLOBAL LAYOUT
========================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

section:nth-child(even) {
  background: var(--cream);
}

main > section:not(.hero):not(.cta-section):not(.seo-image-section):nth-of-type(even) {
  background: var(--cream);
}

.article-section {
  padding: var(--space-xl) 0;
}

.article-section + .article-section {
  border-top: 1px solid var(--border);
}

/* =========================================================
   6. HEADER, NAVIGATION & BREADCRUMB
========================================================= */
.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.header-container {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0.75rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-logo {
  display: flex;
  align-items: center;
}

.logo {
  max-height: 62px;
  width: auto;
  display: block;
}

.nav-bar {
  display: flex;
  align-items: center;
}

.nav-items {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-items li {
  position: relative;
}

.nav-items a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.2s, color 0.2s;
}

.nav-items a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 245px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 1000;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  color: var(--text-soft);
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  display: block;
  font-size: 0.88rem;
}

.dropdown a:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}

.breadcrumb {
  background: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--muted);
}

.menu-icon {
  display: none;
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--white);
  margin: 6px auto;
  border-radius: 2px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  z-index: 998;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 86%;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 1.25rem;
  overflow-y: auto;
  transition: right 0.25s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
}

.drawer.active {
  right: 0;
}

.close-icon {
  background: var(--primary-pale);
  color: var(--primary-dark);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  display: block;
}

.mobile-menu {
  list-style: none;
  margin-top: 1rem;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu a,
.mobile-dropdown-toggle button {
  width: 100%;
  color: var(--text);
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding: 0 0 0.75rem 1rem;
}

.mobile-dropdown-toggle.open .mobile-submenu {
  display: block;
}

.mobile-submenu li {
  border-bottom: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.45rem 0;
}

/* =========================================================
   7. HERO SECTION
========================================================= */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, #203d18 100%);
  color: var(--white);
  padding: var(--space-xxl) 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(135deg, rgba(58, 106, 42, 0.25) 0%, rgba(185, 133, 50, 0.16) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-sm);
  border-left: 3px solid var(--accent-light);
  padding-left: 0.75rem;
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: var(--space-md);
}

.hero-lead {
  font-size: 1.125rem;
  color: #eef8e8;
  max-width: 680px;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: var(--space-md);
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dcebd5;
}

.elevation-silhouette {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
  opacity: 0.65;
}

/* =========================================================
   8. FEATURED SNIPPET BOX
========================================================= */
.snippet {
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.snippet p {
  color: var(--text-soft);
  font-size: 1rem;
  margin: 0;
}

.snippet strong {
  color: var(--primary-dark);
}

/* =========================================================
   9. HIGHLIGHT CARDS
========================================================= */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.2s, transform 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 8px 24px rgba(58, 106, 42, 0.14);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.highlight-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.highlight-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================================
   10. DIFFICULTY SECTION
========================================================= */
.difficulty-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  align-items: flex-start;
}

.difficulty-scale {
  flex: 0 0 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
}

.difficulty-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.difficulty-sub {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.meter {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: var(--space-sm) 0;
}

.meter-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border);
}

.meter-dot.filled {
  background: var(--primary);
}

.difficulty-text {
  flex: 1;
  min-width: 260px;
}

/* =========================================================
   11. ITINERARY SECTION
========================================================= */
.itinerary-day {
  border-left: 3px solid var(--primary-light);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.itinerary-day:hover {
  border-left-color: var(--accent);
  box-shadow: 0 6px 18px rgba(58, 106, 42, 0.10);
}

.day-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.day-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.day-elev {
  font-size: 0.8rem;
  color: var(--primary-dark);
  background: var(--primary-pale);
  padding: 3px 10px;
  border-radius: 20px;
}

.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0 0.75rem;
}

.day-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* =========================================================
   12. TABLES / ROUTE COMPARISON
========================================================= */
.route-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
}

thead tr {
  background: var(--primary-dark);
  color: var(--white);
}

th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-soft);
}

tbody tr:nth-child(even) {
  background: var(--bg);
}

tbody tr.highlight-row {
  background: var(--primary-pale);
  font-weight: 600;
}

tbody tr.highlight-row td:first-child {
  color: var(--primary-dark);
}

/* =========================================================
   13. BEST TIME / SEASON CARDS
========================================================= */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.season-card {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
}

.season-card.best {
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-light);
}

.season-card.good {
  background: var(--accent-pale);
  border: 1.5px solid var(--accent);
}

.season-card.avoid {
  background: #fdecea;
  border: 1.5px solid #e57373;
}

.season-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.season-card p {
  font-size: 0.85rem;
  margin: 0;
}

.season-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.season-tag.best {
  color: var(--primary);
}

.season-tag.good {
  color: var(--accent);
}

.season-tag.avoid {
  color: var(--danger);
}

/* =========================================================
   14. LOCAL GUIDE TIPS
========================================================= */
.tips-list {
  list-style: none;
  margin-top: var(--space-md);
}

.tips-list li {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.tips-list li:last-child {
  border-bottom: none;
}

.tip-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.tip-content h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.tip-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================================
   15. FAQ ACCORDION
========================================================= */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: var(--space-sm);
}

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

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-a {
  padding: 0 0 var(--space-sm);
  color: var(--text-soft);
  font-size: 0.95rem;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* =========================================================
   16. CTA SECTION
========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  color: var(--white);
  text-align: center;
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: #eef8e8;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.cta-section .btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
  text-decoration: none;
}

.cta-section .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  margin-left: var(--space-sm);
}

.cta-section .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

/* =========================================================
   17. PACKING LIST / GEAR
========================================================= */
.gear-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.gear-group h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary-pale);
  padding-bottom: 0.25rem;
}

.gear-group ul {
  list-style: none;
}

.gear-group ul li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}

.gear-group ul li::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
}

/* =========================================================
   18. ACCOMMODATION SECTION
========================================================= */
.accom-band {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.accom-item {
  flex: 1;
  min-width: 200px;
}

.accom-item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.accom-item p {
  font-size: 0.875rem;
  margin: 0;
}

/* =========================================================
   19. SUMMIT SUCCESS RATE
========================================================= */
.rate-visual {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin: var(--space-md) 0;
}

.rate-bar-wrap {
  flex: 1;
  min-width: 200px;
}

.rate-bar-bg {
  background: var(--border);
  border-radius: 20px;
  height: 18px;
  overflow: hidden;
}

.rate-bar-fill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 100%;
  border-radius: 20px;
  transition: width 1s;
}

.rate-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.rate-caption {
  font-size: 0.8rem;
  color: var(--muted);
}

/* =========================================================
   20. TRUST / WHY CLIMB WITH US
========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.trust-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-soft);
}

/* =========================================================
   21. RELATED TOUR PACKAGES
========================================================= */
.related-tours {
  background: var(--cream);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-intro {
  max-width: 760px;
  color: var(--text-soft);
  margin-bottom: var(--space-lg);
}

.tours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.tour {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(58, 106, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(58, 106, 42, 0.16);
}

.featured-tour {
  border-top: 4px solid var(--primary);
}

.tour img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.tour .contents {
  padding: var(--space-md);
}

.tour-tag {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.65rem;
  border-radius: 50px;
  margin-bottom: var(--space-xs);
}

.tour h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.tour p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: var(--space-md);
}

.tour-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-link:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateX(2px);
}

/* =========================================================
   22. SEO IMAGE SECTION
========================================================= */
.seo-image-section {
  background: var(--bg);
  padding: var(--space-lg) 0;
}

.seo-image-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(58, 106, 42, 0.12);
}

.seo-image-card picture,
.seo-image-card img {
  display: block;
  width: 100%;
}

.seo-image-card img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.seo-image-card figcaption {
  padding: 0.95rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  background: var(--primary-pale);
  border-top: 1px solid var(--border);
}

/* =========================================================
   23. FLOATING CONTACT BUTTONS
========================================================= */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.contact-float {
  background: var(--primary-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-float:hover {
  background: var(--primary);
  color: var(--white);
}

.whatsapp-float {
  background: #25d366;
  color: var(--white);
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: var(--white);
}

.whatsapp-float svg,
.contact-float svg {
  display: block;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-float svg {
  width: 20px;
  height: 20px;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* =========================================================
   24. FOOTER
========================================================= */
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  border-top: 2px solid var(--white);
  padding-top: var(--space-xl);
}

.footer-content {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-column h3,
.footer-column h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.footer-column p,
.footer-column li {
  color: #e7f3e1;
  font-size: 0.92rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.55rem;
}

.footer-column a {
  color: #e7f3e1;
  font-weight: 500;
}

.footer-column a:hover {
  color: var(--accent-light);
}

.payment-logo {
  width: 105px;
  background: var(--white);
  padding: 0.4rem;
  border-radius: var(--radius);
}

.partner-title {
  margin-top: var(--space-md);
}

.partner-logo {
  height: 42px;
  background: var(--white);
  padding: 0.35rem;
  border-radius: var(--radius);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  text-align: center;
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom p {
  color: #e7f3e1;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-bottom small {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-block;
  color: #e7f3e1;
}

.footer-bottom a {
  color: var(--accent-light);
  text-decoration: none;
}

/* =========================================================
   25. RESPONSIVE BREAKPOINTS
========================================================= */
@media (max-width: 980px) {
  .nav-bar {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .header-container {
    padding: 0.65rem var(--space-md);
  }

  .logo {
    max-height: 54px;
  }

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

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

  .tour img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .breadcrumb {
    font-size: 0.75rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .stat-bar {
    justify-content: center;
  }

  .difficulty-row {
    flex-direction: column;
  }

  .difficulty-scale {
    flex: none;
    width: 100%;
  }

  .cta-section .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-section .btn-outline,
  .btn-outline {
    margin-left: auto;
    margin-top: var(--space-sm);
  }

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

  .floating-actions {
    right: 12px;
    bottom: 14px;
  }

  .float-btn {
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }

  .seo-image-section {
    padding: var(--space-md) 0;
  }

  .seo-image-card figcaption {
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 480px) {
  .related-tours {
    padding: var(--space-lg) 0;
  }

  .tour img {
    height: 200px;
  }

  .tour .contents {
    padding: var(--space-sm);
  }
}

/* =========================================================
   26. ACCESSIBILITY / REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
