/* ============================================
   WKENDLY – PREMIUM TRAVEL DESIGN SYSTEM
   Inspired by pickyourtrail.com
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap");

/* ── CSS VARIABLES ── */
:root {
  --primary: #09b367;
  --primary-dark: #0a9058;
  --primary-light: #e6f9f0;
  --secondary: #0b3a2d;
  --accent: #ff6b35;
  --yellow: #ffd166;
  --white: #ffffff;
  --bg: #f5f7fa;
  --bg2: #f0f4f0;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 55px rgba(0, 0, 0, 0.14);
  --shadow-green: 0 12px 35px rgba(9, 179, 103, 0.25);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 50px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
}

/* ── LAYOUT ── */
.section-padding {
  padding: 80px 0;
}

/* ── SECTION BADGES & HEADS ── */
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(9, 179, 103, 0.25);
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-sub {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Section head — centred or flex-row (title + View All) */
.section-head {
  margin-bottom: 36px;
}
.section-head.d-flex {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}
.section-head.d-flex > div {
  flex: 1;
  min-width: 0;
}

/* View All Link */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 9px 22px;
  border-radius: var(--r-xl);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}
.view-all-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ── SCROLL REVEAL ── */
[data-aos] {
  opacity: 0;
  transition: var(--transition);
}

/* ── BUTTONS ── */
.btn-primary-wk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--r-xl);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-green);
}
.btn-primary-wk:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(9, 179, 103, 0.35);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
/* ============================================
   HEADER – INCREASED HEIGHT + PREMIUM LAYOUT
   ============================================ */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-area .container {
  min-height: 80px;
  display: flex;
  align-items: stretch;
}
.header-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  gap: 20px;
}
.header-area.sticky {
  background: rgb(247 247 247) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: transparent;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.site-logo {
  flex-shrink: 0;
  width: 170px;
}
.site-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header-area.sticky .site-logo img {
  filter: none;
}

/* Nav */
.main-menu ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-menu ul li {
  position: relative;
}
.main-menu ul li a {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(16, 16, 16, 0.9);
  transition: var(--transition);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
/* sticky state same since header is always white */
.header-area.sticky .main-menu ul li a {
  color: var(--text);
}
.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: var(--primary) !important;
}

/* Mega Menu */
.has-dropdown > a i {
  font-size: 10px;
  transition: transform 0.3s;
}
.has-dropdown:hover > a i {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 640px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border: 1px solid var(--border);
}
.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-col h5 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.mega-menu-list a {
  font-size: 0.93rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mega-menu-list a:hover {
  color: var(--primary) !important;
  transform: translateX(5px);
}
.mega-menu-list a .badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 100px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.login-btn {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.login-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}
.header-btn-premium-wa {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.header-btn-premium-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

/* Mobile Header */
.mobile-header {
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.mobile-header-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-icon {
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--bg);
  transition: var(--transition);
}
.mobile-nav-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #0a0a10;
  z-index: 2000;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 36px 28px;
  overflow-y: auto;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
}
.mobile-sidebar.active {
  right: 0;
}
.logosicon-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu-close {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.menu-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
}
.mobile-nav-list li a {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.mobile-nav-list li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-travel {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #030e1b 0%, #0a2b1a 60%, #031a10 100%);
  overflow: hidden;
  padding-top: 100px; /* offset for fixed 80px header */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-travel.jpg") center/cover no-repeat;
  opacity: 0.28;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.18);
  }
}
.hero-travel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
/* Subtle animated particles background */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 920px;
  padding: 20px 20px 50px 0;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(9, 179, 103, 0.18);
  border: 1px solid rgba(9, 179, 103, 0.4);
  color: #5cf7b0;
  padding: 8px 20px;
  border-radius: var(--r-xl);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-inner h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-inner h1 .hl {
  color: var(--primary);
}
.hero-inner > p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Hero Search */
.hero-search {
  background: #fff;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  padding: 7px 7px 7px 22px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(9, 179, 103, 0.15);
  max-width: 700px;
  margin: 0 auto 28px;
  gap: 10px;
  transition: box-shadow 0.3s;
}
.hero-search:focus-within {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(9, 179, 103, 0.3);
}
.hero-search i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.97rem;
  color: var(--text);
  background: transparent;
  padding: 9px 0;
}
.hero-search input::placeholder {
  color: #aaa;
}
.hero-search .hs-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--r-xl);
  font-weight: 800;
  font-size: 0.93rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.hero-search .hs-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.03);
}

