/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  /* Colors */
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #dcfce7;
  --secondary: #0F172A;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  
  --text-primary: #0F172A;
  --text-accent: #16a34a;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.15);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

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

ul {
  list-style: none;
}

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

section,
.section,
footer,
main {
  max-width: 100vw;
  overflow-x: hidden;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
  min-width: 0;
}

.section {
  padding: var(--section-padding);
}

.highlight {
  color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--text-white);
  color: var(--primary);
  border-color: var(--text-white);
}

.btn--white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================================
   TOP INFO BAR
   ============================================ */
.topbar {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 12px;
  padding: 8px 0;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid var(--border-light);
}

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

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.topbar__item svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
}

.topbar__right .topbar__item:hover {
  color: var(--primary);
}

a.topbar__item {
  text-decoration: none;
  cursor: pointer;
}
a.topbar__item:hover {
  color: var(--primary);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: none;
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header--scrolled .topbar {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  white-space: nowrap;
}

.logo__text br {
  display: block;
}

.logo__icon {
  color: var(--primary);
  width: 32px;
  height: 32px;
}

.logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Search bar */
.header__search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 4px 0 16px;
  height: 44px;
  transition: var(--transition-fast);
  margin: 0 auto;
}

.header__search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.header__search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.header__search-input {
  flex: 1;
  padding: 0 12px;
  font-size: 14px;
  color: var(--text-primary);
  background: transparent;
}

.header__search-input::placeholder {
  color: var(--text-muted);
}

.header__search-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.header__search-btn:hover {
  background: #1a2540;
}

/* Header actions (Profile, Favorites, Cart) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: pointer;
}

.header__action-item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.header__action-item:hover {
  color: var(--primary);
}

/* Header social media links */
.header__social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: var(--transition-fast);
  cursor: pointer;
  font-size: 16px;
}

.header__social-item svg {
  width: 22px;
  height: 22px;
}

.header__social-item i {
  font-size: 18px;
}

.header__social-item:hover {
  transform: translateY(-1px);
  opacity: .8;
}

.header__social-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header__social-placeholder {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile contact button — hidden on desktop */
.header__contact-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.header__contact-mobile:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Mobile search icon — hidden on desktop */
.header__search-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.header__search-mobile svg {
  width: 18px;
  height: 18px;
}

.header__search-mobile:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
}

/* Topbar visibility tag (editor only) */
.topbar__vis-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(59,130,246,.12);
  color: #3b82f6;
  margin-left: 4px;
  vertical-align: middle;
}

/* Mobile/desktop visibility helpers on topbar */
.topbar__item--mobile {
  display: none;
}

.topbar__item--desktop {
  display: inline-flex;
}

/* ============================================
   CATEGORY NAVIGATION BAR
   ============================================ */
.catnav {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.catnav__inner {
  display: flex;
  align-items: stretch;
  height: 48px;
  gap: 0;
}

.catnav__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  border: none;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.catnav__toggle:hover {
  color: var(--primary);
}

.catnav__toggle-icon {
  width: 16px;
  height: 16px;
}

.catnav__links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 4px;
}

.catnav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.catnav__link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.catnav__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  white-space: nowrap;
  transition: var(--transition-fast);
  align-self: stretch;
  margin: 0;
  margin-right: -24px;
  flex-shrink: 0;
}

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

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.search-overlay--active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__header {
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  flex-shrink: 0;
}
.search-overlay__header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-overlay__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 16px;
  height: 52px;
  transition: border-color .2s;
}
.search-overlay__input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22,163,74,.1);
}
.search-overlay__icon {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.search-overlay__input {
  flex: 1;
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
}
.search-overlay__input::placeholder {
  color: var(--text-muted);
}
.search-overlay__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.search-overlay__clear:hover {
  background: var(--text-muted);
  color: #fff;
}
.search-overlay__clear svg { width: 14px; height: 14px; }
.search-overlay__close {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  font-family: inherit;
  white-space: nowrap;
  transition: color .15s;
}
.search-overlay__close:hover { color: var(--primary); }

.search-overlay__body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 0 64px;
}

/* Suggestions (type-ahead chips) */
.search-overlay__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.search-overlay__suggestions:empty { display: none; }
.search-suggestion {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: all .15s;
}
.search-suggestion:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(22,163,74,.05);
}
.search-suggestion svg { width: 14px; height: 14px; }

