/* ===================================================================
   GLOBAL TRAILS TOURISM — Design System
   Signature motif: the "flight path" — dotted travel routes and a
   traveling plane mark connect destinations throughout the site,
   turning "route lines" into the visual language of the brand.
=================================================================== */

/* Standard laptops and desktops */
@media (min-width: 1025px) and (max-width: 1200px) {
.page-hero-content{
    margin-left: 50px;
}
}

:root {
  --primary: #1b81fe;
  --secondary: #0f5fcc;
  --accent: #4da8ff;
  --bg: #ffffff;
  --section-bg: #f8fafc;
  --text: #111827;
  --paragraph: #6b7280;
  --border: #e5e7eb;
  --success: #16a34a;
  --warning: #f59e0b;

  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary) 100%
  );
  --gradient-dark: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );

  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 95, 204, 0.16);
  --shadow-glow: 0 0 0 4px rgba(27, 129, 254, 0.12);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-heading: "Outfit", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-ui: "Inter", sans-serif;

  --header-h: 88px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--paragraph);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: var(--font-ui);
}
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility type scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16.5px;
  color: var(--paragraph);
  max-width: 600px;
}
.section-head {
  margin-bottom: 52px;
}
.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-head.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
}
.section-pad {
  padding: 40px 0;
}
.bg-soft {
  background: var(--section-bg);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn span,
.btn i {
  position: relative;
  z-index: 2;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 129, 254, 0.32);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(27, 129, 254, 0.4);
  color: #fff;
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--secondary);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(27, 129, 254, 0.06);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}
.btn-white {
  background: #fff;
  color: var(--secondary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-3px);
  color: var(--secondary);
}

/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple-anim 0.6s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.btn-outline .ripple,
.btn-outline-light .ripple {
  background: rgba(27, 129, 254, 0.25);
}
@keyframes ripple-anim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}
.link-arrow i {
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover i {
  transform: translateX(5px);
}
.link-arrow:hover {
  color: var(--secondary);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-mark {
  width: 64px;
  height: 64px;
  position: relative;
}
.preloader-mark svg {
  width: 100%;
  height: 100%;
}
.preloader-mark circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: preload-draw 1.4s var(--ease) infinite;
}
@keyframes preload-draw {
  0% {
    stroke-dashoffset: 150;
    transform: rotate(0deg);
  }
  50% {
    stroke-dashoffset: 40;
  }
  100% {
    stroke-dashoffset: 150;
    transform: rotate(360deg);
  }
}
.preloader-text {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paragraph);
}

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(17, 24, 39, 0.04);
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.08);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}
.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}
.logo span {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin:0px 30px;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--primary);
  background: rgba(27, 129, 254, 0.07);
}
.main-nav > ul > li > a i {
  font-size: 10px;
  transition: transform 0.3s var(--ease);
}
.main-nav > ul > li:hover > a i {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 640px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}
.main-nav li.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paragraph);
  margin-bottom: 14px;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  transition: all 0.25s var(--ease);
}
.mega-link:hover {
  background: var(--section-bg);
  padding-left: 14px;
}
.mega-link .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(27, 129, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-link strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-ui);
}
.mega-link small {
  font-size: 12px;
  color: var(--paragraph);
}
.mega-promo {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.mega-promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.mega-promo-text {
  position: relative;
  z-index: 2;
  color: #fff;
}
.mega-promo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
}
.mega-promo-text span {
  font-size: 12.5px;
  opacity: 0.85;
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.main-nav li.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-custom a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-ui);
  transition: all 0.25s var(--ease);
}
.dropdown-menu-custom a:hover {
  background: var(--section-bg);
  color: var(--primary);
  padding-left: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
#site-header.scrolled .header-icon-btn {
  color: var(--text);
  background: var(--section-bg);
}
.header-icon-btn:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
}

.lang-select {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
#site-header.scrolled .lang-select {
  color: var(--text);
  background: var(--section-bg);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
#site-header.scrolled .mobile-toggle {
  color: var(--text);
  background: var(--section-bg);
}