/* Quick Tags */
.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-tags span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: var(--r-xl);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.hero-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Vibe Selection */
.vibe-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: fit-content;
  margin: 0 auto;
}
.vibe-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.vibe-circles {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.vibe-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.vibe-item:hover {
  transform: translateY(-8px);
}
.vibe-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}
.vibe-item:hover .vibe-icon {
  border-color: var(--primary);
  box-shadow:
    0 0 0 5px rgba(9, 179, 103, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.3);
}
.vibe-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vibe-item span {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.vibe-item:hover span {
  color: var(--primary);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
  z-index: 5;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   TRUST BAR — Always horizontal
   ============================================ */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  margin-top: 50px;
}
.trust-bar .row {
  flex-wrap: nowrap !important;
}
.trust-bar .col-6,
.trust-bar .col-md-3 {
  flex: 0 0 25% !important;
  max-width: 25% !important;
}
.trust-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px;
  justify-content: center;
  padding: 10px 8px;
  border-right: 1px solid var(--border);
  min-height: 60px;
}
.trust-item:last-child {
  border-right: none;
}
.trust-item i {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.trust-item .fa-users {
  color: #4285f4;
}
.trust-item .fa-star {
  color: #00b67a;
}
.trust-item .fa-headset {
  color: #f59e0b;
}
.trust-item .fa-shield-halved {
  color: #34a853;
}
.trust-item h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* ============================================
   TRAVEL THEMES / CATEGORIES
   ============================================ */
.themes-section {
  background: var(--white);
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.theme-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 22px 12px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.theme-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.theme-img-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  transition: border-color 0.3s;
}
.theme-item:hover .theme-img-wrap {
  border-color: var(--primary);
}
.theme-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.theme-item:hover .theme-label {
  color: var(--primary-dark);
}

/* ============================================
   FEATURED PACKAGES
   ============================================ */
.packages-section {
  background: var(--bg);
}

/* Filter pills */
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-xl);
  transition: var(--transition);
  white-space: nowrap;
}
.pill:hover,
.pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Package Card */
.pkg-card-h {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  height: 100%;
}
.pkg-card-h:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pkg-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.pkg-card-h:hover .pkg-card-img img {
  transform: scale(1.08);
}
.pkg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.pkg-tag.featured {
  background: var(--yellow);
  color: #333;
}
.pkg-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e63946;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}
.pkg-duration-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-dest {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pkg-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}
.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.pkg-rating .stars {
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
}
.pkg-rating .reviews-count {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.pkg-price-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pkg-price-old {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pkg-price-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.pkg-price-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.pkg-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.pkg-cta-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Swiper overrides */
.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: var(--shadow-md);
  color: var(--primary) !important;
  border: 1px solid var(--border);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 900 !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* ============================================
   CURATED COLLECTIONS SCROLL
   ============================================ */
.collections-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scrollbar-width: none;
}
.collections-scroll::-webkit-scrollbar {
  display: none;
}
.collection-card {
  min-width: 270px;
  height: 190px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.collection-card:hover img {
  transform: scale(1.1);
}
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
}
.collection-overlay h5 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: 1.05rem;
}
.collection-count {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 3px;
}

/* ============================================
   DESTINATIONS MOSAIC
   ============================================ */
.destinations-section {
  background: #fff;
}
.dest-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.dest-tile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.dest-tile.big {
  grid-row: 1/3;
  grid-column: 1;
}
.dest-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-tile:hover img {
  transform: scale(1.06);
}
.dest-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  color: #fff;
}
.dest-tile-overlay h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.dest-tile-overlay p {
  font-size: 0.82rem;
  opacity: 0.8;
  margin: 0;
}
.dest-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
  padding: 11px 26px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}
.dest-view-all:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   INSTAGRAM / GRAM SECTION
   ============================================ */
.gram-section {
  background: var(--secondary);
  padding: 70px 0;
}
.gram-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.gram-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}
.stories-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}
.stories-scroll::-webkit-scrollbar {
  display: none;
}
.story-card {
  min-width: 170px;
  width: 170px;
  height: 295px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}
.story-card:hover {
  transform: scale(1.05) translateY(-4px);
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.65));
}
.story-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

/* ============================================
   REVIEWS — INFINITE MARQUEE SCROLL
   ============================================ */
.reviews-section {
  background: var(--bg);
  overflow: hidden;
}

/* Wrapper — clips overflow and fades edges */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

/* Gradient fade masks on left & right edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* The scrolling track */
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content; /* natural width from all cards */
  will-change: transform;
}

/* Row 1 → scrolls LEFT */
.marquee-left {
  animation: marqueeLeft 35s linear infinite;
}
/* Row 2 → scrolls RIGHT (reverse) */
.marquee-right {
  animation: marqueeRight 45s linear infinite;
}

