/* ================================================================
   JOURNEYS AFRICA DMC — Main Stylesheet
   Aesthetic: Refined Safari Luxury — warm earth, deep forest, gold
   Fonts: Cormorant Garamond (display) + Jost (body)
   ================================================================ */

:root {
  --earth: #8B5E3C;
  --earth-light: #C4956A;
  --earth-dark: #5C3D22;
  --forest: #1C3127;
  --forest-mid: #2D4A38;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --text: #2A1F14;
  --text-light: #6B5744;
  --white: #FFFFFF;
  --shadow: 0 4px 30px rgba(28,49,39,0.12);
  --shadow-lg: 0 20px 60px rgba(28,49,39,0.18);
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  padding: 0.85rem 2.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--earth);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: 0;
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--earth);
  color: var(--earth);
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--earth); color: var(--white); }

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: 1rem;
}
.btn-outline-light:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar-inner span { display: flex; align-items: center; gap: 0.5rem; }
.topbar-social {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}
.topbar-social a { color: rgba(255,255,255,0.6); transition: color 0.2s; font-size: 0.8rem; }
.topbar-social a:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(139,94,60,0.12);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--earth);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--earth-dark); letter-spacing: 0.02em; }
.logo-sub { font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links li a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 0.9rem;
  transition: color var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--earth); }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a.nav-cta {
  background: var(--earth);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  margin-left: 0.5rem;
}
.nav-links li a.nav-cta::after { display: none; }
.nav-links li a.nav-cta:hover { background: var(--gold); color: var(--forest); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--earth); transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,49,39,0.75) 0%, rgba(28,49,39,0.4) 50%, rgba(92,61,34,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { color: var(--white); }
.hero-text .section-label { color: var(--gold-light); }
.hero-text h1 {
  font-style: italic;
  margin: 0.5rem 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-text p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
}
.hero-stat-card .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-card .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.35rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.4); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== SECTION BASE ===== */
.section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-header p { color: var(--text-light); margin-top: 1rem; font-size: 1rem; }

/* ===== TOUR CARDS ===== */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.tour-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tour-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-img .placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--earth-dark), var(--forest-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 3rem;
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.tour-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.tour-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.tour-card-meta i { color: var(--gold); }

.tour-card-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.tour-card-body p { font-size: 0.88rem; color: var(--text-light); flex: 1; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.tour-price { font-family: 'Cormorant Garamond', serif; }
.tour-price-from { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }
.tour-price-amount { font-size: 1.6rem; color: var(--earth); }
.tour-price-amount small { font-size: 0.8rem; }
.tour-card-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}
.tour-card-link:hover { gap: 0.9rem; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--forest);
  color: var(--white);
  padding: 6rem 0;
}
.about-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-wrap .about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--forest-mid), var(--earth-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
}
.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  opacity: 0.5;
}
.about-text .section-label { color: var(--gold-light); }
.about-text h2 { color: var(--white); margin-bottom: 1.25rem; font-style: italic; }
.about-text p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

/* ===== BLOG SECTION ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.blog-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--earth), var(--earth-dark));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-light); }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--earth);
  transition: gap var(--transition);
}
.blog-card-link:hover { gap: 0.8rem; }

/* ===== SOCIAL SECTION ===== */
.social-section { background: var(--cream-dark); }
.social-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.social-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--earth-light);
  color: var(--earth);
  cursor: pointer;
  transition: var(--transition);
  background: none;
}
.social-tab.active, .social-tab:hover { background: var(--earth); color: var(--white); border-color: var(--earth); }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.social-card {
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: none;
}
.social-card.active { display: block; }
.social-card:hover { transform: translateY(-3px); }
.social-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--white);
}
.social-icon.twitter { background: #000; }
.social-icon.linkedin { background: #0077B5; }
.social-card-handle { font-size: 0.75rem; color: var(--text-light); }
.social-card-handle strong { display: block; color: var(--text); font-size: 0.85rem; }
.social-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.social-card-footer { margin-top: 1rem; display: flex; justify-content: space-between; align-items: center; }
.social-stats { display: flex; gap: 1rem; font-size: 0.72rem; color: var(--text-light); }
.social-stats span { display: flex; align-items: center; gap: 0.3rem; }
.social-card-date { font-size: 0.7rem; color: var(--text-light); }
.social-follow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--earth);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth) 50%, var(--gold) 100%);
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'AFRICA';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;
  font-weight: 700;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-banner .section-label { color: rgba(255,255,255,0.7); }
.cta-banner h2 { color: var(--white); font-style: italic; margin: 0.5rem 0 1rem; }
.cta-banner p { opacity: 0.85; max-width: 500px; margin: 0 auto 2.5rem; }

/* ===== FOOTER ===== */
.footer { background: var(--forest); color: rgba(255,255,255,0.8); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding: 5rem 0;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo .logo-mark { background: var(--earth); }
.footer-logo .logo-main { color: var(--cream); }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

.footer-links h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.88rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-links ul li a:hover { opacity: 1; color: var(--gold-light); }

.footer-contact p { font-size: 0.88rem; opacity: 0.7; display: flex; gap: 0.6rem; margin-bottom: 0.6rem; }
.footer-contact i { color: var(--gold-light); width: 14px; flex-shrink: 0; margin-top: 0.2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.5;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--forest);
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=800&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-inner { position: relative; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-style: italic; margin-top: 0.5rem; }

/* ===== CATEGORY FILTER ===== */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-light);
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  display: inline-block;
}
.filter-btn:hover, .filter-btn.active { background: var(--earth); color: var(--white); border-color: var(--earth); }