/* Placeholder / empty state */
.search-overlay__placeholder {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.search-overlay__placeholder-icon {
  width: 48px;
  height: 48px;
  color: var(--border);
  margin-bottom: 16px;
}
.search-overlay__placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.search-overlay__placeholder p {
  font-size: .9375rem;
  margin-bottom: 24px;
}
.search-overlay__quick-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.search-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.search-quick-link:hover { background: var(--primary); color: #fff; }
.search-quick-link svg { width: 14px; height: 14px; }

/* Results sections */
.search-results__section {
  margin-bottom: 32px;
}
.search-results__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.search-results__section-title svg { width: 16px; height: 16px; color: var(--primary); }

.search-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Individual result card */
.search-result-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.search-result-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.search-result-card__image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result-card__image-placeholder {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
}
.search-result-card__body {
  flex: 1;
  min-width: 0;
}
.search-result-card__type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  margin-bottom: 4px;
}
.search-result-card__type svg { width: 12px; height: 12px; }
.search-result-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result-card__subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 13px;
}
.search-result-card__price {
  font-weight: 700;
  color: var(--primary);
}
.search-result-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--text-secondary);
}
.search-result-card__rating svg { width: 12px; height: 12px; color: #f59e0b; }

/* No results */
.search-no-results {
  text-align: center;
  padding: 60px 20px;
}
.search-no-results__icon {
  width: 48px;
  height: 48px;
  color: var(--border);
  margin-bottom: 16px;
}
.search-no-results h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.search-no-results p {
  color: var(--text-secondary);
  font-size: .9375rem;
}

/* Loading spinner */
.search-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.search-loading__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: search-spin .7s linear infinite;
  margin: 0 auto 12px;
}
@keyframes search-spin { to { transform: rotate(360deg); } }

/* Mobile */
@media (max-width: 768px) {
  .search-overlay__header { padding: 12px 0; }
  .search-overlay__input-wrap { height: 46px; }
  .search-overlay__input { font-size: 15px; }
  .search-overlay__body { padding: 20px 0 40px; }
  .search-results__grid { grid-template-columns: 1fr; }
  .search-overlay__placeholder { padding: 40px 20px; }
}

/* ============================================
   MEGA MENU
   ============================================ */
.megamenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  padding: 0 0 32px;
}

.megamenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu__inner {
  display: flex;
  gap: 0;
  min-height: 420px;
}

.megamenu__sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Level 2: Destinations column */
.megamenu__destinations {
  width: 240px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 0;
  overflow-y: auto;
}

.megamenu__dest-panel {
  display: none;
  padding: 12px 0;
}

.megamenu__dest-panel.active {
  display: block;
  animation: megaFadeIn 0.2s ease;
}

.megamenu__dest-header {
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4px;
}

.megamenu__dest-header h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.megamenu__showall--sm {
  font-size: 12px;
  padding: 4px 0;
  border: none;
}

.megamenu__dest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: var(--transition-fast);
}

.megamenu__dest-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.megamenu__dest-item:hover .megamenu__cat-icon {
  background: var(--primary);
  color: #fff;
}

.megamenu__dest-item.active {
  background: var(--primary);
  color: #fff;
}

.megamenu__dest-item.active .megamenu__cat-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.megamenu__dest-item.active .megamenu__cat-arrow {
  opacity: 1;
  color: #fff;
}

.megamenu__empty {
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 16px;
  font-style: italic;
}

.megamenu__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition-fast);
  text-align: left;
  width: 100%;
}

.megamenu__cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  flex-shrink: 0;
}

.megamenu__cat-icon svg {
  width: 18px;
  height: 18px;
}

.megamenu__cat-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  opacity: 0.4;
}

.megamenu__cat:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.megamenu__cat:hover .megamenu__cat-icon {
  background: var(--primary);
  color: #fff;
}

.megamenu__cat.active {
  background: var(--primary);
  color: #fff;
}

.megamenu__cat.active .megamenu__cat-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.megamenu__cat.active .megamenu__cat-arrow {
  opacity: 1;
  color: #fff;
}

.megamenu__content {
  flex: 1;
  padding: 24px 32px;
  position: relative;
}

.megamenu__panel {
  display: none;
}

.megamenu__panel.active {
  display: block;
  animation: megaFadeIn 0.2s ease;
}

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(4px); }
  to { opacity: 1; transform: translateX(0); }
}

.megamenu__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.megamenu__panel-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.megamenu__showall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.megamenu__showall svg {
  width: 14px;
  height: 14px;
}

.megamenu__showall:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.megamenu__columns {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
}

.megamenu__col-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
}

.megamenu__col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}

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

.megamenu__col-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.megamenu__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.megamenu__item {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: var(--transition-fast);
}

.megamenu__item:hover {
  color: var(--text-primary);
}

.megamenu__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.megamenu__link:hover {
  color: var(--primary);
}

.megamenu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.megamenu__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   MOBILE BOTTOM NAVBAR
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 6px 8px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav__item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.mobile-nav__item span {
  line-height: 1;
}

.mobile-nav__item.active {
  color: var(--primary);
}

.mobile-nav__item.active::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 4px 4px;
}

.mobile-nav__item:active {
  transform: scale(0.92);
  background: rgba(22, 163, 74, 0.08);
}