/* mobile drawer */
#mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100%;
  background: #fff;
  z-index: 1200;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  transition: right 0.5s var(--ease);
  padding: 26px;
  overflow-y: auto;
}
#mobile-drawer.open {
  right: 0;
}
#mobile-drawer .close-drawer {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--section-bg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
#mobile-drawer ul {
  margin-top: 26px;
}
#mobile-drawer li {
  border-bottom: 1px solid var(--border);
}
#mobile-drawer li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--text);
}
#mobile-drawer .sub-list {
  display: none;
  padding-bottom: 10px;
}
#mobile-drawer .sub-list a {
  padding: 9px 4px 9px 16px;
  font-size: 13.5px;
  color: var(--paragraph);
  font-weight: 400;
}
#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
#drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}


/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1b33;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
}

/* Image must be taken OUT of the flex flow so it acts as a background
   layer instead of competing for space with .hero-content as a flex item */
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(9, 20, 41, 0.55) 0%,
    rgba(9, 20, 41, 0.4) 40%,
    rgba(6, 14, 30, 0.92) 100%
  );
}

/* .hero-content is now the ONLY flex item inside .hero-slide,
   so align-items:center on .hero-slide centers it correctly */
.hero-slide .hero-content {
  position: relative;
  z-index: 5;
  padding: 30px 0px;
  width: 100%;
  margin-top: -80px;


}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}
.hero-cloud {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  z-index: 3;
  filter: blur(1px);
}
.hero-plane {
  position: absolute;
  z-index: 3;
  color: #fff;
  opacity: 0.85;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
}
.hero h1 {
  font-size: clamp(30px, 6.2vw, 50px) !important;
  color: #fff;
  line-height: 1.06;
  max-width: 920px;
  font-weight: 600;
}
.hero h1 .word-highlight {
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--primary) 60%,
    #8fd3ff
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-top: 24px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* search form */
.hero-search {
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr auto;
  gap: 6px;
  align-items: stretch;
}
.hs-field {
  padding: 12px 18px;
  border-radius: 18px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.hs-field:hover {
  background: var(--section-bg);
}
.hs-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paragraph);
  margin-bottom: 5px;
}
.hs-field select,
.hs-field input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  padding: 0;
}
.hs-field select:focus,
.hs-field input:focus {
  outline: none;
}
.hero-search .btn-primary {
  border-radius: 16px;
  padding: 0 30px;
}
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
}
.wave-divider svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* ---------- Partners ---------- */
.partners-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--paragraph);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.partner-logo:hover {
  opacity: 1;
  color: var(--primary);
}

/* ---------- About preview ---------- */
.about-grid-imgs {
  position: relative;
  height: 520px;
}
.about-grid-imgs img {
  position: absolute;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.aig-1 {
  width: 64%;
  height: 64%;
  top: 0;
  left: 0;
  z-index: 2;
}
.aig-2 {
  width: 52%;
  height: 46%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 6px solid #fff;
}
.about-badge {
  position: absolute;
  bottom: 14%;
  left: 6%;
  z-index: 4;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge .num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}
.about-badge small {
  display: block;
  font-size: 12px;
  color: var(--paragraph);
}
.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(27, 129, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.about-feature strong {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}
.about-feature p {
  font-size: 14.5px;
}

/* ---------- Why choose us ---------- */
.wcu-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.wcu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.wcu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.wcu-card:hover::before {
  transform: scaleX(1);
}
.wcu-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease);
}
.wcu-card:hover .wcu-icon {
  transform: rotate(-8deg) scale(1.08);
}
.wcu-card h3 {
  font-size: 18.5px;
  margin-bottom: 10px;
}
.wcu-card p {
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- Services ---------- */
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover img {
  transform: scale(1.1);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 27, 51, 0.05) 20%,
    rgba(6, 14, 30, 0.92) 100%
  );
}
.service-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.service-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}
.service-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-content p {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
  margin-bottom: 14px;
}
.service-content .link-arrow {
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-content .link-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Destinations ---------- */
.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  height: 100%;
  border: 1px solid var(--border);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.dest-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dest-card:hover .dest-img-wrap img {
  transform: scale(1.12);
}
.dest-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}
.dest-rating i {
  color: var(--warning);
}
.dest-price-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(9, 20, 41, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}
.dest-body {
  padding: 22px;
}
.dest-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.dest-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--paragraph);
  margin-bottom: 14px;
}
.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.dest-footer .price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 17px;
}
.dest-footer .price small {
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--paragraph);
  font-size: 12px;
}

