:root {
  --ce-bg: #ffffff;
  --ce-text: #111827;
  --ce-muted: #4b5563;
  --ce-primary: #123e2f;
  --ce-primary-dark: #0a241b;
  --ce-accent: #c9a55b;
  --ce-surface: #f9fafb;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ce-text);
  background: var(--ce-bg);
  -webkit-font-smoothing: antialiased;
}

.admin-shell {
  min-height: 100vh;
  display: flex;
  background: #f8f9fa;
}

.admin-sidebar {
  width: 230px;
  background: #0b1d1a;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-sidebar .brand {
  padding: 1rem 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8rem;
  border-bottom: 1px solid rgba(148, 163, 184, .2);
}

.admin-menu {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
  flex: 1;
}

.admin-menu li a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 1.1rem;
  color: #e5e7eb;
  font-size: .9rem;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.admin-menu li a .icon {
  width: 18px;
  text-align: center;
}

.admin-menu li a:hover {
  background: rgba(212, 175, 55, .08);
}

.admin-menu li a.active {
  background: rgba(212, 175, 55, .15);
  border-left-color: #d4af37;
  color: #fff;
}

.admin-sidebar-footer {
  padding: .75rem 1.1rem;
  font-size: .75rem;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, .2);
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-topbar-title {
  font-weight: 600;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
}

.admin-topbar-right .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  margin-left: .2rem;
}

.admin-content {
  padding: 1.5rem;
}

/* Premium Header Styling */
.site-header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  background: #fff;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: none !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.navbar .nav-link {
  font-weight: 500;
  color: #374151;
  padding: 0.5rem 1rem !important;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: var(--ce-accent);
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: #4b5563;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.btn-search {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #2b2b2b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

.btn-search:hover {
  background: #111;
  color: #fff;
}

.hero {
  background:
    linear-gradient(to bottom, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.85) 100%),
    var(--hero-bg, url('../img/sample-hero.jpg')) center/cover no-repeat;
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--ce-bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-card {
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.itinerary-v-image {
  width: 40%;
  flex-shrink: 0;
  display: block;
}

.itinerary-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid #f1f5f9;
}

.package-card {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
  border-color: #e5e7eb;
}

.package-img-wrap {
  overflow: hidden;
  position: relative;
}

.package-img {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img {
  transform: scale(1.05);
}

.badge-soft {
  background: #f3f4f6;
  color: #4b5563;
  border: none;
  font-weight: 500;
}

/* Globals Buttons */
.btn {
  font-weight: 500;
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  transition: all 0.2s ease;
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 1.05rem;
}

.btn-dark {
  background-color: var(--ce-primary);
  border-color: var(--ce-primary);
  color: #fff;
}

.btn-dark:hover {
  background-color: #000;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark {
  color: var(--ce-primary);
  border-color: var(--ce-primary);
  border-width: 1.5px;
}

.btn-outline-dark:hover {
  background-color: var(--ce-primary);
  border-color: var(--ce-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--ce-accent);
  border-color: var(--ce-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: #c26905;
  border-color: #c26905;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.home-category-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.home-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(17, 24, 39, 0.85);
}

.bg-kili {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.bg-safari {
  background: linear-gradient(135deg, #ca8a04, #bef264);
}

.bg-zanzibar {
  background: linear-gradient(135deg, #0f766e, #34d399);
}

.bg-meru {
  background: linear-gradient(135deg, #7e22ce, #c084fc);
}

.section-muted {
  background: #f9fafb;
}

.feature-tile {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  height: 100%;
}

.feature-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ce-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.stat-card {
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  padding: 2rem 1.25rem;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5563;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ce-primary);
}

.mini-tour-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  transition: all 0.2s ease;
}

.mini-tour-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transform: translateX(4px);
}

.timeline-list li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-left: 2px dashed #cbd5e1;
}

.timeline-list li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -17px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ce-primary);
  color: #fff;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.gallery-thumb {
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  padding-bottom: 70%;
}

.blog-preview-card {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 1.25rem 1.5rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  display: block;
  text-decoration: none;
}

.blog-preview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2100;
}

.whatsapp-float a {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
  font-size: 1.4rem;
}

/* Modern Preloader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.page-loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--ce-accent);
  width: 0;
  animation: loader-progress 2s ease-in-out infinite;
}

@keyframes loader-progress {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 70%;
    left: 15%;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

.page-loader-content {
  text-align: center;
}

.page-loader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  animation: loader-pulse 1.5s ease-in-out infinite;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--ce-accent);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-loader-logo img {
  width: 100%;
  height: auto;
}

@keyframes loader-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.page-loader-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1a202c;
  font-size: 0.75rem;
}

@keyframes loader-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes loader-orbit {
  0% {
    transform: rotate(0deg) translateX(0);
  }

  100% {
    transform: rotate(360deg) translateX(0);
  }
}

/* Premium Package Cards */
.premium-card {
  position: relative;
  border-radius: 4px;
  /* Sharper corners like the reference */
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  color: #fff !important;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #111;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.premium-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.premium-card:hover .premium-card-bg {
  transform: scale(1.05);
}