/* user-dropdown removed — replaced by header__action-item */

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  z-index: 2000;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.mobile-menu__close:hover {
  background: var(--bg-tertiary);
}

.mobile-menu__list {
  margin-bottom: 24px;
}

.mobile-menu__link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

.mobile-menu__link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__actions .btn {
  justify-content: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 156px; /* topbar(36) + header(72) + catnav(48) */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  padding: 80px 0 60px;
  max-width: 800px;
  width: 100%;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  max-width: 100%;
  flex-wrap: wrap;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__title .highlight {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Search Box */
.search-box {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  max-width: 780px;
  width: 100%;
}

.search-box__tabs {
  display: flex;
  gap: 0;
  padding: 6px 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.search-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
  background: none;
}

.search-tab svg {
  width: 16px;
  height: 16px;
}

.search-tab:hover {
  color: var(--text-secondary);
}

.search-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.search-box__form {
  display: flex;
  align-items: center;
  padding: 8px;
  width: 100%;
  min-width: 0;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  flex: 1;
  min-width: 0;
}

.search-field__icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.search-field__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.search-field__content label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.search-field__content input {
  font-size: 14px;
  color: var(--text-secondary);
  width: 100%;
  background: transparent;
}

.search-field__content input::placeholder {
  color: var(--text-muted);
}

.search-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.search-box__btn {
  padding: 14px 28px;
  border-radius: var(--radius-lg) !important;
  flex-shrink: 0;
}

.search-box__btn svg {
  width: 18px;
  height: 18px;
}

/* Trust Ratings */
.trust-ratings {
  margin-top: 36px;
}

.trust-ratings__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.trust-ratings__badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.trust-badge__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-badge__stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.trust-badge__score {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.trust-badge__count {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.trust-badge__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Scroll Indicator — right side mouse + vertical text */
.scroll-indicator {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.scroll-indicator__mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
}

.scroll-indicator__wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

.scroll-indicator__text {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-indicator__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  background: var(--bg-secondary);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.category-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  transition: var(--transition);
}

.category-card__icon svg {
  width: 28px;
  height: 28px;
}

.category-card:hover .category-card__icon {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   FILTER TABS
   ============================================ */
.filter-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  padding: 4px;
}

.filter-tab {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.filter-tab:hover {
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--bg-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   TOUR CARDS
   ============================================ */
.tours__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tour-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.tour-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tour-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.tour-card__badge--hot {
  background: #EF4444;
}

.tour-card__fav {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  transition: var(--transition);
}

.tour-card__fav:hover {
  background: #EF4444;
  color: white;
}

.tour-card__fav.active {
  background: #EF4444;
  color: white;
}

.tour-card__fav svg {
  width: 18px;
  height: 18px;
}

.tour-card__duration {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.tour-card__duration svg {
  width: 14px;
  height: 14px;
}

.tour-card__body {
  padding: 20px;
}

.tour-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tour-card__location svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.tour-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.star-filled {
  color: var(--accent);
  fill: var(--accent);
}

.star-half {
  color: var(--accent);
  fill: var(--accent);
  opacity: 0.5;
}

.tour-card__rating span {
  font-size: 13px;
  color: var(--text-muted);
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  gap: 8px;
  flex-wrap: wrap;
}

.tour-card__price,
.hotel-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
}

.price-from {
  font-size: 12px;
  color: var(--text-muted);
}

.price-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.price-per {
  font-size: 13px;
  color: var(--text-muted);
}

/* Card link arrow icon */
.card-link-arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  color: var(--primary);
  vertical-align: middle;
  margin-left: 4px;
  opacity: .6;
  transition: var(--transition-fast);
}

/* Linkable card styles */
a.tour-card--link,
a.hotel-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.tour-card--link:hover .card-link-arrow,
a.hotel-card--link:hover .card-link-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ============================================
   MARQUEE BANNER
   ============================================ */
.marquee-banner {
  background: #2d4a2e;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.marquee-banner__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-banner:hover .marquee-banner__track {
  animation-play-state: paused;
}

.marquee-banner__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  color: #e8dcc8;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}

a.marquee-banner__item:hover {
  color: #fff;
}

.marquee-banner__icon {
  width: 14px;
  height: 14px;
  opacity: .6;
  flex-shrink: 0;
}

.marquee-banner__edit-add {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.marquee-banner--empty {
  border: 2px dashed rgba(255,255,255,.2);
}

.marquee-banner__edit-add--center {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
}

.marquee-banner__empty-hint {
  color: #94a3b8;
  font-size: 0.85rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.service-card__image {
  position: absolute;
  inset: 0;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-card__image img {
  transform: scale(1.08);
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.1) 100%);
}

.service-card__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin-bottom: .25rem;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.service-card__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.4;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: .25rem;
  transition: gap .2s;
}
.service-card__link svg,
.service-card__link i { width: 16px; height: 16px; }
.service-card:hover .service-card__link { gap: .625rem; }

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.dest-card--large {
  grid-row: span 2;
  height: 100%;
}

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

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  transition: var(--transition);
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
}

.dest-card__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.dest-card__content p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.dest-card__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.dest-card__arrow svg {
  width: 20px;
  height: 20px;
}

.dest-card:hover .dest-card__arrow {
  background: var(--primary);
  transform: rotate(45deg);
}

/* ============================================
   HOTELS
   ============================================ */
.hotels {
  background: var(--bg-secondary);
}

.hotels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hotel-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.hotel-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.hotel-card__stars-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.hotel-card__stars-badge svg {
  width: 14px;
  height: 14px;
}

.hotel-card__body {
  padding: 20px;
}

.hotel-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hotel-card__location svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.hotel-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hotel-card__amenities span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.hotel-card__amenities svg {
  width: 14px;
  height: 14px;
}

.hotel-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.rating-badge {
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.hotel-card__rating span {
  font-size: 13px;
  color: var(--text-muted);
}

.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ============================================
   OFFER BANNER
   ============================================ */
.offer-banner__inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.offer-banner__bg {
  position: absolute;
  inset: 0;
}

.offer-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.9) 0%, rgba(21, 128, 61, 0.7) 100%);
}

.offer-banner__content {
  position: relative;
  padding: 60px;
  max-width: 600px;
  color: white;
}

.offer-banner__tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.offer-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.offer-banner__content .highlight {
  color: var(--accent);
}

.offer-banner__content p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.6;
}

.offer-banner__timer {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  min-width: 72px;
}

.timer-number {
  font-size: 28px;
  font-weight: 800;
}

.timer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* Offer banner right visual panel */
.offer-banner__visual {
  position: relative;
  flex: 1;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-banner__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #fff;
  animation: offerFloat 6s ease-in-out infinite;
  white-space: nowrap;
}

.offer-banner__float-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.offer-banner__float-card span {
  font-size: 12px;
  opacity: 0.8;
}

.offer-banner__float-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.offer-banner__float-icon svg {
  width: 22px;
  height: 22px;
}

.offer-banner__float-card--1 {
  top: 40px;
  right: 60px;
  animation-delay: 0s;
}

.offer-banner__float-card--2 {
  top: 50%;
  right: 20px;
  animation-delay: -2s;
}

.offer-banner__float-card--3 {
  bottom: 40px;
  right: 80px;
  animation-delay: -4s;
}

.offer-banner__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.offer-banner__ring--1 {
  width: 220px;
  height: 220px;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  animation: offerPulse 4s ease-in-out infinite;
}

.offer-banner__ring--2 {
  width: 320px;
  height: 320px;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  animation: offerPulse 4s ease-in-out infinite 1s;
}

@keyframes offerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes offerPulse {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateY(-50%) scale(1.05); }
}