/* route-dot rail used near destinations, echoes signature motif */
.route-rail {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 46px;
}
.route-rail .rr-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.route-rail .rr-line {
  flex: 1;
  height: 0;
  border-top: 2px dotted var(--border);
  margin: 0 10px;
  position: relative;
}
.route-rail .rr-plane {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}

/* ---------- Package cards / filters ---------- */
.filter-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--paragraph);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(27, 129, 254, 0.3);
}

.pkg-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.pkg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.pkg-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.1);
}
.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pkg-body {
  padding: 22px;
}
.pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.pkg-highlights span {
  font-size: 11.5px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--secondary);
  background: rgba(27, 129, 254, 0.08);
  padding: 5px 10px;
  border-radius: 8px;
}

/* ---------- Visa timeline ---------- */
.visa-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.visa-tab {
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.visa-tab.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.visa-panel {
  display: none;
}
.visa-panel.active {
  display: block;
}
.visa-info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.visa-info-row i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}
.visa-info-row strong {
  display: block;
  color: var(--text);
  font-size: 14.5px;
  margin-bottom: 2px;
  font-family: var(--font-ui);
}
.visa-info-row span {
  font-size: 13.5px;
}

/* ---------- Booking process ---------- */
.process-rail {
  position: relative;
}
.process-rail .rail-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  transition: all 0.4s var(--ease);
}
.process-step:hover .process-num {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}
.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  padding: 0 10px;
}

/* ---------- Stats ---------- */
.stats-section {
  background: #081326;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      700px circle at 15% 20%,
      rgba(27, 129, 254, 0.25),
      transparent 60%
    ),
    radial-gradient(
      700px circle at 85% 80%,
      rgba(77, 168, 255, 0.18),
      transparent 60%
    );
}
.stat-item {
  position: relative;
  z-index: 1;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.stat-num .suffix {
  color: var(--accent);
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testi-quote {
  color: var(--primary);
  font-size: 30px;
  opacity: 0.4;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-person strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
}
.testi-person small {
  font-size: 12.5px;
  color: var(--paragraph);
}
.testi-stars {
  color: var(--warning);
  font-size: 13px;
  margin-top: 6px;
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.15);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 95, 204, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: #fff;
  font-size: 22px;
  transform: scale(0.6);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.blog-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--paragraph);
  margin-bottom: 12px;
  font-family: var(--font-ui);
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-body h3 {
  font-size: 17.5px;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: between;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq-q h4 {
  font-size: 15.5px;
  font-weight: 600;
}
.faq-q .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--section-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
  color: var(--primary);
}
.faq-item.active .faq-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 26px 22px;
  font-size: 14.5px;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 70px 50px;
  background: linear-gradient(120deg, #0b1b33, #0f5fcc 130%);
}
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 22px;
  font-family: var(--font-ui);
  font-size: 14.5px;
}
.newsletter-form input:focus {
  outline: 2px solid var(--accent);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 14, 30, 0.9),
    rgba(15, 95, 204, 0.55)
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  padding: 60px;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  max-width: 560px;
  margin-bottom: 26px;
}

