/* ============================================================
   COME VACATION AFRICA — Luxury Tanzania Tour Operator
   Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;400;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5edd6;
  --dark:        #0e0c09;
  --dark-brown:  #1c1209;
  --mid-brown:   #2e1f0e;
  --text-dark:   #1a1208;
  --text-body:   #3d2e1e;
  --text-muted:  #7a6a55;
  --cream:       #faf6ee;
  --cream-dark:  #f0e8d8;
  --white:       #ffffff;
  --overlay:     rgba(14, 10, 5, 0.58);
  --overlay-deep:rgba(14, 10, 5, 0.72);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-elegant:'Cormorant Garamond', serif;
  --font-body:   'Lato', sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 24px rgba(14,10,5,0.12);
  --shadow-hover:0 8px 40px rgba(14,10,5,0.22);
  --transition:  0.3s ease;
}

/* ── 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-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Utility Classes ────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.38);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.topbar a { color: var(--gold-light); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-item svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* ── Navigation ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(14,12,9,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-main span { color: var(--gold); }
.nav-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-cta {
  font-size: 0.75rem !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Slider ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080604;
}

/* Ken Burns slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
  transform: scale(1.04) translateZ(0);
  transform-origin: center center;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.04) translateZ(0); }
  to   { transform: scale(1.0)  translateZ(0); }
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(5,3,1,0.45) 0%,
      rgba(5,3,1,0.15) 35%,
      rgba(5,3,1,0.35) 65%,
      rgba(5,3,1,0.82) 100%),
    linear-gradient(to right,
      rgba(5,3,1,0.28) 0%,
      transparent 50%,
      rgba(5,3,1,0.18) 100%);
}

/* Centred content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 1.5rem 0;
  pointer-events: none;
}
.hero-inner {
  text-align: center;
  color: #fff;
  max-width: 860px;
  pointer-events: auto;
}

/* Eyebrow label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.3s forwards;
}
.hero-ey-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.hero-ey-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Title */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

/* Sub-description */
.hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 2.4rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.7s forwards;
}

/* Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.9s forwards;
}
.hero-btn-main {
  padding: 0.9rem 2.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}
.hero-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.55);
}
.hero-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.hero-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* Trust stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  display: inline-flex;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 1.1s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.6rem;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-stat-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
  white-space: nowrap;
}
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Slide counter top-right */
.hero-counter-wrap {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
}
.hero-cnt-cur {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold);
  line-height: 1;
}
.hero-cnt-tot {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.hero-cnt-track {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero-cnt-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--gold);
  height: 0%;
  transition: height 0.3s ease;
}

/* Caption bar bottom-left */
.hero-caption-bar {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-caption-bar.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-caption-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
}
.hero-caption-bar strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(10,7,3,0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow:hover svg { stroke: var(--dark); }
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 5rem; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 5;
}
.hero-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}
.hero-progress-fill.animating {
  transition: width 6s linear;
  width: 100%;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.45;
  animation: heroCueFade 2.5s ease-in-out infinite;
}
@keyframes heroCueFade {
  0%,100% { opacity: 0.35; transform: translateY(0); }
  50%      { opacity: 0.7;  transform: translateY(4px); }
}
.hero-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.hero-scroll-wheel {
  width: 2px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: heroWheel 1.6s ease-in-out infinite;
}
@keyframes heroWheel {
  0%  { transform: translateY(0);   opacity: 1; }
  80% { transform: translateY(9px); opacity: 0; }
  100%{ transform: translateY(0);   opacity: 0; }
}