.premium-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.premium-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #eab308;
  /* Golden yellow */
  color: #111827;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-card-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.premium-card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: #111827;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 10;
}

.premium-card:hover .premium-card-arrow {
  transform: translateX(4px);
  background-color: #f3f4f6;
}

/* Mega Menu & Hover Dropdowns */
@media (min-width: 992px) {
  .hover-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.mega-menu {
  border-top: 1px solid #f3f4f6 !important;
  transition: opacity 0.3s ease;
}

@media (min-width: 992px) {
  .mega-dropdown:hover>.dropdown-menu {
    display: block;
  }
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.mega-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #111;
}

.mega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mega-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.mega-card:hover .mega-card-bg {
  transform: scale(1.05);
}

.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  transition: background 0.3s ease;
}

.mega-card:hover .mega-card-overlay {
  background: rgba(17, 24, 39, 0.6);
}

.mega-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(5px);
  transition: transform 0.3s ease;
}

.mega-card:hover .mega-card-title {
  transform: translateY(0);
}

/* Mobile Nav & Mega Menu Refinements */
@media (max-width: 991.98px) {
  .navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  .navbar-brand {
    padding: 10px 0 !important;
    margin: 0 !important;
  }

  .navbar-brand img {
    height: 28px !important;
  }

  .navbar-toggler {
    padding: 4px 8px !important;
    font-size: 1.1rem !important;
    border: none !important;
  }

  .navbar-collapse {
    border-top: 1px solid #f1f5f9;
    background: #fff;
    padding: 0 15px 20px 15px !important;
    margin: 0 -15px !important;
    /* Counteract container padding */
  }

  .navbar-nav {
    margin: 0 !important;
    padding-top: 10px !important;
  }

  .nav-item {
    border-bottom: 1px solid #f8fafc;
  }

  .nav-link {
    padding: 12px 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem !important;
  }

  .mega-menu {
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: #f8fafc !important;
    overflow: hidden;
    display: none !important;
  }

  .nav-item.dropdown.mega-dropdown .dropdown-menu.show {
    display: block !important;
    position: static !important;
    padding: 15px 0 !important;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .mega-card {
    height: 90px;
    border-radius: 8px;
  }

  .mega-card-title {
    font-size: 0.8rem;
  }
}

.search-btn-mobile {
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background: var(--ce-primary) !important;
  color: #fff !important;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .search-btn-mobile {
    margin-top: 0;
  }
}

.mega-dropdown .group:hover {
  color: var(--ce-primary) !important;
}

.mega-dropdown .group:hover .bg-warning {
  background-color: var(--ce-primary) !important;
  color: #fff !important;
}

/* Professional Package Detail Redesign */
.premium-package-hero {
  position: relative;
}

.breadcrumb-premium {
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-premium .breadcrumb-item {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-premium .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
  content: "/";
}

.breadcrumb-premium .breadcrumb-item.active {
  color: #fff;
}

/* Pass 3: 2-Column Itinerary & High-End Sidebar */
.mb-6 {
  margin-bottom: 8rem !important;
}

/* Older redundant itinerary styles removed for consolidation around line 1559 */
.itinerary-v-content {
  flex: 1;
}

.itinerary-v-day-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  display: block;
}