/* Pause on hover over the wrapper */
.marquee-wrapper:hover .marquee-left,
.marquee-wrapper:hover .marquee-right {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 50% = one full set of cards */
}
@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Individual review card */
.review-card-marquee {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  cursor: default;
}
.review-card-marquee:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Stars */
.review-stars-m {
  color: #f59e0b;
  font-size: 0.88rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

/* Review text */
.review-text-m {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reviewer meta row */
.reviewer-meta-m {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-av-m {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--primary);
  flex-shrink: 0;
}
.reviewer-nm {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text);
}
.reviewer-tr {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviewer-tr i {
  color: var(--primary);
  font-size: 0.7rem;
}

/* Keep old static .review-card styles for any other pages */
.review-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 20px;
}
.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--primary);
  flex-shrink: 0;
}
.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewer-name {
  font-weight: 800;
  font-size: 0.9rem;
}
.reviewer-trip {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   WHY WKENDLY
   ============================================ */
.why-section {
  background: #fff;
}
.why-card {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
}
.why-card h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0b3a2d 0%, #062918 50%, #061e14 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(9, 179, 103, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}
.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: var(--r-xl);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: var(--r-xl);
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer-area {
  background: #0d121b;
  color: #fff;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #34d399, var(--primary));
  background-size: 200% 100%;
  animation: gradFlow 5s linear infinite;
}
@keyframes gradFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
.footer-logo {
  display: inline-block;
  margin-bottom: 28px;
}
.brand-invert {
  max-width: 160px;
  /* filter: brightness(0) invert(1); */
}
.brand-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.footer-social-box {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-4px) rotate(8deg);
  box-shadow: 0 8px 20px rgba(9, 179, 103, 0.35);
}
.footer-widget-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px;
}
.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 14px;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}
.footer-links li a:hover {
  color: #fff;
  transform: translateX(6px);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.item-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.contact-item:hover .item-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.item-text p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.item-text a {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.item-text a:hover {
  color: var(--primary);
}
.footer-bottom {
  margin-top: 70px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.copyright-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* Floating Buttons */
.fixed-actions-area {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1001;
}
.btn-floating {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: none;
}
.btn-floating.call {
  background: #2d0b5a;
}
.btn-floating.whatsapp {
  background: #25d366;
}
.btn-floating:hover {
  transform: translateY(-6px) scale(1.1);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate {
  animation: fadeInUp 0.8s ease both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.35s;
}
.delay-4 {
  animation-delay: 0.5s;
}
.bg-white {
  background-color: #fff !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}

/* ============================================
   ABOUT US SECTIONS
   ============================================ */
.about-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #030e1b 0%, #0a2d1a 65%, #031a10 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-travel.jpg") center/cover;
  opacity: 0.18;
  filter: grayscale(0.5);
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.about-hero h1 .hl {
  color: var(--primary);
}
.about-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
}

/* Values Grid — Pastel Style */
.value-card {
  padding: 50px 35px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2rem;
  margin-bottom: 30px;
}
/* Pastel Variants */
.v-mint {
  background: #e6f9f0;
  color: #09b367;
}
.v-blue {
  background: #e6eff9;
  color: #4285f4;
}
.v-yellow {
  background: #fffcf0;
  color: #f59e0b;
}
.v-purple {
  background: #f4f0ff;
  color: #6366f1;
}

.value-card h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
}
.value-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Story Section */
.story-img-frame {
  position: relative;
  padding: 20px;
}
.story-img-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 40px;
  border: 4px solid var(--primary-light);
  border-radius: var(--r-lg);
  z-index: -1;
}
.story-img-frame img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* Partner logos bar */
.logos-bar {
  background: #0d121b;
  padding: 50px 0;
  border-top: 4px solid var(--primary);
}
.logos-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  opacity: 0.45;
  filter: grayscale(1) brightness(2);
}
.logos-flex img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .main-menu,
  .header-actions {
    display: none;
  }
  .hero-inner h1 {
    letter-spacing: -1px;
  }
  .dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .dest-tile.big {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  .app-band {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 56px 0;
  }
  .vibe-circles {
    gap: 20px;
  }
  .vibe-icon {
    width: 68px;
    height: 68px;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .theme-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  .dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .dest-tile.big {
    grid-row: 1/2;
    grid-column: 1/3;
    height: 200px;
  }
  .mega-menu {
    display: none;
  }
  .cta-section {
    padding: 70px 0;
  }
  .footer-widget-title::after {
    left: 0;
  }
}
@media (max-width: 480px) {
  .hero-search {
    padding: 5px 5px 5px 16px;
  }
  .hero-search .hs-btn {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  .hero-tags {
    gap: 6px;
  }
  .vibe-selection {
    padding: 16px 20px;
  }
  .dest-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .dest-tile.big {
    grid-row: auto;
    grid-column: auto;
    height: 220px;
  }
}