/* Entrance animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero { min-height: 580px; }
  .hero-content { padding-top: 70px; }
  .hero-stat { padding: 0 0.9rem; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stats { padding: 1rem 1.2rem; border-radius: 40px; }
  .hero-arrow-prev { left: 0.8rem; }
  .hero-arrow-next { right: 0.8rem; }
  .hero-counter-wrap { display: none; }
  .hero-caption-bar { left: 1rem; bottom: 3.5rem; }
  .hero-scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .hero-stat-div { display: none; }
  .hero-stats { gap: 0.6rem 1rem; border-radius: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat { padding: 0.2rem 0.6rem; flex-direction: row; gap: 0.35rem; align-items: baseline; }
  .hero-actions { gap: 0.7rem; }
  .hero-btn-main, .hero-wa-btn { padding: 0.82rem 1.6rem; font-size: 0.82rem; }
}


.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
}
.page-hero-content .hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero-content .hero-desc  { margin: 0 auto 0; max-width: 620px; }

/* ── Section Spacing ────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-brown {
  background: var(--dark-brown);
}
.section-cream { background: var(--cream-dark); }
.section-head  { margin-bottom: 3.5rem; }

/* ── Gold Divider ───────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1.2rem 0 1.6rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── Category Cards (Home) ──────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,5,0.88) 0%, rgba(14,10,5,0.15) 60%);
}
.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2rem 1.8rem;
  color: var(--white);
}
.cat-card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
}
.cat-card-icon svg { width: 22px; height: 22px; fill: var(--dark); }
.cat-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cat-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cat-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.cat-card:hover .cat-card-link { gap: 0.8rem; }

/* ── Tour Package Cards ─────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

.pkg-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pkg-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-card-image img { transform: scale(1.07); }

.pkg-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}
.pkg-badge.popular { background: #e05a2b; color: var(--white); }

.pkg-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.pkg-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.pkg-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pkg-meta-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.pkg-highlights {
  margin-bottom: 1.2rem;
  flex: 1;
}
.pkg-highlights li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding: 0.25rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.pkg-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.38rem;
}

.pkg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.pkg-price { line-height: 1.2; }
.pkg-price-from {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pkg-price-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.pkg-price-per {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Features / Why Us ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-item {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition), border-color var(--transition);
}
.feature-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Destinations Strip ─────────────────────────────────── */
.dest-strip {
  padding: 4.5rem 0 5rem;
  background: var(--cream);
  overflow: hidden;
}
.dest-strip-header {
  text-align: center;
  margin-bottom: 2.6rem;
  padding: 0 1.5rem;
}
.dest-strip-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.dest-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.15;
}
.dest-strip-title em {
  font-style: italic;
  color: var(--gold);
}

/* Track + cards */
.dest-track-wrap {
  position: relative;
  padding: 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.dest-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.dest-track::-webkit-scrollbar { display: none; }

.dest-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  background: #1c1209;
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.dest-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.07); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,4,0.88) 0%, rgba(14,10,4,0.18) 55%, transparent 100%);
}
.dest-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.4rem 1.6rem;
  color: #fff;
}
.dest-card-tag {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 0.22rem 0.75rem;
  margin-bottom: 0.55rem;
}
.dest-card-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
  line-height: 1.1;
}
.dest-card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* Arrows */
.dest-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1.5px solid rgba(28,18,9,0.18);
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 4;
}
.dest-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.dest-arrow-prev { left: 0; }
.dest-arrow-next { right: 0; }