/* ---------- Footer ---------- */
footer {
  background: #081326;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 40px;
}
footer .logo {
  color: #fff;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 22px 0 26px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}
.footer-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 26px;
}
.footer-links li {
  margin-bottom: 13px;
}
.footer-links a {
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 20px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  font-size: 13px;
}
.payment-icons {
  display: flex;
  gap: 10px;
}
.payment-icons i {
  width: 38px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ---------- Floaters ---------- */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(27, 129, 254, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  transform: translateY(-5px);
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  filter: grayscale(0.15);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Reveal helper (used with GSAP if AOS unavailable) ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ---------- Cursor ---------- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: difference;
}
.custom-cursor.grow {
  width: 44px;
  height: 44px;
  background: #fff;
}

@media (max-width: 1199px) {
  .hero-search {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid-imgs {
    height: 420px;
  }
}
@media (max-width: 991px) {
  .main-nav,
  .header-actions .lang-select,
  .header-actions .header-icon-btn:not(.mobile-only) {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-search {
    grid-template-columns: 1fr;
  }
  .process-rail .rail-line {
    display: none;
  }
  .cta-inner {
    padding: 40px;
  }
  .custom-cursor {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-pad {
    padding: 36px 0;
  }
  .about-grid-imgs {
    height: 340px;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* ===================================================================
   INNER PAGES — shared components
=================================================================== */

/* ---------- Page hero / breadcrumb banner ---------- */
.page-hero {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1b33;

}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 20, 41, 0.72) 0%,
    rgba(6, 14, 30, 0.9) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb-nav a:hover {
  color: var(--accent);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 38px);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-top: 14px;
  font-size: 16px;
}

/* ---------- Values / timeline (About) ---------- */
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 20px !important;
  text-align: center;
  /* height: 100%; */
  transition: all 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value-card .ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 8px;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--border) 0 8px,
    transparent 8px 16px
  );
}
.timeline-item {
  position: relative;
  padding-bottom: 44px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item .yr {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.achieve-card {
  text-align: center;
  padding: 34px 20px;
  border-radius: var(--radius-md);
  background: var(--section-bg);
  height: 100%;
}
.achieve-card .num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
}

.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.team-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-img img {
  transform: scale(1.08);
}
.team-social {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.team-body {
  padding: 20px;
  text-align: center;
}
.team-body h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.team-body span {
  font-size: 13px;
  color: var(--primary);
  font-family: var(--font-ui);
  font-weight: 600;
}

.award-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  height: 100%;
}
.award-strip .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.award-strip strong {
  display: block;
  font-size: 14.5px;
  color: var(--text);
  font-family: var(--font-ui);
}
.award-strip small {
  font-size: 12.5px;
}

/* ---------- Pricing table (Visa / Umrah) ---------- */
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s var(--ease);
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}
.price-tag-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.price-amt {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
}
.price-amt small {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--paragraph);
}
.price-list {
  text-align: left;
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--paragraph);
}
.price-list li i {
  color: var(--success);
}
.price-list li.muted {
  color: #c4cad4;
}
.price-list li.muted i {
  color: #c4cad4;
}

.country-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.country-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 16px 9px 10px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.country-chip .flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
}

/* ---------- Multi-step form (Custom Tour) ---------- */
.stepper-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  position: relative;
}
.stepper-head::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.stepper-head .sh-fill {
  position: absolute;
  top: 20px;
  left: 0;
  height: 2px;
  background: var(--gradient-primary);
  z-index: 1;
  transition: width 0.4s var(--ease);
  width: 0%;
}
.step-dot-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--paragraph);
  transition: all 0.35s var(--ease);
}
.step-dot-wrap.active .step-dot,
.step-dot-wrap.done .step-dot {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.step-dot-wrap span.lbl {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--paragraph);
  text-align: center;
}
.step-dot-wrap.active span.lbl {
  color: var(--primary);
}

.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
  animation: fadeInPanel 0.5s var(--ease);
}
@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-floating-group {
  margin-bottom: 22px;
}
.form-floating-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control-custom {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  transition: all 0.3s var(--ease);
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.form-control-custom.is-invalid {
  border-color: #dc2626;
}
textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  width: fit-content;
}
.qty-stepper button {
  width: 44px;
  height: 48px;
  border: none;
  background: var(--section-bg);
  font-size: 18px;
  color: var(--primary);
  cursor: pointer;
}
.qty-stepper input {
  width: 56px;
  text-align: center;
  border: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
}

