/* ==========================================================================
   Dreams Voyage - Luxury Travel & Safari Booking Theme (LTR)
   Author: Mohamed magdy
   ========================================================================== */

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  color: var(--gray-800);
  background-color: #f8fafc;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 992px) {
  html {
    font-size: 16.5px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 17px;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 17.5px;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for mobile bottom app bar */
  }
}

#error-page, body#error-page {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

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

.site-logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  list-style: none;
}

.nav-link,
.nav-menu a {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--primary);
}

.nav-link.active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* Dropdown Sub-menus for WordPress Navigation */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 102;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  width: 100%;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
  background: #f8fafc;
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Dropdown (Desktop) */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: #e2e8f0;
  color: var(--gray-900);
}

.lang-btn img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  min-width: 170px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 101;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

.lang-item a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.lang-item.active a {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.lang-item img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

/* Header WhatsApp Button */
.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-header-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gray-800);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   OLO-Style Mobile Drawer (Off-Canvas Menu & Language Selector)
   ========================================================================== */
.dv-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dv-mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.dv-mobile-drawer.active {
  transform: translateX(0);
}

.dv-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.dv-drawer-close {
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.dv-drawer-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.dv-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.dv-drawer-section {
  display: flex;
  flex-direction: column;
}

.dv-drawer-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.dv-drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dv-drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
}

.dv-drawer-nav li a:hover,
.dv-drawer-nav li a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.dv-drawer-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.dv-lang-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  position: relative;
  transition: var(--transition);
}

.dv-lang-card:hover {
  background: var(--white);
  border-color: var(--primary);
}

.dv-lang-card.active {
  background: #f0f9ff;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.dv-lang-card img {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.dv-lang-check {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 900;
}

.dv-drawer-wa-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
}

.dv-drawer-wa-icon {
  width: 42px;
  height: 42px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dv-drawer-wa-icon svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   OLO-Style Mobile Fixed Bottom App Bar
   ========================================================================== */
.dv-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-200);
  height: 64px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  padding: 0 0.5rem;
}

.dv-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0;
  transition: var(--transition);
  text-decoration: none;
}

.dv-bottom-item:hover,
.dv-bottom-item.active {
  color: var(--primary);
}

.dv-bottom-item svg {
  transition: transform 0.2s ease;
}

.dv-bottom-item:active svg {
  transform: scale(0.9);
}

.dv-bottom-wa {
  color: var(--whatsapp);
  font-weight: 700;
  position: relative;
  top: -8px;
}

.dv-wa-circle {
  width: 44px;
  height: 44px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  border: 3px solid var(--white);
  margin-bottom: 2px;
}