/* ============================================
   SOUVENIRS / PRODUCTS
   ============================================ */
.souvenirs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #EF4444;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-card__actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: 50%;
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-action:hover {
  background: var(--primary);
  color: white;
}

.product-action svg {
  width: 18px;
  height: 18px;
}

.product-card__body {
  padding: 20px;
}

.product-card__origin {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 15px;
  font-weight: 600;
  margin: 6px 0 10px;
  line-height: 1.4;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars-sm {
  display: flex;
  gap: 1px;
}

.stars-sm svg {
  width: 14px;
  height: 14px;
}

.product-card__rating span {
  font-size: 12px;
  color: var(--text-muted);
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__price .price-amount {
  font-size: 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
}

.step__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  color: var(--primary);
}

.step__icon svg {
  width: 32px;
  height: 32px;
}

.step__number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-secondary);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step__connector {
  color: var(--text-muted);
}

.step__connector svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ============================================
   BLOG HOMEPAGE SECTION
   ============================================ */
.blog-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-home__card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-home__card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-home__card-img {
  height: 200px;
  overflow: hidden;
}
.blog-home__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-home__card:hover .blog-home__card-img img {
  transform: scale(1.05);
}
.blog-home__card-body {
  padding: 1.5rem;
}
.blog-home__card-cat {
  display: inline-block;
  padding: .125rem .625rem;
  background: rgba(34, 197, 94, .1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.blog-home__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-home__card-excerpt {
  color: var(--text-secondary);
  font-size: .8125rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .75rem;
}
.blog-home__card-meta {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: var(--text-muted);
}
.blog-home__card-meta svg,
.blog-home__card-meta i { width: 13px; height: 13px; }

@media (max-width: 1024px) {
  .blog-home__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-home__grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT SECTION — Premium Card Design
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-card__icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.contact-card__icon--whatsapp {
  background: #dcfce7;
  color: #16a34a;
}

.contact-card:hover .contact-card__icon--whatsapp {
  background: #16a34a;
  color: white;
}

.contact-card__icon--email {
  background: #fef3c7;
  color: #d97706;
}

.contact-card:hover .contact-card__icon--email {
  background: #d97706;
  color: white;
}

.contact-card__icon--location {
  background: #fce7f3;
  color: #db2777;
}

.contact-card:hover .contact-card__icon--location {
  background: #db2777;
  color: white;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.contact-card__content p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-card__hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.contact__social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.contact__social-bar span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact__social-icons {
  display: flex;
  gap: 10px;
}

.contact__social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  transition: var(--transition);
}

.contact__social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.contact__social-icons svg {
  width: 18px;
  height: 18px;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact__map iframe {
  display: block;
}

/* ============================================
   NEWSLETTER (legacy)
   ============================================ */
.newsletter {
  background: var(--bg-secondary);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.newsletter__content {
  flex: 1;
}

.newsletter__icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.newsletter__content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter__content p {
  font-size: 15px;
  color: var(--text-secondary);
}

.newsletter__form {
  flex: 1;
  max-width: 480px;
}

.newsletter__input-group {
  display: flex;
  gap: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  padding: 6px;
  border: 1px solid var(--border);
}

.newsletter__input-group input {
  flex: 1;
  padding: 12px 20px;
  font-size: 15px;
  background: transparent;
}

.newsletter__input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  padding-left: 12px;
}

.newsletter__note svg {
  width: 14px;
  height: 14px;
  color: #22C55E;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.footer__top {
  display: flex;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  max-width: 320px;
  flex-shrink: 0;
}

.footer__brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer__brand .logo__img {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  color: white;
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
  gap: 32px;
}

.footer__col h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer__col a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 14px;
}

.footer__payment {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-icons svg {
  width: 20px;
  height: 20px;
}

.payment-text {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   AI FAB BUTTON
   ============================================ */
.ai-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #15803d, #22c55e);
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 4px 24px rgba(22, 163, 74, 0.35),
    0 0 0 0 rgba(22, 163, 74, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.ai-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 32px rgba(22, 163, 74, 0.45),
    0 0 0 4px rgba(22, 163, 74, 0.15);
}

.ai-fab:active {
  transform: translateY(-1px) scale(1.01);
}

.ai-fab__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #16a34a, #15803d, #22c55e, #16a34a);
  background-size: 300% 300%;
  animation: ai-glow 4s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.ai-fab:hover .ai-fab__glow {
  opacity: 1;
}

.ai-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ai-sparkle 3s ease-in-out infinite;
}

.ai-fab__icon svg {
  width: 24px;
  height: 24px;
}

.ai-fab__label {
  line-height: 1;
}

@keyframes ai-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ai-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(5deg); }
  50% { transform: scale(1) rotate(0deg); }
  75% { transform: scale(1.1) rotate(-5deg); }
}

/* FAB open/close state */
.ai-fab__close {
  display: none;
  width: 24px;
  height: 24px;
}
.ai-fab__close svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   AI FULL-PAGE OVERLAY
   ============================================ */
.ai-page {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}
.ai-page.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.ai-page__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ai-page__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #0a1a0f 0%, #0d1f14 40%, #081a0d 100%);
  overflow: hidden;
  transform: scale(0.92) translateY(40px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-page.is-open .ai-page__container {
  transform: scale(1) translateY(0);
}

/* Header */
.ai-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ai-page__back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.ai-page__back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.ai-page__back svg {
  width: 18px; height: 18px;
}
.ai-page__remaining {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.ai-page__remaining-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.ai-page__remaining-count.warn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.ai-page__remaining-count.depleted {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Welcome / Hero */
.ai-page__welcome {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 120px;
  text-align: center;
  transition: opacity 0.4s, transform 0.4s;
}
.ai-page__welcome.hidden {
  display: none;
}
.ai-page__logo {
  margin-bottom: 24px;
}
.ai-page__logo-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(22, 163, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ai-logo-pulse 3s ease-in-out infinite;
}
.ai-page__logo-ring svg {
  width: 36px; height: 36px;
  stroke: #22c55e;
  animation: ai-sparkle 3s ease-in-out infinite;
}
@keyframes ai-logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(22, 163, 74, 0); }
}
.ai-page__title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.ai-page__title span {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-page__subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Quick-question cards grid */
.ai-page__quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  width: 100%;
}
.ai-page__quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: left;
  font-family: inherit;
  color: #fff;
}
.ai-page__quick-card:hover {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
}
.ai-page__quick-icon {
  font-size: 24px;
  line-height: 1;
}
.ai-page__quick-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.ai-page__quick-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* Chat area */
.ai-page__chat {
  flex: 1;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ai-page__chat.active {
  display: flex;
}
.ai-page__messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

/* Messages */
.ai-msg {
  display: flex;
  gap: 12px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  animation: ai-msg-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-msg--user {
  flex-direction: row-reverse;
}
.ai-msg__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.ai-msg--bot .ai-msg__avatar {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(34, 197, 94, 0.15));
  border: 1px solid rgba(22, 163, 74, 0.3);
}
.ai-msg--bot .ai-msg__avatar svg {
  width: 16px; height: 16px;
  stroke: #22c55e;
}
.ai-msg--user .ai-msg__avatar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ai-msg--user .ai-msg__avatar svg {
  width: 16px; height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
}
.ai-msg__bubble {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.65;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.ai-msg--bot .ai-msg__bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-top-left-radius: 4px;
}
.ai-msg--user .ai-msg__bubble {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  border-top-right-radius: 4px;
}
/* Markdown in bot messages */
.ai-msg--bot .ai-msg__bubble strong { font-weight: 600; color: #fff; }
.ai-msg--bot .ai-msg__bubble a { color: #4ade80; text-decoration: underline; }
.ai-msg--bot .ai-msg__bubble ul, .ai-msg--bot .ai-msg__bubble ol { margin: 8px 0; padding-left: 20px; }
.ai-msg--bot .ai-msg__bubble li { margin-bottom: 4px; }
.ai-msg--bot .ai-msg__bubble p { margin: 6px 0; }
.ai-msg--bot .ai-msg__bubble p:first-child { margin-top: 0; }
.ai-msg--bot .ai-msg__bubble p:last-child { margin-bottom: 0; }

/* Streaming cursor */
.ai-msg__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #4ade80;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: ai-cursor-blink 0.8s step-end infinite;
}
@keyframes ai-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Typing indicator */
.ai-typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  align-items: center;
}
.ai-typing__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.5);
  animation: ai-typing-bounce 1.4s ease-in-out infinite;
}
.ai-typing__dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes ai-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* Input bar */
.ai-page__input-bar {
  flex-shrink: 0;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ai-page__input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 6px 6px 6px 20px;
  transition: border-color 0.2s;
}
.ai-page__input-wrap:focus-within {
  border-color: rgba(22, 163, 74, 0.5);
}
.ai-page__textbox {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  padding: 10px 0;
}
.ai-page__textbox::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.ai-page__send {
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.ai-page__send:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
}
.ai-page__send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.ai-page__send svg {
  width: 18px; height: 18px;
}
.ai-page__disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin: 0;
}