.hotel-pref-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.hotel-pref-card input {
  display: none;
}
.hotel-pref-card i {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.hotel-pref-card.selected,
.hotel-pref-card:hover {
  border-color: var(--primary);
  background: rgba(27, 129, 254, 0.05);
}

/* ---------- Blog sidebar ---------- */
.blog-search-box {
  position: relative;
}
.blog-search-box input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 13px 50px 13px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
}
.blog-search-box input:focus {
  outline: none;
  border-color: var(--primary);
}
.blog-search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: #fff;
}
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 26px;
}
.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 20px;
}
.cat-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.cat-list li:last-child {
  border-bottom: none;
}
.cat-list a {
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 500;
}
.cat-list a:hover {
  color: var(--primary);
}
.cat-list span {
  color: var(--paragraph);
  font-size: 12.5px;
}
.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.recent-post img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.recent-post h5 {
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.recent-post small {
  font-size: 11.5px;
  color: var(--paragraph);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  font-size: 12.5px;
  font-family: var(--font-ui);
  font-weight: 500;
  background: var(--section-bg);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.tag-cloud a:hover {
  background: var(--gradient-primary);
  color: #fff;
}
.pagination-custom {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.pagination-custom a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.pagination-custom a.active,
.pagination-custom a:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* ---------- Hotel / flight cards ---------- */
.hotel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  height: 100%;
}
.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.hotel-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hotel-card:hover .hotel-img img {
  transform: scale(1.1);
}
.hotel-stars {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  color: var(--warning);
  font-weight: 700;
}
.amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0;
}
.amenity-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--paragraph);
}
.amenity-row i {
  color: var(--primary);
}

.route-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.3s var(--ease);
}
.route-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.route-leg {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}
.route-leg .city {
  text-align: center;
}
.route-leg .city strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
}
.route-leg .city small {
  font-size: 12px;
  color: var(--paragraph);
}
.route-leg .line {
  flex: 1;
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0 6px,
    transparent 6px 12px
  );
}
.route-leg .line i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--primary);
  font-size: 16px;
  padding: 0 6px;
}
.airline-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.airline-badge .ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--section-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.tab-pills {
  display: flex;
  gap: 8px;
  background: var(--section-bg);
  border-radius: var(--radius-pill);
  padding: 6px;
  width: fit-content;
}
.tab-pills button {
  border: none;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  color: var(--paragraph);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.tab-pills button.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ---------- Offer / discount ribbon ---------- */
.offer-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.offer-card:hover img {
  transform: scale(1.1);
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 27, 51, 0.1),
    rgba(6, 14, 30, 0.9)
  );
}
.offer-ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--warning);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 40px;
  z-index: 3;
}
.offer-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.offer-content h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 4px;
}
.offer-content span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.error-num {
  font-family: var(--font-heading);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-plane-path {
  position: absolute;
  top: 20%;
  right: 8%;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
}

/* ---------- Inquiry / contact form panel ---------- */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}
.contact-info-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(27, 129, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 13.5px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .hero-search {
    grid-template-columns: 1fr;
  }
  .stepper-head {
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .stepper-head::before,
  .stepper-head .sh-fill {
    display: none;
  }
  .price-card.featured {
    transform: none;
  }
  .route-card {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---------- Swiper nav branding (destinations / gallery / details galleries) ---------- */
.swiper-button-next,
.swiper-button-prev {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  color: var(--primary) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}
.swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 22px;
  border-radius: 5px;
  transition: all 0.3s var(--ease);
}
.testi-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}

/* ---------- Header/Hero visual division ----------
   The header stays a distinct floating layer (glass pill on scroll,
   transparent overlay on the hero) so it always reads as separate
   chrome from the hero content beneath it, on every breakpoint. */
#site-header {
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  border-bottom-color: var(--border);
}
.hero-content {
  border-top: 1px solid rgba(255, 255, 255, 0.001);
}