/* Mobile */
@media (max-width: 900px) {
  .dest-track-wrap { padding: 0 0.5rem; }
  .dest-card { flex: 0 0 70vw; aspect-ratio: 4 / 5; }
  .dest-arrow { display: none; }
}
@media (max-width: 560px) {
  .dest-card { flex: 0 0 80vw; }
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.testimonial-origin {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.cta-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Route Cards (Kilimanjaro) ──────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.route-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.route-difficulty {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.diff-moderate  { background: #fff3cd; color: #856404; }
.diff-hard      { background: #fde8e8; color: #c0392b; }
.diff-easy      { background: #d4edda; color: #155724; }
.route-details  { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.route-detail   {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.route-detail svg { width: 13px; height: 13px; fill: var(--gold); }
.route-desc     { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; }

/* ── Zanzibar Gallery Grid ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall img { height: 534px; }

/* ── Info Box ───────────────────────────────────────────── */
.info-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.info-box-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.info-box p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }

/* ── Contact Section ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-info-desc {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.contact-detail-value a { color: rgba(255,255,255,0.82); transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--gold-light); }

.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-group select option { background: var(--dark-brown); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.footer-brand .logo-main span { color: var(--gold); }
.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-btn:hover svg { fill: var(--dark); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 0.3rem; }
.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.83rem;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall img { height: 260px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(14,12,9,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 0; z-index: 9998; overflow-y: auto; padding: 5rem 2rem 2rem; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; font-size: 1rem; padding: 1rem 1.5rem; width: 100%; }
  .nav-links a::after { display: none; }
  .mega-caret { display: none; }
  .mega-menu { display: none !important; }
  .nav-toggle { display: flex; z-index: 9999; position: relative; }
  .nav-cta { display: inline-block !important; margin-top: 0.5rem; width: auto !important; }
  .hero { background-attachment: scroll; min-height: 100svh; }
  .cta-banner { background-attachment: scroll; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero    { min-height: 45vh; }
  .topbar       { display: none; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 2.4rem; }
  .section     { padding: 4rem 0; }
  .packages-grid { grid-template-columns: 1fr; }
  .routes-grid   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HOME PACKAGE CARDS (Climb / Safari / Beach sections)
   ═══════════════════════════════════════════════════════════ */

.home-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.home-pkg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.home-pkg-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.home-pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-pkg-card:hover .home-pkg-img img {
  transform: scale(1.05);
}
.home-pkg-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.home-pkg-badge.popular {
  background: var(--dark);
  color: var(--gold);
}
.home-pkg-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.home-pkg-meta span {
  font-size: 0.72rem;
  background: var(--cream);
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}
.home-pkg-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.6rem 0;
  line-height: 1.3;
}
.home-pkg-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 1.2rem;
}
.home-pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: auto;
}
.home-pkg-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.home-pkg-price strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-dark, #a07830);
  font-weight: 700;
}
.home-pkg-price span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 2px solid var(--gold);
  color: var(--mid-brown);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
@media (max-width: 1024px) {
  .home-pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-pkg-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   PROFESSIONAL ROUTE CARDS
   ═══════════════════════════════════════════════════════════ */

.pro-route-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid var(--accent, #c9a84c);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pro-route-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.pro-route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-top-color: var(--accent, #c9a84c);
  border-color: rgba(0,0,0,0.12);
}
.prc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.prc-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent, #c9a84c);
  line-height: 1;
  opacity: 0.4;
}
.prc-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.prc-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.2rem 0;
  line-height: 1.2;
}
.prc-aka {
  font-size: 0.78rem;
  color: var(--mid-brown);
  font-style: italic;
  margin-bottom: 1.3rem;
  letter-spacing: 0.03em;
}
.prc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  margin-bottom: 1.3rem;
}
.prc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 0.5rem;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.prc-stat:last-child { border-right: none; }
.prc-stat-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.prc-stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.prc-desc {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  flex: 1;
}
.prc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.prc-highlights span {
  font-size: 0.72rem;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-muted);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
}
.prc-btn {
  display: block;
  text-align: center;
  background: var(--accent, #c9a84c);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.prc-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.pro-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .pro-routes-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-route-card { padding: 1.5rem; }
}
@media (max-width: 640px) {
  .pro-routes-grid { grid-template-columns: 1fr; }
  .pro-route-card { padding: 1.4rem; }
  .prc-name { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP LIVE CHAT WIDGET
   ═══════════════════════════════════════════════════════════ */

/* Floating bubble button */
.wa-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
  animation: none;
}
.wa-bubble svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  flex-shrink: 0;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  60%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: badgeBounce 1.2s ease-in-out infinite;
  font-family: 'Lato', sans-serif;
}
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

/* Chat box */
.wa-chat-box {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  z-index: 9998;
  width: 330px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Lato', sans-serif;
}
.wa-chat-box.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.wa-chat-header {
  background: #075e54;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.wa-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #128c7e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.25);
}
.wa-agent-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.wa-agent-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}
.wa-agent-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.wa-close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wa-close-btn:hover { background: rgba(255,255,255,0.3); }

/* Chat body */
.wa-chat-body {
  background: #ece5dd;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5bbaf' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 1.2rem 1rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Message bubble */
.wa-message {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.8rem 1rem;
  max-width: 88%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  position: relative;
  animation: waMsgIn 0.4s ease 0.3s both;
}
.wa-message::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-left: none;
}
@keyframes waMsgIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wa-message p {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.wa-message p:last-of-type { margin-bottom: 0.4rem; }
.wa-msg-time {
  font-size: 0.68rem;
  color: #999;
  text-align: right;
}

/* Typing indicator */
.wa-typing {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  animation: waMsgIn 0.4s ease 0s both;
}
.wa-typing span {
  width: 7px;
  height: 7px;
  background: #999;
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* Footer / CTA */
.wa-chat-footer {
  background: #f0f0f0;
  padding: 0.9rem 1rem;
  border-top: 1px solid #ddd;
}
.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
}
.wa-start-btn:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}
.wa-start-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .wa-chat-box { width: calc(100vw - 2rem); right: 1rem; bottom: 6rem; }
  .wa-bubble   { bottom: 1.2rem; right: 1.2rem; width: 56px; height: 56px; }
}