.acc-tier-list {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acc-tier-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.acc-tier-badge {
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
}

.tier-silver {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.tier-gold {
  background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border: 1px solid #fcd34d;
}

.tier-platinum {
  background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
  color: #fff;
  border: 1px solid #0f172a;
}

.acc-tier-link {
  color: #166534;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.acc-tier-link:hover {
  opacity: 0.7;
}

.sidebar-ready-box {
  background: #064e3b;
  color: #fff;
  border-radius: 12px;
  padding: 4.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(6, 78, 59, 0.25);
}

.sidebar-ready-box .mountain-bg {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 80%;
  opacity: 0.05;
  pointer-events: none;
}

.sidebar-ready-box h4 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.ready-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.ready-check-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.ready-check-list i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.btn-ready-sidebar {
  background: #fbbf24;
  color: #064e3b;
  font-weight: 900;
  border-radius: 4px;
  padding: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.btn-ready-sidebar:hover {
  background: #fff;
  color: #064e3b;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.whatsapp-float-btn {
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  position: fixed;
  bottom: 40px;
  right: 40px;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
  transform: scale(1.15) rotate(10deg);
  color: #fff;
}

.package-sub-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 72px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.scroll-mobile-nav {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.scroll-mobile-nav::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.package-sub-nav .nav-link {
  color: #4b5563;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.75rem 1.25rem;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .package-sub-nav .nav-link {
    padding: 1.25rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
}

.package-sub-nav .nav-link:hover,
.package-sub-nav .nav-link.active {
  color: var(--ce-primary);
  border-bottom-color: #d97706;
}

/* Seasonal Pricing Table - Pass 2 */
.pricing-card-professional {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.pricing-header-seasonal {
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  padding: 1.25rem 1.5rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ce-primary);
}

.season-block {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.season-block:last-child {
  border-bottom: none;
}

.season-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 1rem;
  display: block;
}

.pricing-grid-aligned {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
}

.pricing-grid-label {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

.pricing-grid-value {
  font-size: 0.85rem;
  color: #1e293b;
  font-weight: 700;
  text-align: right;
}

.pricing-grid-value.featured {
  color: var(--ce-accent);
  background: #fffbeb;
  padding: 0 0.5rem;
  border-radius: 4px;
}

/* High-End Masterclass Pricing Table */
.boutique-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: #fff;
}

.boutique-table thead th {
  background: #fff;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.5rem 1rem;
  border-bottom: 2px solid #f1f5f9;
  text-align: center;
}

.boutique-table thead th:first-child {
  text-align: left;
  padding-left: 0;
}

.boutique-table tbody td {
  padding: 2rem 1rem;
  font-size: 1rem;
  border-bottom: 1px solid #f8fafc;
  vertical-align: middle;
}

.boutique-table tbody td:first-child {
  padding-left: 0;
}

.boutique-table .tier-label-cell {
  font-weight: 900;
  color: #1a202c;
  width: 25%;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.boutique-table .price-cell {
  font-weight: 800;
  color: #1a202c;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
}

.boutique-table .price-cell span {
  font-size: 0.75rem;
  color: #94a3b8;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 400;
}

.boutique-table .tier-silver .tier-label-cell {
  color: #64748b;
}

.boutique-table .tier-gold .tier-label-cell {
  color: #b45309;
}

.boutique-table .tier-platinum .tier-label-cell {
  color: #1e3a8a;
}

/* Grid Block Pricing V2 - RESTORED & FORCED */
.pricing-grid-container {
  margin: 4rem 0 !important;
  display: block !important;
}

.pricing-season-title {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  color: #1a202c !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.pricing-season-range {
  font-size: 1rem !important;
  color: #4a5568 !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.pricing-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin-bottom: 2rem !important;
}

.price-card {
  flex: 1 !important;
  min-width: 200px !important;
  text-align: center !important;
}

.price-card-label {
  font-size: 1rem !important;
  color: #2d3748 !important;
  margin-bottom: 15px !important;
  font-weight: 700 !important;
  display: block !important;
}

.price-card-box {
  padding: 2rem 1.5rem !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 1.6rem !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  display: block !important;
}

.price-card-box span {
  margin-left: 4px;
}

.bg-season-low {
  background-color: #4a5d23;
}

.bg-season-mid {
  background-color: #c48b11;
}

.bg-season-high {
  background-color: #5c3b31;
}

.pricing-disclaimer {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Seasonal Block Styling */
.seasonal-pricing-block {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  margin-bottom: 5rem;
}

.seasonal-header {
  border: none;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 15px;
}

.seasonal-header::before {
  content: '';
  width: 6px;
  height: 30px;
  background: var(--ce-accent);
  border-radius: 3px;
}

.seasonal-subheader {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Activity Cards V4 - Ultra Clean */
.activity-card-premium {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.activity-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.activity-badge {
  background: #f8fafc;
  color: #64748b;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  display: inline-block;
}

.activity-card-premium h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.activity-card-premium p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.activity-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #f8fafc;
}

.activity-footer .more-link {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--ce-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Modal Styling */
.modal-content.rounded-4 {
  border-radius: 2rem !important;
}

.modal-header .btn-close {
  background-color: #f1f5f9;
  padding: 1rem;
  border-radius: 50%;
  opacity: 1;
}

/* Professional Itinerary Timeline - Refined */
.itinerary-v-timeline {
  position: relative;
  padding-left: 4rem;
  margin-top: 4rem;
}

.itinerary-v-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #e2e8f0 10%, #e2e8f0 90%, transparent);
}

.itinerary-v-day {
  display: flex !important;
  flex-direction: row;
  align-items: stretch;
  gap: 3rem;
  margin-bottom: 5rem;
  position: relative;
  background: #fff;
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease;
}

.itinerary-v-day:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.itinerary-v-day:last-child {
  margin-bottom: 0;
}

.itinerary-v-dot {
  position: absolute;
  left: -4rem;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--ce-primary);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.itinerary-v-day:hover .itinerary-v-dot {
  border-color: var(--ce-accent);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(201, 165, 91, 0.15);
}

.itinerary-v-content {
  padding-top: 0.5rem;
}

.itinerary-v-title {
  font-weight: 800;
  color: var(--ce-primary);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Feature Grid Professional - Pass 2 */
.pro-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pro-feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.pro-feature-item:hover {
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pro-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.icon-include {
  background: #f0fdf4;
  color: #16a34a;
}

.icon-exclude {
  background: #fef2f2;
  color: #dc2626;
}

/* Call to Action Banner - Pass 2 */
.cta-banner-premium {
  background: #111827 url('../img/hero_tanzania_home.png') center/cover no-repeat;
  border-radius: 16px;
  padding: 5rem 4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
  z-index: 1;
}

.cta-banner-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.7) 100%);
  z-index: -1;
}

.cta-banner-premium h2 {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

/* Consolidated itinerary-img-wrap moved to global location */

.itinerary-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-v-day:hover .itinerary-img {
  transform: scale(1.04);
}

/* Pass 5: Category-Specific Boutique Styling */
.itinerary-v-day.mountain-style {
  background: #fdfaf5;
  border-radius: 4px;
  padding: 3rem;
  margin-bottom: 5rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1ece1;
}

.itinerary-v-day.mountain-style .itinerary-v-title {
  font-family: 'Caveat', cursive;
  color: #166534;
  font-size: 2.25rem;
}

.itinerary-v-day.mountain-style .itinerary-v-day-num {
  color: #d97706;
}

.itinerary-v-day.safari-style {
  background: #fff;
  border-radius: 12px;
  padding: 4rem;
  margin-bottom: 6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.itinerary-connector {
  position: absolute;
  left: 50%;
  bottom: -5rem;
  height: 5rem;
  width: 2px;
  z-index: 1;
}

.itinerary-connector svg {
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 100%;
  color: #cbd5e1;
}

/* Custom shadow/depth for safari image */
.safari-style .itinerary-img-wrap {
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mountain-style .itinerary-img-wrap {
  border-radius: 2px;
  transform: rotate(1deg);
}

@media (max-width: 991px) {
  .itinerary-v-day {
    flex-direction: column;
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .itinerary-v-day.mountain-style,
  .itinerary-v-day.safari-style {
    padding: 2rem;
  }

  .itinerary-v-image {
    width: 100%;
    padding-left: 0 !important;
    margin-top: 2rem;
  }

  .itinerary-v-content {
    padding-right: 0 !important;
  }

  .itinerary-img-wrap {
    margin-top: 0;
  }
}

/* Header & Top Bar Enhancements */
.top-bar {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.hover-warning:hover {
  color: var(--ce-accent) !important;
}

.brand-logo-wrap {
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo-wrap {
  transform: rotate(-10deg) scale(1.05);
}

.brand-text .small {
  letter-spacing: 0.15em;
}

/* Modern Form Elements */
.contact-form-wrap .form-control {
  border: 1px solid #e2e8f0;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.contact-form-wrap .form-control:focus {
  border-color: var(--ce-primary);
  box-shadow: 0 0 0 4px rgba(18, 62, 47, 0.1);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  z-index: 5;
}

.input-icon-wrap .form-control {
  padding-left: 3.5rem;
}

.btn-check:checked+.btn-outline-dark {
  background-color: var(--ce-primary) !important;
  border-color: var(--ce-primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(18, 62, 47, 0.2);
  transform: translateY(-3px);
}

.btn-outline-dark {
  border-color: #e2e8f0;
  color: #64748b;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

.floating-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.floating-actions.minimized {
  transform: translateX(calc(100% - 40px));
}

.floating-toggle {
  width: 40px;
  height: 40px;
  background: var(--ce-primary);
  color: #fff;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.floating-toggle:hover {
  background: var(--ce-primary-dark);
}

.floating-toggle i {
  transition: transform 0.5s ease;
}

.minimized .floating-toggle i {
  transform: rotate(180deg);
}

.floating-btn-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Package Search Modal Styles */
.package-search-item {
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #f1f5f9;
}

.package-search-item:hover {
  background-color: #f8fafc;
  border-color: var(--ce-accent);
  transform: translateY(-2px);
}

.package-search-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}