/* ===== BLOG DETAIL ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.blog-content { max-width: 720px; }
.blog-content h1 { font-style: italic; margin-bottom: 1rem; }
.blog-content .post-meta { display: flex; gap: 1.5rem; color: var(--text-light); font-size: 0.8rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--cream-dark); }
.blog-content .post-cover { width: 100%; height: 420px; object-fit: cover; margin-bottom: 2.5rem; }
.blog-body { font-size: 1rem; line-height: 1.85; color: var(--text); }
.blog-body p { margin-bottom: 1.5rem; }
.blog-body h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.blog-body h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--earth); }

.blog-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); padding: 1.5rem; margin-bottom: 2rem; box-shadow: var(--shadow); }
.sidebar-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
}

/* ===== TOUR DETAIL ===== */
.tour-detail-hero { position: relative; height: 55vh; min-height: 400px; }
.tour-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-detail-hero .hero-overlay { background: linear-gradient(to top, rgba(28,49,39,0.8) 0%, transparent 60%); }
.tour-detail-hero-text {
  position: absolute;
  bottom: 3rem; left: 0; right: 0;
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  color: var(--white);
}
.tour-detail-hero-text h1 { font-style: italic; }

.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: start;
}
.tour-highlights { background: var(--cream-dark); padding: 2rem; margin: 2rem 0; }
.tour-highlights h3 { color: var(--earth); margin-bottom: 1rem; }
.tour-highlights ul li { padding: 0.4rem 0; display: flex; gap: 0.6rem; font-size: 0.9rem; }
.tour-highlights ul li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 0.25rem; }

.tour-sidebar-box {
  background: var(--forest);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.tour-sidebar-box .price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold-light); line-height: 1; }
.tour-sidebar-box .price small { font-size: 1rem; }
.tour-sidebar-box .price-from { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 0.25rem; }
.tour-meta-list { margin: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.tour-meta-item { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }
.tour-meta-item span:first-child { opacity: 0.6; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 4rem; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--cream-dark);
  font-size: 0.85rem; font-weight: 400;
  transition: var(--transition);
  color: var(--text-light);
}
.pagination a:hover { border-color: var(--earth); color: var(--earth); }
.pagination .current { background: var(--earth); color: var(--white); border-color: var(--earth); }

/* ===== ABOUT PAGE ===== */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.value-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--white); box-shadow: var(--shadow); }
.value-card .value-icon {
  width: 64px; height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem; color: var(--earth);
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.88rem; color: var(--text-light); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tours-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-layout, .tour-detail-layout { grid-template-columns: 1fr; }
  .blog-sidebar, .tour-sidebar-box { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--cream-dark);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 0; display: block; border-bottom: 1px solid var(--cream-dark); }
  .nav-links li:last-child a { border: none; }
  .navbar { position: relative; }
  .tours-grid, .blog-grid, .social-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .topbar { display: none; }
  .hero { min-height: 100svh; }
  .hero-text h1 { font-size: 3rem; }
}

/* ===== LOGO IMAGE ===== */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.dest-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,49,39,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: var(--white);
}
.dest-card-overlay h3 {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.15rem;
}
.dest-card-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-card i { font-size: 1.75rem; color: var(--earth); margin-bottom: 1rem; display: block; }
.why-card h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 500; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); }

/* ===== ACTIVITIES TABS ===== */
.activities-section { background: var(--forest); padding: 6rem 0; color: var(--white); }
.activities-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.act-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  background: none;
  transition: var(--transition);
}
.act-tab.active, .act-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

.act-panel { display: none; }
.act-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.act-panel h2 { color: var(--white); font-style: italic; margin-bottom: 1rem; }
.act-panel p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.act-panel ul { list-style: none; margin-bottom: 2rem; }
.act-panel ul li { color: rgba(255,255,255,0.7); font-size: 0.88rem; padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem; }
.act-panel ul li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }
.act-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.act-img-pair img { width: 100%; height: 200px; object-fit: cover; }
.act-img-pair img:first-child { margin-top: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); padding: 2rem; box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author-info strong { display: block; font-size: 0.85rem; color: var(--text); }
.testimonial-author-info span { font-size: 0.75rem; color: var(--text-light); }
.tripadvisor-badge { width: 80px; margin-left: auto; opacity: 0.6; }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.service-item {
  padding: 2.5rem;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition);
}
.service-item:hover { background: var(--cream-dark); }
.service-item:nth-child(2n) { border-right: none; }
.service-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.service-item h4 { font-family: 'Jost', sans-serif; font-weight: 500; margin-bottom: 0.4rem; }
.service-item p { font-size: 0.85rem; color: var(--text-light); }

@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .act-panel.active { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-item { border-right: none; }
}
