/* ══════════════════════════════════════════════
   PARTNERS SLIDING BANNER
   ══════════════════════════════════════════════ */
.partners-section {
  background: var(--green-deep);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(212,160,55,0.15);
  border-bottom: 1px solid rgba(212,160,55,0.15);
}
.partners-section::before,
.partners-section::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.partners-section::before {
  left: 0;
  background: linear-gradient(to right, var(--green-deep), transparent);
}
.partners-section::after {
  right: 0;
  background: linear-gradient(to left, var(--green-deep), transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: partners-slide 32s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: color 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}
.partner-logo:hover { color: var(--gold-light); }
.partner-logo i {
  font-size: 18px;
  color: rgba(212,160,55,0.55);
  transition: color 0.25s ease;
}
.partner-logo:hover i { color: var(--gold); }
.partner-logo img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}
.partner-logo:hover img { opacity: 0.9; }

/* ══════════════════════════════════════════════
   RECOMMENDED TOURS SECTION
   ══════════════════════════════════════════════ */
.rec-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.rec-tab {
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(61,122,82,0.25);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal-mid);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}
.rec-tab:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
.rec-tab.active {
  background: var(--green-forest);
  border-color: var(--green-forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(34,62,44,0.25);
}
.rec-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rec-tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.rec-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.rec-tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.rec-tour-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rec-tour-card:hover .rec-tour-img img { transform: scale(1.08); }
.rec-tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: white;
  padding: 5px 12px; border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.rec-tour-badge.bestseller { background: var(--gold); }
.rec-tour-badge.luxury     { background: var(--green-deep); }
.rec-tour-badge.family     { background: #1e7fa0; }
.rec-tour-badge.migration  { background: #8b4513; }
.rec-tour-badge.budget     { background: #2e7d32; }
.rec-tour-badge.romance    { background: #b5006e; }
.rec-tour-badge.trekking   { background: #5d4037; }
.rec-rating {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(15,25,18,0.75);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 4px;
}
.rec-tour-body { padding: 20px 22px 22px; }
.rec-tour-meta {
  font-size: 12px; color: var(--charcoal-light);
  margin-bottom: 8px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.rec-tour-meta i { color: var(--gold); font-size: 11px; }
.rec-tour-title {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px; line-height: 1.3;
}
.rec-tour-desc {
  font-size: 13px; color: var(--charcoal-light);
  line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.rec-tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--cream-dark);
}
.rec-price { font-family: var(--font-serif); }
.rec-price .from-label { font-size: 11px; color: var(--charcoal-light); display: block; }
.rec-price .amount { font-size: 1.3rem; font-weight: 800; color: var(--green-forest); }
.rec-price .pp { font-size: 11px; color: var(--charcoal-light); }
.rec-tour-card .btn-sm {
  padding: 8px 18px !important;
  font-size: 12px !important;
  border-radius: var(--radius-pill) !important;
}

/* Hidden state for tab filtering */
.rec-tour-card.hidden { display: none; }

/* ══════════════════════════════════════════════
   GATEWAY CARDS (Website Presentation Section)
   ══════════════════════════════════════════════ */
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gateway-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.gateway-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-hover); }
.gateway-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gateway-card:hover img { transform: scale(1.07); }
.gateway-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(15,35,22,0.88) 100%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 30px;
}
.gateway-icon { font-size: 28px; margin-bottom: 12px; }
.gateway-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 8px; line-height: 1.25;
}
.gateway-desc {
  font-size: 13px; color: rgba(255,255,255,0.72);
  margin-bottom: 18px; line-height: 1.65;
}
.gateway-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.gateway-link i { transition: transform 0.2s ease; }
.gateway-card:hover .gateway-link i { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   PLANNING PROCESS STEPS
   ══════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 52px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.4;
}
.process-step {
  text-align: center;
  position: relative; z-index: 1;
}
.process-icon-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px; color: var(--gold);
  box-shadow: 0 8px 32px rgba(26,48,34,0.35);
  border: 4px solid var(--cream);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .process-icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
}
.process-num {
  position: absolute;
  top: -5px; right: -5px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
}
.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--green-deep);
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 13px; color: var(--charcoal-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   SAFARI TIPS & QUICK INFO
   ══════════════════════════════════════════════ */
.quick-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
  text-align: center;
}
.quick-tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.quick-tip-icon { font-size: 32px; margin-bottom: 12px; }
.quick-tip-title {
  font-family: var(--font-serif);
  font-size: 1rem; color: var(--green-deep);
  margin-bottom: 6px; font-weight: 700;
}
.quick-tip-text { font-size: 13px; color: var(--charcoal-light); line-height: 1.65; }

/* ══════════════════════════════════════════════
   BIG QUOTE / INSPIRATION SECTION
   ══════════════════════════════════════════════ */
.quote-band {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 60%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 600px;
  color: rgba(212,160,55,0.04);
  position: absolute;
  top: -160px; left: -60px;
  line-height: 1; pointer-events: none;
}
.big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cream);
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.quote-attrib {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rec-tours-grid { grid-template-columns: repeat(2, 1fr); }
  .gateway-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .quick-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .rec-tours-grid { grid-template-columns: 1fr; }
  .gateway-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .quick-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .rec-tab { padding: 9px 18px; font-size: 12px; }
  .gateway-card { height: 300px; }
}
@media (max-width: 480px) {
  .quick-tips-grid { grid-template-columns: 1fr; }
}