.dv-wa-circle svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Hero Showcase Carousel Slider
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.hero-slider-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-content {
  text-align: center;
  max-width: 900px;
  padding: 5rem 1.25rem 6.5rem;
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) {
  .hero-slider-wrap {
    min-height: 660px;
  }
  .hero-slide-content {
    max-width: 1040px;
    padding: 6.5rem 1.5rem 8rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-slide-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.hero-slide-title span {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide-title a {
  color: var(--white);
}

.hero-slide-title a:hover {
  color: #38bdf8;
}

.hero-slide-desc {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 2.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-price-pill {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1rem;
}

.hero-price-pill strong {
  font-size: 1.45rem;
  color: var(--accent);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.55);
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-slider-btn:hover {
  background: var(--white);
  color: var(--gray-900);
}

.hero-slider-btn.prev { left: 2rem; }
.hero-slider-btn.next { right: 2rem; }

.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: var(--radius-full);
}

/* Floating Search Box */
.hero-search-wrapper {
  margin-top: -42px;
  position: relative;
  z-index: 20;
  padding: 0 1.25rem 2rem;
}

.hero-search-box {
  background: var(--white);
  padding: 0.85rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr auto;
  gap: 0.85rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  color: var(--gray-800);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.search-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--gray-200);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.search-field select,
.search-field input {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  outline: none;
  cursor: pointer;
  width: 100%;
}

.btn-search {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  border: none;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: var(--transition);
}

.btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

/* Hero Trust Bar */
.hero-trust-bar {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  color: var(--white);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 800;
}

.trust-text span {
  font-size: 0.775rem;
  color: #94a3b8;
}

/* Why Card Step Number */
.why-card {
  position: relative;
  overflow: hidden;
}

.why-card-step {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(2, 132, 199, 0.12);
  user-select: none;
}


/* ==========================================================================
   Destinations Grid Section
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: #e0f2fe;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0.75rem 0;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.destination-card {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.16);
  border-color: rgba(2, 132, 199, 0.4);
}

.destination-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.25) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: var(--white);
}

.destination-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.destination-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.destination-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination-count {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 600;
}

.destination-arrow {
  font-size: 1.25rem;
  color: #38bdf8;
  transition: transform 0.2s ease;
}

.destination-card:hover .destination-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Luxury Trip Cards Grid & Filter Chips
   ========================================================================== */
.trip-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-chip {
  padding: 0.55rem 1.25rem;
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-chip:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.filter-chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

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

@media (max-width: 1024px) {
  .trips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .trips-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.trip-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.12);
  border-color: rgba(2, 132, 199, 0.35);
}

.trip-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #0f172a;
}

.trip-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trip-card:hover .trip-card-image img {
  transform: scale(1.08);
}

.trip-card-badges-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.badge-category {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-discount {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
}

.badge-group-offer {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.trip-card-location-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(6px);
  color: #e0f2fe;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  z-index: 3;
}

.trip-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trip-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.trip-card-title a {
  color: inherit;
}

.trip-card-title a:hover {
  color: var(--primary);
}

.trip-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.feature-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.trip-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.85rem;
}

.trip-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #b45309;
}

.star-icon {
  color: #f59e0b;
  font-size: 1rem;
}

.trip-rating-count {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 0.8rem;
}

.instant-book-badge {
  color: #059669;
  font-weight: 700;
  font-size: 0.775rem;
  background: #ecfdf5;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.trip-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
}

.trip-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.price-old {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.btn-book-card {
  background: var(--whatsapp);
  color: var(--white);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-book-card:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn-book-card:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-view-all-trips {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0f172a;
  color: var(--white);
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  transition: var(--transition);
}

.btn-view-all-trips:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.3);
}

/* ==========================================================================
   Why Choose Us (Value Proposition)
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.85rem;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.why-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.12);
  transform: translateY(-5px);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.35rem;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #0f172a;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ==========================================================================
   Single Trip Page - Luxury Header & Highlights
   ========================================================================== */
.trip-single-header {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  padding: 2.25rem 0 1.75rem;
}

.trip-breadcrumbs {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trip-breadcrumbs a:hover {
  color: var(--primary);
}

.trip-single-title {
  font-size: 2.45rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.trip-header-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.925rem;
  color: var(--gray-600);
}

.trip-layout-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

/* Gallery Slider */
.trip-gallery-slider-wrap {
  margin-bottom: 2.5rem;
}

.gallery-slider-main {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.gallery-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.gallery-slide-item.active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-counter-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 800;
  z-index: 5;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gray-900);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.gallery-nav-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.gallery-nav-btn.prev { left: 1.25rem; }
.gallery-nav-btn.next { right: 1.25rem; }

.gallery-thumbs-strip {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-thumb-btn {
  width: 84px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2.5px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.6;
  transition: var(--transition);
}

.gallery-thumb-btn.active, .gallery-thumb-btn:hover {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Highlights Ribbon */
.highlights-ribbon {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ribbon-icon {
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.ribbon-text {
  display: flex;
  flex-direction: column;
}

.ribbon-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
}

.ribbon-text strong {
  font-size: 0.9rem;
  color: #0f172a;
  font-weight: 800;
}

/* Trip Content Block */
.trip-content-block {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}

.block-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e2e8f0;
}

.timeline-step {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-time {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  display: block;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Included / Excluded Grid */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.included-list, .excluded-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.included-list li, .excluded-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 900;
}

.excluded-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: 900;
}

/* ==========================================================================
   Destination & Archive Hero Banner
   ========================================================================== */
.dest-single-hero, .archive-header-banner {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 4.5rem 1.25rem;
}

.archive-header-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 280px;
  padding: 3.5rem 1.25rem;
}

.dest-hero-title, .archive-main-title {
  font-size: 2.85rem;
  font-weight: 900;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.5px;
}

.dest-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.dest-stat-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.dest-hero-desc, .archive-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Footer Overhaul
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  margin-top: auto;
}

.footer-cta-card {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: 20px;
  padding: 2.5rem 2.75rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.35);
}

.footer-cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.footer-cta-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.footer-cta-desc {
  font-size: 1rem;
  color: #e0f2fe;
  max-width: 620px;
  line-height: 1.6;
}

.btn-footer-wa {
  background: var(--whatsapp);
  color: var(--white);
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-footer-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.btn-footer-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .footer-logo img {
  height: 46px;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.925rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #cbd5e1;
  font-size: 0.925rem;
}

.footer-wa-link {
  color: #38bdf8;
  font-weight: 700;
}

.footer-wa-link:hover {
  text-decoration: underline;
}

.footer-trust-badge {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 700;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom strong {
  color: #cbd5e1;
}

/* Mobile Sticky Bottom Bar */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 998;
  align-items: center;
  justify-content: space-between;
}

/* Media Queries */
@media (max-width: 1024px) {
  .trip-layout-grid {
    grid-template-columns: 1fr;
  }
  .dv-page-layout-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-search-box {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu, .btn-header-wa {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dv-bottom-nav {
    display: flex;
  }
  .dv-page-trust-bar {
    grid-template-columns: 1fr !important;
  }
  .dv-page-wa-cta {
    flex-direction: column;
    text-align: center;
  }
  .hero-slider-wrap {
    min-height: 500px;
  }
  .hero-slide-title {
    font-size: 2.2rem;
  }
  .hero-slider-btn {
    display: none;
  }
  .hero-search-box {
    grid-template-columns: 1fr;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .gallery-slider-main {
    height: 300px;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .mobile-book-bar {
    display: flex;
  }
}

/* ==========================================================================
   Luxury Standard & Multilingual Pages Prose Styling
   ========================================================================== */
.dv-page-prose-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.dv-page-prose-content h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.dv-page-prose-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0284c7;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.dv-page-prose-content p {
  margin-bottom: 1.25rem;
}

.dv-page-prose-content ul, 
.dv-page-prose-content ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.dv-page-prose-content li {
  margin-bottom: 0.65rem;
  line-height: 1.75;
}

.dv-widget-page-links a:hover,
.dv-widget-page-links a.active-link {
  background: #f0f9ff;
  color: #0284c7 !important;
}