/* ── Group Discount Section ─────────────────────────────── */
.group-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover) !important;
}
@media (max-width: 900px) {
  .group-tiers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 540px) {
  .group-tiers-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MEGA MENU
   ═══════════════════════════════════════════════════════════ */

.has-mega { position: relative; }
.mega-caret { font-size: 0.65rem; margin-left: 3px; transition: transform 0.25s; display: inline-block; }
.has-mega:hover .mega-caret { transform: rotate(180deg); }

.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  z-index: 9999;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Left — link list */
.mega-links {
  background: var(--dark-brown);
  padding: 1.2rem 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-sans);
  gap: 0.5rem;
}
.mega-link:hover {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
}
.mega-link.mega-link-highlight {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.85rem;
}
.mega-link.mega-link-highlight:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}
.ml-arr {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Middle — description */
.mega-desc {
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-desc-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.8rem 0;
  line-height: 1.2;
}
.mega-desc-text {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0 0 1.4rem 0;
}
.mega-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  text-decoration: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
  align-self: flex-start;
  box-shadow: 0 3px 14px rgba(201,168,76,0.18);
}
.mega-cta-btn:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 22px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

/* Right — image */
.mega-image {
  overflow: hidden;
}
.mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.has-mega:hover .mega-image img { transform: scale(1.04); }

/* Prevent mega going off-screen on smaller viewports */
@media (max-width: 1100px) {
  .mega-menu { width: 680px; grid-template-columns: 190px 1fr 180px; }
}
@media (max-width: 900px) {
  .mega-menu { display: none !important; }
}

/* ============================================================
   HERO VIDEO SECTION
   ============================================================ */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

/* ── Video + Fallback ─────────────────────────────────────── */
.hv-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hv-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hv-fallback.active { opacity: 1; }

/* ── Gradient overlay ─────────────────────────────────────── */
.hv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(5,3,0,0.45) 0%,
      rgba(5,3,0,0.25) 40%,
      rgba(5,3,0,0.55) 75%,
      rgba(5,3,0,0.75) 100%);
}

/* ── Content wrapper ──────────────────────────────────────── */
.hv-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* clear navbar */
}

.hv-inner {
  max-width: 820px;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

/* ── Label row ────────────────────────────────────────────── */
.hv-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hv-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

.hv-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Title ────────────────────────────────────────────────── */
.hv-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hv-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Description ─────────────────────────────────────────── */
.hv-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ── CTA Buttons ─────────────────────────────────────────── */
.hv-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.hv-actions .btn-gold {
  padding: 0.9rem 2.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.hv-actions .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
  filter: brightness(1.08);
}

.hv-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.hv-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  filter: brightness(1.1);
}
.hv-wa-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* ── Trust badges ────────────────────────────────────────── */
.hv-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}

.hv-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.hv-badge-num {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.hv-badge-lbl {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 0.2rem;
  white-space: nowrap;
}

.hv-badge-div {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

/* ── Sound toggle button ─────────────────────────────────── */
.hv-sound-btn {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
}
.hv-sound-btn:hover {
  border-color: var(--gold);
  background: rgba(0,0,0,0.55);
}
.hv-sound-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  pointer-events: none;
}

/* ── Scroll indicator ────────────────────────────────────── */
.hv-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.6;
  animation: hvScrollFade 2.5s ease-in-out infinite;
}

@keyframes hvScrollFade {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9;  transform: translateX(-50%) translateY(5px); }
}

.hv-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.hv-scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: hvWheel 1.5s ease-in-out infinite;
}

@keyframes hvWheel {
  0%   { transform: translateY(0);   opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-video-section { min-height: 580px; }
  .hv-inner { padding: 0 1rem; }
  .hv-label-wrap { gap: 0.6rem; }
  .hv-line { width: 28px; }
  .hv-badge { padding: 0 0.9rem; }
  .hv-badge-div { height: 28px; }
  .hv-sound-btn { bottom: 5.5rem; right: 1rem; }
  .hv-actions { gap: 0.8rem; }
  .hv-actions .btn-gold,
  .hv-wa-btn { padding: 0.82rem 1.6rem; font-size: 0.84rem; }
}

@media (max-width: 480px) {
  .hv-badges { gap: 0.3rem; }
  .hv-badge { padding: 0 0.6rem; }
  .hv-badge-div { display: none; }
  .hv-badges { gap: 0.8rem 1.2rem; }
  .hv-badge { flex-direction: row; gap: 0.4rem; align-items: baseline; padding: 0; }
  .hv-badge-lbl { font-size: 0.62rem; }
}

/* ── Inline SVG icon helper ──────────────────────────────── */
.ico {
  width: 1em; height: 1em;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.13em; flex-shrink: 0; display: inline-block;
}