@keyframes ai-msg-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MOBILE NAV AI BUTTON
   ============================================ */
.mobile-nav__ai-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #15803d, #22c55e);
  color: #fff;
  border: none;
  margin-top: -20px;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav__ai-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e, #16a34a);
  background-size: 200% 200%;
  animation: ai-glow 3s ease infinite;
  z-index: -1;
  opacity: 0.5;
}

.mobile-nav__ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ai-sparkle 3s ease-in-out infinite;
}

.mobile-nav__ai-icon svg {
  width: 22px;
  height: 22px;
}

.mobile-nav__ai-btn:active {
  transform: scale(0.92);
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal__overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 2001;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.active {
  transform: translateX(-50%) translateY(0);
}

.contact-modal__header {
  padding: 28px 24px 16px;
  text-align: center;
  position: relative;
}

.contact-modal__header::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
}

.contact-modal__header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-modal__header p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.contact-modal__close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.contact-modal__close svg {
  width: 18px;
  height: 18px;
}

.contact-modal__body {
  padding: 8px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.contact-modal__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  text-decoration: none;
  color: var(--text-primary);
  border: none;
  background: none;
  cursor: pointer;
}

.contact-modal__item:hover {
  background: var(--bg-secondary);
}

.contact-modal__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-modal__icon svg {
  width: 22px;
  height: 22px;
}

