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

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

/* ── CSS VARIABLES ── */
:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: rgba(245, 158, 11, 0.14);
  --secondary: #1a1a1a;
  --accent: #f59e0b;
  --yellow: #ffedd5;
  --white: #020617;
  --bg: #020617;
  --bg2: #020617;
  --text: #f0f1f5;
  --text-muted: #98a0b3;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 55px rgba(0, 0, 0, 0.5);
  --shadow-green: 0 12px 35px rgba(245, 158, 11, 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;
}
.text-muted {
  color: var(--text-muted) !important;
}

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

/* ── SECTION BADGES & HEADS ── */
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  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(212, 175, 55, 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(212, 175, 55, 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: transparent;
  border-bottom: 1px solid transparent;
}
.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: rgba(2, 6, 23, 0.7) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.site-logo {
  flex-shrink: 0;
  width: auto;
  max-width: 320px;
}
.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(255, 255, 255, 0.85);
  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: var(--bg2);
  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);
  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: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  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: #fff !important;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  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%, #15110a 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(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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-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(240px, 1fr));
  gap: 30px;
}
.theme-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  padding: 45px 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.theme-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.theme-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border);
  transition: all 0.3s ease;
}
.theme-item:hover .theme-img-wrap {
  border-color: var(--primary);
  transform: scale(1.05);
}
.theme-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.theme-item:hover .theme-label {
  color: var(--primary);
}

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

/* Filter pills */
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill {
  background: var(--bg2);
  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: #12161f;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  height: 100%;
}
.pkg-card-h:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.35);
}
.pkg-card-img {
  position: relative;
  height: 230px;
  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: 14px;
  right: 14px;
  background: var(--primary);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pkg-tag.featured {
  background: var(--primary);
  color: #1a1a1a;
}
.pkg-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e63946;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}
.pkg-card-body {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pkg-duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pkg-price-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.pkg-price-old {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-right: 6px;
}
.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: "Playfair Display", "Outfit", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.pkg-rating .stars {
  background: var(--primary);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
}
.pkg-rating .reviews-count {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}
.pkg-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.pkg-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  border: none;
  color: #1a1a1a;
  background: var(--primary);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.pkg-cta-outline:hover {
  background: var(--primary-dark);
  color: #fff;
}
.pkg-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.pkg-gallery-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  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: var(--bg2);
}
.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);
  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: 240px;
  width: 240px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}
.story-card:hover {
  transform: scale(1.05);
  width: 260px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.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: 380px;
  background: var(--bg2);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}
.review-card-marquee:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}

/* 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.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
  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: var(--bg2);
  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: var(--white);
}
.why-card {
  background: linear-gradient(160deg, #131824, #0d1119);
  border-radius: 20px;
  padding: 36px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: none;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  transform: rotate(10deg);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}
.why-card h5 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}
.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, #1e3c72 0%, #2a5298 100%); 
  position: relative; 
  overflow: hidden; 
  padding: 80px 0; 
  color: #fff; 
  border-top: none;
  border-bottom: none;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 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(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  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: 1.05rem;
  padding: 16px 40px;
  border-radius: var(--r-xl);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  color: var(--primary);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 40px;
  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: #0b192c; color: rgba(255, 255, 255, 0.7); position: relative; }
.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(212, 175, 55, 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: 10px;
  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: var(--white) !important;
}
.bg-light {
  background-color: var(--bg2) !important;
}

/* ============================================
   ABOUT US SECTIONS
   ============================================ */
.about-hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #030e1b 0%, #0a2d1a 65%, #15110a 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: rgba(212, 175, 55, 0.14);
  color: #D4AF37;
}
.v-blue {
  background: rgba(66, 133, 244, 0.14);
  color: #6ba3ff;
}
.v-yellow {
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
}
.v-purple {
  background: rgba(99, 102, 241, 0.14);
  color: #9a9cf5;
}

.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;
  }
}


/* ── IMPROVED SECTION STYLES ── */
/* Trust Bar */
.trust-bar {
    background: var(--bg2);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.trust-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}
.trust-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.trust-item i {
    font-size: 2rem;
    color: var(--primary);
}
.trust-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text);
}
.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Trip Types */
.theme-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}
.theme-grid::-webkit-scrollbar {
    display: none;
}
.theme-item {
    flex: 0 0 auto;
    width: 160px;
    padding: 25px 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.theme-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}
.theme-item .theme-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.theme-item .theme-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.theme-item .theme-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}

/* Why Choose Us (Features) */
.feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}
.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Reviews */
.review-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.review-stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 15px;
}
.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.review-author-info h5 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 3px 0;
    color: var(--text);
}
.review-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
    

/* ── FINAL INSTA & CTA STYLES ── */
/* Instagram Section */
.insta-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
}
.insta-grid::-webkit-scrollbar {
    display: none;
}
.insta-card {
    flex: 0 0 auto;
    width: 180px;
    height: 280px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.insta-card:hover {
    transform: translateY(-5px);
}
.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
.insta-info {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}
.insta-info i {
    margin-right: 5px;
}

/* CTA Section Styles */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}
.cta-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn-primary {
    background: #fff;
    color: var(--primary-dark);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-btn-primary:hover {
    background: transparent;
    color: #fff;
}
.cta-btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
    
/* Glass Effect Globally Applied */
.feature-card,
.review-card,
.review-card-marquee,
.value-card,
.value-card-v2,
.team-card,
.service-card,
.why-card,
.pkg-card-h,
.collection-card,
.trust-item,
.stat-item,
.contact-form-card,
.theme-item,
.glass-effect {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* For form inputs globally */
.form-field input,
.form-field select,
.form-field textarea,
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-control:focus {
    border-color: #f59e0b !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1) !important;
}

/* Global Button Gradient */
.btn-primary-wk,
.login-btn,
.header-btn-premium-wa,
.hs-btn,
.pkg-gallery-btn,
.slide-btn,
.btn-plan,
.btn-submit,
.wa-btn,
.cta-btn-primary,
button,
input[type="submit"],
.btn {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    border: none !important;
    color: white !important;
}

.btn-primary-wk:hover,
.login-btn:hover,
.header-btn-premium-wa:hover,
.hs-btn:hover,
.pkg-gallery-btn:hover,
.slide-btn:hover,
.btn-plan:hover,
.btn-submit:hover,
.wa-btn:hover,
.cta-btn-primary:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4) !important;
    transform: translateY(-2px);
}