.contact-modal__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-modal__info strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-modal__info span {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-modal__arrow {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Contact modal item colors */
.contact-modal__item--whatsapp .contact-modal__icon {
  background: #dcfce7;
  color: #25D366;
}

.contact-modal__item--instagram .contact-modal__icon {
  background: #fce7f3;
  color: #E1306C;
}

.contact-modal__item--telegram .contact-modal__icon {
  background: #dbeafe;
  color: #0088CC;
}

.contact-modal__item--email .contact-modal__icon {
  background: #fef3c7;
  color: #D97706;
}

.contact-modal__item--phone .contact-modal__icon {
  background: #dcfce7;
  color: var(--primary);
}

.contact-modal__item--facebook .contact-modal__icon {
  background: #dbeafe;
  color: #1877F2;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   iOS 26 GLASS / FROSTED MORPHISM
   ============================================ */
.tour-card,
.hotel-card,
.product-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.45);
}

.tour-card:hover,
.hotel-card:hover,
.product-card:hover {
  background: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.5);
}

.testimonial-card {
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.5);
}

.contact-card {
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
}

.contact-card:hover {
  background: rgba(255,255,255,0.72);
  border-color: transparent;
}

.contact__social-bar {
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
}

.step {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
}

.search-box {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.4);
}

.filter-tabs {
  background: rgba(241,245,249,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.filter-tab.active {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-menu {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.newsletter__inner {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
}

.slider-btn {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

.category-card {
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
}

.category-card:hover {
  background: rgba(255,255,255,0.72);
  border-color: transparent;
}

.back-to-top {
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(0,0,0,0.05);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.03);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
  border: 0;
  border-radius: var(--radius-full);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .tours__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .souvenirs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .topbar__left {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .offer-banner__visual {
    display: none;
  }

  .offer-banner__content {
    max-width: 100%;
  }

  .catnav__links {
    gap: 0;
  }

  .header__search {
    max-width: 360px;
  }

  .header__action-item span {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  
  .hotels__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dest-card--large {
    grid-row: span 1;
  }
  
  .newsletter__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  
  .newsletter__form {
    max-width: 100%;
    width: 100%;
  }
  
  .newsletter__note {
    justify-content: center;
    padding-left: 0;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__map {
    min-height: 300px;
  }

  .contact-card {
    padding: 18px;
    gap: 16px;
  }

  .contact-card__icon {
    width: 48px;
    height: 48px;
  }

  .contact__social-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer__brand {
    max-width: 100%;
  }
  
  .footer__links {
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .footer__col {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
    --container-padding: 0 20px;
  }

  /* Header mobile */
  .topbar {
    display: block;
    padding: 6px 0;
    max-height: none;
  }

  .topbar__left {
    display: flex;
  }

  .topbar__inner {
    justify-content: space-between;
  }

  /* Hide desktop topbar items, show mobile-specific ones */
  .topbar__left .topbar__item {
    display: none;
  }

  .topbar__left .topbar__item--mobile {
    display: inline-flex;
  }

  .topbar__right .topbar__item {
    display: none;
  }

  .topbar__right .topbar__item--mobile {
    display: inline-flex;
  }

  .header__search {
    display: none;
  }

  .catnav {
    display: none;
  }

  .megamenu {
    display: none;
  }

  .header__inner {
    height: 52px;
    gap: 8px;
  }

  .header__action-item {
    display: none;
  }

  .header__social-item {
    display: none;
  }

  .header__search-mobile {
    display: flex;
  }

  .header__contact-mobile {
    display: flex;
    align-self: center;
    margin-right: 0;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
  }

  .logo {
    font-size: 18px;
    gap: 8px;
  }

  .logo__text {
    font-size: 14px;
  }

  .logo__icon {
    width: 26px;
    height: 26px;
  }

  .header__actions {
    gap: 8px;
    margin-left: auto;
    align-self: stretch;
  }

  .logo__img {
    height: 32px;
  }

  /* Hide hamburger & side menu on mobile, use bottom nav instead */
  .hamburger {
    display: none;
  }

  .mobile-menu,
  .overlay {
    display: none;
  }

  /* Show glass bottom navbar */
  .mobile-nav {
    display: flex;
  }

  /* Add bottom padding for fixed bottom nav */
  body {
    padding-bottom: 72px;
  }

  .back-to-top {
    bottom: 84px;
  }

  .ai-fab {
    display: none;
  }

  /* AI page mobile adjustments */
  .ai-page__quick-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ai-page__title {
    font-size: 28px;
  }
  .ai-page__subtitle {
    font-size: 14px;
  }
  .ai-page__header {
    padding: 12px 16px;
  }
  .ai-page__input-bar {
    padding: 12px 16px 16px;
  }
  .ai-page__messages {
    padding: 16px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-top: 96px; /* topbar + header on mobile */
  }

  .hero__content {
    padding: 48px 20px 40px;
  }
  
  .hero__title {
    font-size: 28px;
    word-break: break-word;
  }

  .hero__title br {
    display: none;
  }
  
  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero__badge svg {
    width: 14px;
    height: 14px;
  }

  /* Search box mobile */
  .search-box {
    border-radius: var(--radius-lg);
  }

  .search-box__tabs {
    padding: 4px 4px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .search-tab {
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
    white-space: nowrap;
  }

  .search-tab svg {
    width: 14px;
    height: 14px;
  }

  .search-box__form {
    flex-direction: column;
    gap: 0;
    padding: 4px;
  }
  
  .search-field {
    padding: 10px 16px;
    width: 100%;
  }

  .search-field__icon {
    width: 18px;
    height: 18px;
  }
  
  .search-divider {
    width: calc(100% - 32px);
    height: 1px;
    margin: 0 auto;
  }
  
  .search-box__btn {
    width: calc(100% - 16px);
    margin: 4px 8px 8px;
    justify-content: center;
    padding: 12px 20px;
    border-radius: var(--radius-md) !important;
  }

  /* Trust ratings mobile */
  .trust-ratings {
    margin-top: 28px;
  }

  .trust-ratings__badges {
    gap: 10px;
  }

  .trust-badge {
    padding: 8px 12px;
    gap: 8px;
  }

  .trust-badge__logo svg {
    width: 18px;
    height: 18px;
  }

  .trust-badge__logo--tripadvisor svg {
    width: 20px;
    height: 20px;
  }

  .trust-badge__stars svg {
    width: 10px;
    height: 10px;
  }

  .trust-badge__score {
    font-size: 12px;
  }

  .trust-badge__count {
    font-size: 11px;
  }

  .trust-badge__divider {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  /* Contact section mobile */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__map {
    min-height: 300px;
  }

  /* Section headers mobile */
  .section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 16px;
  }

  .section__title {
    font-size: 24px;
  }

  .section__desc {
    font-size: 14px;
  }

  .section__cta {
    margin-top: 32px;
  }
  
  .filter-tabs {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    padding: 6px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  /* Category grid mobile */
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 20px 16px;
  }

  .category-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .category-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .category-card h3 {
    font-size: 14px;
  }

  .category-card p {
    font-size: 12px;
  }

  /* Tour cards mobile */
  .tours__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-card__image {
    height: 200px;
  }

  .tour-card__body {
    padding: 16px;
  }

  .tour-card__title {
    font-size: 15px;
  }

  .price-amount {
    font-size: 20px;
  }

  /* Destinations mobile */
  .destinations__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    min-height: 260px;
  }

  .dest-card {
    height: 200px;
  }

  .dest-card__content h3 {
    font-size: 18px;
  }
  
  /* Hotels mobile */
  .hotels__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hotel-card__image {
    height: 200px;
  }

  .hotel-card__body {
    padding: 16px;
  }

  .hotel-card__title {
    font-size: 16px;
  }
  
  /* Souvenirs mobile */
  .souvenirs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__image {
    height: 180px;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card__title {
    font-size: 13px;
  }

  .product-card__price .price-amount {
    font-size: 17px;
  }

  /* Steps mobile */
  .steps {
    flex-direction: column;
    gap: 0;
  }
  
  .step__connector {
    transform: rotate(90deg);
  }

  .step {
    padding: 24px 16px;
  }

  /* Testimonials mobile */
  .testimonial-card {
    min-width: 100%;
    padding: 24px;
  }

  .testimonial-card__text {
    font-size: 14px;
  }
  
  /* Offer banner mobile */
  .offer-banner__inner {
    min-height: 360px;
  }

  .offer-banner__visual {
    display: none;
  }

  .offer-banner__content {
    padding: 24px;
    max-width: 100%;
  }

  .offer-banner__content h2 {
    font-size: 22px;
  }

  .offer-banner__content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .offer-banner__timer {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .timer-block {
    padding: 8px 12px;
    min-width: 56px;
  }
  
  .timer-number {
    font-size: 20px;
  }

  .timer-label {
    font-size: 10px;
  }

  /* Newsletter mobile */
  .newsletter__inner {
    padding: 28px 20px;
  }

  .newsletter__content h2 {
    font-size: 22px;
  }

  .newsletter__icon {
    width: 36px;
    height: 36px;
  }
  
  .newsletter__input-group {
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    padding: 0;
    gap: 10px;
  }
  
  .newsletter__input-group input {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .newsletter__input-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer mobile */
  .footer {
    padding-top: 48px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__col {
    min-width: 100%;
  }

  .footer__col h4 {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__payment {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Back to top mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 0 14px;
  }

  .header__contact-mobile {
    margin-right: 0;
    padding: 7px 12px;
    font-size: 11px;
  }

  .hero__title {
    font-size: 24px;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 16px 12px;
  }

  .category-card__icon {
    width: 44px;
    height: 44px;
  }

  .category-card__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .souvenirs__grid {
    grid-template-columns: 1fr;
  }
  
  .trust-ratings__badges {
    gap: 8px;
  }

  .trust-badge {
    padding: 7px 10px;
  }
  
  .offer-banner__content h2 {
    font-size: 20px;
  }
  
  .offer-banner__timer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-box__tabs {
    gap: 0;
  }

  .search-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  .section__title {
    font-size: 22px;
  }

  .testimonials__controls {
    margin-top: 28px;
  }

  .product-card__image {
    height: 200px;
  }

  .hotel-card__amenities {
    gap: 8px;
  }

  .hotel-card__amenities span {
    font-size: 12px;
  }

  .btn--sm {
    padding: 7px 16px;
    font-size: 13px;
  }
}
