/* ========================================
   VOYAGER — Design System
   ======================================== */

:root {
  --primary: #1a1a2e;
  --accent: #4f46e5;
  --accent-light: #6366f1;
  --accent-soft: rgba(79, 70, 229, 0.08);
  --surface: #ffffff;
  --surface-sunken: #f5f5f7;
  --text-primary: #111111;
  --text-secondary: #6b6b6b;
  --text-tertiary: #999999;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 100px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.5;
  overflow-x: hidden;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; border: none; outline: none; background: none; }

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 24px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-bottom 0.4s var(--ease);
}

.navbar.scrolled,
.navbar.navbar-solid {
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0 6px 0 16px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), border-radius 0.4s var(--ease), padding 0.4s var(--ease), height 0.4s var(--ease);
}

.navbar.scrolled .nav-inner,
.navbar-solid .nav-inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  border-radius: 0;
  padding: 0;
  height: 60px;
}

.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; margin-right: 4px; }

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }

.logo-text {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: #fff;
  transition: color 0.4s var(--ease);
}

.navbar.scrolled .logo-text,
.navbar-solid .logo-text { color: var(--text-primary); }

.nav-links { display: flex; list-style: none; gap: 1px; margin-left: auto; }

.nav-links a {
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav-links a.active { color: #fff; background: rgba(255, 255, 255, 0.12); }
.nav-deals { color: #facc15 !important; }

.navbar.scrolled .nav-links a,
.navbar-solid .nav-links a { color: var(--text-secondary); }
.navbar.scrolled .nav-links a:hover,
.navbar-solid .nav-links a:hover { color: var(--text-primary); background: var(--surface-sunken); }
.navbar.scrolled .nav-links a.active,
.navbar-solid .nav-links a.active { color: var(--text-primary); background: var(--surface-sunken); }
.navbar.scrolled .nav-deals,
.navbar-solid .nav-deals { color: #ea580c !important; }

.nav-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-lang:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.navbar.scrolled .nav-lang,
.navbar-solid .nav-lang { color: var(--text-secondary); }
.navbar.scrolled .nav-lang:hover,
.navbar-solid .nav-lang:hover { color: var(--text-primary); background: var(--surface-sunken); }

.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-icon-btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.navbar.scrolled .nav-icon-btn,
.navbar-solid .nav-icon-btn { color: var(--text-secondary); }
.navbar.scrolled .nav-icon-btn:hover,
.navbar-solid .nav-icon-btn:hover { background: var(--surface-sunken); color: var(--text-primary); }

.nav-divider { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.12); margin: 0 6px; }
.navbar.scrolled .nav-divider,
.navbar-solid .nav-divider { background: var(--border-strong); }

.btn-secondary {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.navbar.scrolled .btn-secondary,
.navbar-solid .btn-secondary { color: var(--text-primary); }
.navbar.scrolled .btn-secondary:hover,
.navbar-solid .btn-secondary:hover { background: var(--surface-sunken); }

.btn-cta {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  background: #fff;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}

.btn-cta:hover { background: #f0f0f0; }
.navbar.scrolled .btn-cta,
.navbar-solid .btn-cta { background: var(--accent); color: #fff; }
.navbar.scrolled .btn-cta:hover,
.navbar-solid .btn-cta:hover { background: #4338ca; }

.btn-primary {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-primary:hover { background: #333; box-shadow: var(--shadow-sm); }
.btn-primary.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-outline-light {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.btn-outline-light:hover { background: rgba(255, 255, 255, 0.2); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px 4px; }
.mobile-menu-btn span { width: 20px; height: 1.5px; background: #fff; border-radius: 2px; }
.navbar.scrolled .mobile-menu-btn span,
.navbar-solid .mobile-menu-btn span { background: var(--text-primary); }

/* ========================================
   HERO
   ======================================== */

.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; }

/* Intro animation */
.hero-visual-wrap,
.hero-title,
.hero-subtitle,
.search-box,
.hero-trust,
.hero-floating-pills { opacity: 0; }

.hero .navbar {
  transform: translateY(-80px);
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
              padding 0.4s var(--ease), background 0.4s var(--ease), border-bottom 0.4s var(--ease);
}

.hero-visual-wrap { transform: scale(1.12); transition: opacity 1.6s var(--ease), transform 1.6s var(--ease); }

.hero-title,
.hero-subtitle,
.search-box,
.hero-trust,
.hero-floating-pills { transform: translateY(24px); }

.hero-title          { transition: opacity 0.8s var(--ease) 0.6s, transform 0.8s var(--ease) 0.6s; }
.hero-subtitle       { transition: opacity 0.8s var(--ease) 0.75s, transform 0.8s var(--ease) 0.75s; }
.search-box          { transition: opacity 0.8s var(--ease) 0.9s, transform 0.8s var(--ease) 0.9s; }
.hero-trust          { transition: opacity 0.8s var(--ease) 1.05s, transform 0.8s var(--ease) 1.05s; }
.hero-floating-pills { transition: opacity 1s var(--ease) 1.5s, transform 1s var(--ease) 1.5s; }

.hero-animate .navbar { transform: translateY(0); }

.hero-animate .hero-visual-wrap,
.hero-animate .hero-title,
.hero-animate .hero-subtitle,
.hero-animate .search-box,
.hero-animate .hero-trust,
.hero-animate .hero-floating-pills { opacity: 1; transform: none; }

/* Background */
.hero-visual-wrap { position: absolute; inset: 0; margin: 12px; border-radius: 28px; overflow: hidden; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 45%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0.5) 100%);
}

/* Floating pills */
.hero-floating-pills { position: absolute; inset: 0; pointer-events: none; }

.hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  animation: float 6s ease-in-out infinite;
}

.hero-pill:hover { background: rgba(255, 255, 255, 0.25); }
.hero-pill img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.4); }

.pill-1 { top: 22%; left: 8%; animation-delay: 0s; }
.pill-2 { top: 18%; right: 10%; animation-delay: -1.5s; }
.pill-3 { bottom: 32%; left: 6%; animation-delay: -3s; }
.pill-4 { bottom: 28%; right: 7%; animation-delay: -4.5s; }

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

/* Content */
.hero-content-layer { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 12px 12px; }
.hero-content-layer > .container { width: 100%; text-align: center; }

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 14px;
}

.typewriter-wrap { display: inline; }
.typewriter { color: #facc15; -webkit-text-fill-color: #facc15; }
.typewriter-cursor { color: #facc15; font-weight: 300; animation: blink 0.8s step-end infinite; -webkit-text-fill-color: #facc15; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ========================================
   SEARCH BOX
   ======================================== */

.search-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 18px 14px;
  text-align: left;
}

.search-tabs { display: flex; gap: 4px; margin-bottom: 16px; }

.search-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.search-tab svg { opacity: 0.4; transition: opacity 0.2s var(--ease); }
.search-tab:hover { color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.08); }
.search-tab:hover svg { opacity: 0.7; }
.search-tab.active { font-weight: 700; }
.search-tab.active svg { opacity: 1; }

.tab-stays.active     { color: #a5b4fc; background: rgba(165, 180, 252, 0.12); }
.tab-stays.active svg { color: #a5b4fc; }
.tab-flights.active     { color: #7dd3fc; background: rgba(125, 211, 252, 0.12); }
.tab-flights.active svg { color: #7dd3fc; }
.tab-tours.active     { color: #86efac; background: rgba(134, 239, 172, 0.12); }
.tab-tours.active svg { color: #86efac; }
.tab-cars.active     { color: #fdba74; background: rgba(253, 186, 116, 0.12); }
.tab-cars.active svg { color: #fdba74; }
.tab-transfers.active     { color: #d8b4fe; background: rgba(216, 180, 254, 0.12); }
.tab-transfers.active svg { color: #d8b4fe; }

.search-form { display: none; animation: fadeIn 0.25s var(--ease); }
.search-form.active { display: block; }

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

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 4px;
  transition: border-color 0.2s var(--ease);
}

.search-bar:focus-within { border-color: rgba(255, 255, 255, 0.2); }

.search-cell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  min-width: 0;
  transition: background 0.2s var(--ease);
}

.search-cell:hover { background: rgba(255, 255, 255, 0.06); }
.search-cell-wide { flex: 1.5; }
.search-cell-narrow { flex: 0.7; }
.search-cell svg { flex-shrink: 0; color: rgba(255, 255, 255, 0.4); }
.cell-text { min-width: 0; display: flex; flex-direction: column; text-align: left; }
.cell-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255, 255, 255, 0.8); line-height: 1; margin-bottom: 3px; }
.cell-text input { width: 100%; font-size: 13px; color: #fff; background: none; line-height: 1; }
.cell-text input::placeholder { color: rgba(255, 255, 255, 0.3); }
.search-divider { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.12); flex-shrink: 0; }

.search-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s var(--ease);
  margin-left: 2px;
}

.search-btn:hover { transform: scale(1.06); }
.search-btn:active { transform: scale(1); }

.btn-stays     { background: #a5b4fc; color: #1e1b4b; }
.btn-flights   { background: #7dd3fc; color: #0c4a6e; }
.btn-tours     { background: #86efac; color: #14532d; }
.btn-cars      { background: #fdba74; color: #7c2d12; }
.btn-transfers { background: #d8b4fe; color: #3b0764; }

/* ========================================
   HERO TRUST
   ======================================== */

.hero-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.hero-trust span { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.45); padding: 5px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); }

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar { background: white; padding: 56px 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; padding: 0 32px; }
.stat-number { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; background: linear-gradient(135deg, var(--accent), #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-text { font-size: 13px; font-weight: 500; color: var(--text-tertiary); letter-spacing: 0.2px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ========================================
   SECTIONS
   ======================================== */

.section { padding: 100px 0; }
.section-soft { background: #f9f8ff; }
.section-dark { background: #0f172a; }
.section-header { margin-bottom: 48px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; }
.section-header-light .section-title { color: white; }

.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 10px; }
.section-label-light { color: #818cf8; }
.section-title { font-size: 36px; font-weight: 800; letter-spacing: -0.8px; color: var(--text-primary); line-height: 1.15; }
.section-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-top: 10px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { max-width: 460px; margin-left: auto; margin-right: auto; }
.section-features { background: var(--surface-sunken); }

.section-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); transition: gap 0.3s var(--ease); flex-shrink: 0; }
.section-link svg { transition: transform 0.3s var(--ease); }
.section-link:hover { gap: 10px; }
.section-link:hover svg { transform: translateX(2px); }
.section-link-light { color: #818cf8; }

/* ========================================
   DESTINATIONS
   ======================================== */

.dest-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 300px 300px; gap: 14px; }
.dest-card { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; }

.dest-a { grid-column: 1 / 3; grid-row: 1 / 2; }
.dest-b { grid-column: 3 / 4; grid-row: 1 / 2; }
.dest-c { grid-column: 4 / 5; grid-row: 1 / 2; }
.dest-d { grid-column: 1 / 2; grid-row: 2 / 3; }
.dest-e { grid-column: 2 / 3; grid-row: 2 / 3; }
.dest-f { grid-column: 3 / 5; grid-row: 2 / 3; }

.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.dest-card:hover img { transform: scale(1.05); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
  transition: opacity 0.3s var(--ease);
}

.dest-card:hover .dest-overlay { opacity: 0.9; }

.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 24px; }

.dest-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s var(--ease);
}

.dest-card:hover .dest-badge { transform: translateY(-2px); }
.dest-badge-trending { background: rgba(99, 102, 241, 0.35); }
.dest-badge-hot { background: rgba(239, 68, 68, 0.35); }

.dest-content h3 { color: white; font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 3px; transition: transform 0.3s var(--ease); }
.dest-card:hover .dest-content h3 { transform: translateY(-4px); }
.dest-content p { color: rgba(255,255,255,0.7); font-size: 13px; transition: opacity 0.3s var(--ease); opacity: 0.7; }
.dest-card:hover .dest-content p { opacity: 1; }
.dest-a .dest-content h3, .dest-f .dest-content h3 { font-size: 28px; }

/* ========================================
   DEALS
   ======================================== */

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

.section-dark .deal-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.section-dark .deal-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); }

.deal-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.deal-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.deal-card:hover .deal-img img { transform: scale(1.05); }
.deal-badge { position: absolute; top: 14px; left: 14px; padding: 5px 14px; background: #ef4444; color: white; font-size: 12px; font-weight: 700; border-radius: var(--radius-full); }
.deal-badge-gold { background: linear-gradient(135deg, #f59e0b, #d97706); }

.card-save {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.card-save:hover { background: white; color: #ef4444; transform: scale(1.12); }
.card-save.saved { color: #ef4444; background: white; }
.card-save.saved svg { fill: #ef4444; }

.deal-body { padding: 22px 22px 24px; }
.section-dark .deal-body h3 { color: white; }
.section-dark .deal-location { color: rgba(255,255,255,0.4); }
.section-dark .deal-location svg { color: rgba(255,255,255,0.25); }
.section-dark .deal-footer { border-color: rgba(255,255,255,0.06); }
.section-dark .price-amount { color: white; }
.section-dark .price-was { color: rgba(255,255,255,0.3); }
.section-dark .price-per { color: rgba(255,255,255,0.35); }

.deal-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

.deal-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 10px; border-radius: var(--radius-full); }
.deal-label-indigo { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.deal-label-blue   { color: #0284c7; background: rgba(2, 132, 199, 0.1); }
.deal-label-green  { color: #16a34a; background: rgba(22, 163, 74, 0.1); }
.section-dark .deal-label-indigo { color: #a5b4fc; background: rgba(79, 70, 229, 0.2); }
.section-dark .deal-label-blue   { color: #7dd3fc; background: rgba(2, 132, 199, 0.2); }
.section-dark .deal-label-green  { color: #86efac; background: rgba(22, 163, 74, 0.2); }

.deal-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 600; color: #f59e0b; }
.deal-rating svg { color: #f59e0b; }

.deal-body h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; line-height: 1.3; transition: color 0.2s var(--ease); }
.deal-card:hover .deal-body h3 { color: var(--accent); }
.section-dark .deal-card:hover .deal-body h3 { color: #a5b4fc; }

.deal-location { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-tertiary); margin-bottom: 18px; }
.deal-location svg { flex-shrink: 0; opacity: 0.5; }

.deal-footer { display: flex; align-items: baseline; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.deal-price { display: flex; align-items: baseline; gap: 8px; }
.price-amount { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; color: var(--text-primary); }
.price-was { font-size: 14px; color: var(--text-tertiary); text-decoration: line-through; }
.price-per { font-size: 13px; color: var(--text-tertiary); }

/* ========================================
   FEATURES
   ======================================== */

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.feature-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.feature-card:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 22px;
  transition: transform 0.3s var(--ease);
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }

.feature-icon-indigo { background: rgba(79, 70, 229, 0.08); color: #4f46e5; }
.feature-icon-blue   { background: rgba(2, 132, 199, 0.08); color: #0284c7; }
.feature-icon-amber  { background: rgba(245, 158, 11, 0.08); color: #d97706; }
.feature-icon-green  { background: rgba(22, 163, 74, 0.08); color: #16a34a; }

.feature-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.feature-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

/* ========================================
   HOTELS
   ======================================== */

.hotels-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hotel-card { cursor: pointer; }
.hotel-img-link { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 16px; }
.hotel-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.hotel-card:hover .hotel-img-link img { transform: scale(1.04); }

.hotel-img-overlay { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: flex-start; padding: 10px; pointer-events: none; }
.hotel-rating { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; color: #fff; background: rgba(0,0,0,0.45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 4px 8px; border-radius: 6px; }
.hotel-rating svg { color: #fbbf24; }
.hotel-place-badge { font-size: 10.5px; font-weight: 600; color: #fff; background: rgba(0,0,0,0.45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 4px 9px; border-radius: 6px; }

.hotel-info { padding: 12px 2px 0; }
.hotel-info h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; color: var(--text-primary); line-height: 1.3; transition: color 0.2s var(--ease); }
.hotel-card:hover .hotel-info h3 { color: var(--accent); }

.hotel-tags { display: flex; gap: 6px; margin-bottom: 10px; }
.hotel-tags span { font-size: 11px; font-weight: 500; color: var(--text-tertiary); }
.hotel-tags span:not(:last-child)::after { content: '·'; margin-left: 6px; color: var(--text-tertiary); }

.hotel-bottom { display: flex; align-items: center; justify-content: space-between; }
.hotel-price { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; color: var(--text-primary); }
.hotel-price small { font-size: 13px; font-weight: 400; color: var(--text-tertiary); letter-spacing: 0; }

.hotel-book {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s var(--ease);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, 0.2);
}

.hotel-book:hover { color: var(--accent); text-decoration-color: var(--accent); }


/* ========================================
   FAQ
   ======================================== */

.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-header { position: sticky; top: 100px; }
.faq-header .section-desc { margin-top: 12px; margin-bottom: 24px; }
.faq-contact-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent); transition: gap 0.25s var(--ease); }
.faq-contact-link:hover { gap: 10px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 22px 0; cursor: pointer; background: none; border: none; font-family: inherit; text-align: left; outline: none; }
.faq-trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.faq-trigger span { font-size: 16px; font-weight: 600; letter-spacing: -0.2px; color: var(--text-primary); transition: color 0.2s var(--ease); }
.faq-item:hover .faq-trigger span { color: var(--accent); }
.faq-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--surface-sunken); color: var(--text-secondary); flex-shrink: 0; transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease); }
.faq-item.is-open .faq-icon { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease); }
.faq-panel p { font-size: 14.5px; line-height: 1.7; color: var(--text-secondary); max-width: 560px; padding-bottom: 22px; }

/* ========================================
   SEARCH RESULTS
   ======================================== */

/* Search Page Header */
.search-page-header { position: relative; padding: 80px 0 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.search-page-header-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.search-page-header-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.82) 100%); }
.search-page-header > .container { position: relative; z-index: 2; }
.search-page-header .breadcrumb a, .search-page-header .breadcrumb svg { color: rgba(255,255,255,0.5); }
.search-page-header .breadcrumb .current { color: rgba(255,255,255,0.8); }
.search-page-header .breadcrumb { padding: 0 0 20px; }
.search-page-header .search-bar-row { display: flex; align-items: center; gap: 16px; }
.search-page-header .page-search { flex: 1; margin-top: 0; max-width: none; }
.search-page-header .page-search-bar { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: none; border-radius: 14px; }
.search-page-header .page-search-cell svg { color: rgba(255,255,255,0.4); }
.search-page-header .page-search-cell .cell-label { color: rgba(255,255,255,0.8); }
.search-page-header .page-search-cell input { color: white; }
.search-page-header .page-search-cell input::placeholder { color: rgba(255,255,255,0.3); }
.search-page-header .page-search-divider { background: rgba(255,255,255,0.12); }
.search-page-header .filter-pills { padding: 18px 0; margin: 0; justify-content: flex-start; }
.search-page-header .filter-pill { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.search-page-header .filter-pill:hover, .search-page-header .filter-pill.active { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.25); }

.results-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 0; }
.results-header h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.results-header h2 span { font-weight: 400; color: var(--text-tertiary); }
.results-controls { display: flex; align-items: center; gap: 12px; }
.sort-dropdown { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.sort-dropdown select { font-family: inherit; font-size: 13px; font-weight: 600; color: var(--text-primary); border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); padding: 8px 12px; background: white; cursor: pointer; outline: none; }
.results-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 0 64px; }

/* Filters Sidebar */
.filters-sidebar { position: sticky; top: 100px; align-self: start; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 24px; }
.filter-group h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-primary); margin-bottom: 14px; }
.price-range-inputs { display: flex; align-items: center; gap: 10px; }
.price-input-wrap { display: flex; align-items: center; gap: 4px; padding: 8px 12px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; flex: 1; }
.price-input-wrap input { width: 100%; border: none; outline: none; font-family: inherit; font-size: 13px; font-weight: 600; background: none; }
.price-range-sep { color: var(--text-tertiary); }
.price-bar { height: 4px; background: var(--surface-sunken); border-radius: 2px; margin-top: 12px; }
.price-bar-fill { width: 60%; height: 100%; background: var(--accent); border-radius: 2px; }
.star-buttons { display: flex; gap: 8px; }
.star-btn { padding: 7px 14px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; cursor: pointer; background: white; color: var(--text-secondary); transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease); display: flex; align-items: center; gap: 4px; }
.star-btn:hover { border-color: var(--accent); color: var(--accent); }
.star-btn.active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.filter-checks { display: flex; flex-direction: column; gap: 10px; }
.filter-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-secondary); }
.filter-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.filter-check .check-count { color: var(--text-tertiary); font-size: 12px; margin-left: auto; }
.guest-rating-options { display: flex; flex-direction: column; gap: 8px; }
.guest-rating-btn { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); cursor: pointer; background: white; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.guest-rating-btn:hover { border-color: var(--accent); }
.guest-rating-btn.active { background: var(--accent-soft); border-color: var(--accent); }
.guest-rating-score { font-size: 13px; font-weight: 700; color: var(--accent); }
.guest-rating-label { font-size: 13px; color: var(--text-secondary); }
.clear-filters { padding: 10px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--text-secondary); cursor: pointer; background: white; transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.clear-filters:hover { border-color: #ef4444; color: #ef4444; }

/* Result Cards (horizontal) */
.results-list { display: flex; flex-direction: column; gap: 20px; }
.results-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
a.result-card { text-decoration: none; color: inherit; }
.result-card { display: flex; flex-direction: column; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.result-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.result-card .card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.result-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.result-card:hover .card-img img { transform: scale(1.04); }
.result-card .card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.result-card .card-title { font-size: 17px; font-weight: 800; letter-spacing: -0.2px; margin-bottom: 4px; color: var(--text-primary); transition: color 0.2s var(--ease); }
.result-card:hover .card-title { color: var(--accent); }
.result-card .card-location { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-secondary); }
.result-card .card-location svg { flex-shrink: 0; opacity: 0.6; }
.result-card .card-footer { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.result-card .card-price { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text-primary); }
.result-card .card-price small { font-size: 12px; font-weight: 500; color: var(--text-tertiary); }
.result-card .card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin: 10px 0; }
.result-card .card-tag { padding: 4px 10px; background: var(--surface-sunken); border-radius: var(--radius-full); font-size: 11px; font-weight: 600; color: var(--text-secondary); }
.result-card .card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.result-card .card-rating-score { background: var(--accent); color: white; padding: 3px 9px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.result-card .card-rating-text { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.result-card .card-rating-count { font-size: 12px; color: var(--text-tertiary); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 32px 0 0; grid-column: 1 / -1; }
.pagination button, .pagination a { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border: 1px solid var(--border-strong); border-radius: 8px; background: white; font-size: 13px; font-weight: 500; color: var(--text-secondary); cursor: pointer; text-decoration: none; font-family: inherit; transition: border-color 0.15s var(--ease), color 0.15s var(--ease); }
.pagination button:hover, .pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active { background: var(--accent); border-color: var(--accent); color: white; }
.pagination .dots { color: var(--text-tertiary); border: none; background: none; cursor: default; min-width: 28px; }
.pagination .dots:hover { color: var(--text-tertiary); border: none; }
.pagination .prev-next { font-weight: 600; gap: 4px; }

/* Mobile filter toggle */
.mobile-filter-toggle { display: none; align-items: center; gap: 6px; padding: 8px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; cursor: pointer; background: white; color: var(--text-secondary); }
.filter-close { display: none; position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; align-items: center; justify-content: center; background: var(--surface-sunken); border: none; border-radius: 8px; cursor: pointer; z-index: 1; }
.filter-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 999; }
.filter-overlay.show { display: block; }

/* ========================================
   Hotel Detail
   ======================================== */

.page-content { padding-top: 100px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5px; border-radius: 20px; overflow: hidden; max-height: 500px; }
.gallery-main { position: relative; overflow: hidden; cursor: pointer; }
.gallery-main img, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 5px; }
.gallery-thumb { position: relative; overflow: hidden; cursor: pointer; }
.gallery-thumb:hover img, .gallery-main:hover img { transform: scale(1.04); }
.gallery-show-all { position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: none; border-radius: 10px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; align-items: center; gap: 7px; transition: all 0.2s var(--ease); font-family: inherit; }
.gallery-show-all:hover { background: white; transform: translateY(-1px); }

/* Detail Title Bar */
.detail-title-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 32px 0 0; }
.detail-title-left { flex: 1; }
.hotel-name { font-size: 30px; font-weight: 800; color: var(--text-primary); margin: 0 0 14px; line-height: 1.2; letter-spacing: -0.6px; }
.hotel-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hotel-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); flex-shrink: 0; }
.hotel-stars { display: flex; align-items: center; gap: 2px; color: #f59e0b; }
.hotel-location { display: flex; align-items: center; gap: 5px; font-size: 14px; color: var(--text-secondary); }
.hotel-review-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); }
.hotel-review-score { background: var(--accent); color: white; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.detail-title-actions { display: flex; gap: 8px; flex-shrink: 0; padding-top: 4px; }
.detail-action-btn { display: flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 10px; border: 1px solid var(--border); background: white; font-size: 13px; font-weight: 600; color: var(--text-primary); cursor: pointer; font-family: inherit; transition: all 0.2s var(--ease); }
.detail-action-btn:hover { border-color: var(--border-strong); background: var(--surface-sunken); }

/* Detail Layout */
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; padding: 36px 0 80px; align-items: start; }

/* Highlights */
.detail-highlights { display: flex; flex-direction: column; gap: 0; padding: 28px 0; margin-bottom: 8px; border-bottom: 1px solid var(--border); }
.highlight-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-radius: 12px; transition: background 0.2s var(--ease); }
.highlight-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s var(--ease); }
.highlight-icon-indigo { background: rgba(79, 70, 229, 0.08); color: #4f46e5; }
.highlight-icon-amber { background: rgba(245, 158, 11, 0.08); color: #d97706; }
.highlight-icon-green { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.highlight-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.highlight-desc { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }
.highlight-item:hover .highlight-icon { transform: scale(1.08) rotate(-3deg); }

/* Detail Sections */
.detail-section { padding: 36px 0; border-bottom: 1px solid var(--border); }
.detail-section:last-child { border-bottom: none; }
.detail-section .section-header { margin-bottom: 24px; }
.detail-section .section-label { margin-bottom: 6px; }

/* Section Headings */
.section-heading { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 24px; letter-spacing: -0.4px; }

/* Description */
.hotel-description { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin: 0 0 16px; padding: 0; border: none; }
.hotel-description-last { margin-bottom: 0; }

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.amenity-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 8px; border-radius: 14px; background: var(--surface-sunken); text-align: center; transition: all 0.3s var(--ease); border: none; cursor: default; }
.amenity-item:hover { background: #eef2ff; transform: translateY(-2px); }
.amenity-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: white; color: var(--text-primary); transition: transform 0.3s var(--ease); }
.amenity-item:hover .amenity-icon { transform: scale(1.1) rotate(-3deg); color: var(--accent); }
.amenity-name { font-size: 12px; font-weight: 600; color: var(--text-primary); }

/* Rooms */
.room-card { display: flex; gap: 20px; padding: 16px; border-radius: 16px; border: 1px solid var(--border); margin-bottom: 12px; background: white; transition: all 0.3s var(--ease); }
.room-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.room-card:last-child { margin-bottom: 0; }
.room-img { width: 200px; min-height: 140px; border-radius: 12px; overflow: hidden; flex-shrink: 0; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.04); }
.room-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); letter-spacing: 0.3px; }
.room-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.room-name { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; transition: color 0.2s var(--ease); }
.room-card:hover .room-name { color: var(--accent); }
.room-details { display: flex; gap: 14px; font-size: 13px; color: var(--text-tertiary); margin-bottom: 14px; }
.room-details span { display: flex; align-items: center; gap: 4px; }
.room-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.room-price { font-size: 20px; font-weight: 800; color: var(--text-primary); display: block; letter-spacing: -0.3px; }
.room-price small { font-size: 13px; font-weight: 500; color: var(--text-tertiary); }
.room-total { display: block; font-size: 12px; color: var(--text-tertiary); margin-top: 2px; }
.room-select-btn { padding: 10px 24px; border-radius: 10px; border: 1.5px solid var(--text-primary); background: transparent; font-size: 13px; font-weight: 600; color: var(--text-primary); cursor: pointer; transition: all 0.2s var(--ease); text-decoration: none; display: inline-flex; font-family: inherit; }
.room-select-btn:hover { background: var(--text-primary); color: white; }

/* Reviews */
.reviews-overview { display: flex; gap: 32px; margin-bottom: 28px; align-items: center; padding: 28px; background: var(--surface-sunken); border-radius: 16px; }
.review-score-big { text-align: center; flex-shrink: 0; min-width: 100px; }
.review-score-big .score { font-size: 52px; font-weight: 800; color: var(--text-primary); line-height: 1; letter-spacing: -1px; }
.review-score-big .label { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 8px; }
.review-score-big .out-of { font-size: 12px; color: var(--text-tertiary); margin-top: 3px; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; }
.rating-bar-label { font-size: 13px; font-weight: 500; color: var(--text-secondary); width: 85px; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 6px; background: rgba(0,0,0,0.06); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: var(--radius-full); background: var(--accent); transition: width 0.6s var(--ease); }
.rating-bar-value { font-size: 13px; font-weight: 700; color: var(--text-primary); width: 24px; text-align: right; }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-card { padding: 22px; border-radius: 14px; border: 1px solid var(--border); background: white; transition: border-color 0.2s var(--ease); }
.review-card:hover { border-color: var(--border-strong); }
.review-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: #eef2ff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: var(--accent); flex-shrink: 0; }
.review-author { flex: 1; }
.review-author-name { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.review-date { font-size: 12px; color: var(--text-tertiary); margin-top: 2px; }
.review-rating { display: flex; gap: 1px; color: #f59e0b; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }

/* Booking Sidebar */
.booking-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 12px; }
.booking-card { background: var(--surface-sunken); border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.booking-price-header { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.booking-price-header .price { font-size: 30px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.6px; }
.booking-price-header .per { font-size: 14px; color: var(--text-tertiary); font-weight: 500; }
.booking-dates { display: grid; grid-template-columns: 1fr auto 1fr; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 12px; background: white; transition: border-color 0.15s var(--ease); }
.booking-dates:hover { border-color: var(--border-strong); }
.booking-date-cell { padding: 14px 16px; cursor: pointer; transition: background 0.15s var(--ease); }
.booking-date-cell:hover { background: var(--surface-sunken); }
.booking-date-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-tertiary); margin-bottom: 4px; }
.booking-date-value { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.booking-date-divider { width: 1px; background: var(--border); }
.booking-guests { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; cursor: pointer; background: white; transition: all 0.15s var(--ease); }
.booking-guests:hover { background: var(--surface-sunken); border-color: var(--border-strong); }
.booking-guest-select { width: 100%; border: none; background: none; font-size: 14px; font-weight: 600; color: var(--text-primary); font-family: inherit; cursor: pointer; outline: none; padding: 0; margin-top: 4px; -webkit-appearance: none; }
.booking-reserve { display: block; text-align: center; width: 100%; padding: 16px; border-radius: 12px; font-size: 15px; font-weight: 700; transition: transform 0.2s var(--ease); }
.booking-reserve:hover { transform: translateY(-1px); }
.booking-breakdown { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.booking-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
.booking-line:last-child { margin-bottom: 0; }
.booking-total { display: flex; justify-content: space-between; font-weight: 800; color: var(--text-primary); font-size: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.booking-free-cancel { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 18px; font-size: 13px; color: #15803d; font-weight: 600; padding: 10px; background: rgba(22, 163, 74, 0.06); border-radius: 10px; }
.booking-sidebar-note { padding: 14px 18px; background: white; border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.booking-sidebar-note svg { flex-shrink: 0; color: var(--accent); }

/* Location Map Placeholder */
.location-section { margin-bottom: 64px; padding-top: 16px; }
.location-section .section-heading { margin-bottom: 20px; }
.map-placeholder { width: 100%; height: 340px; border-radius: 20px; background: var(--surface-sunken); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--text-tertiary); cursor: pointer; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.02) 100%); pointer-events: none; }
.map-placeholder:hover { background: #eef2ff; }
.map-placeholder svg { opacity: 0.2; transition: all 0.3s var(--ease); }
.map-placeholder:hover svg { opacity: 0.4; color: var(--accent); transform: scale(1.1); }
.map-placeholder span { font-size: 14px; font-weight: 600; transition: color 0.2s var(--ease); }
.map-placeholder:hover span { color: var(--text-secondary); }

/* Similar Hotels */
.similar-section { padding: 64px 0 80px; border-top: 1px solid var(--border); }
.similar-section .section-header { margin-bottom: 36px; }

/* ========================================
   CTA
   ======================================== */

.cta-section { padding: 32px 0; }
.cta-section .cta-inner { position: relative; padding: 100px 48px; border-radius: 32px; overflow: hidden; text-align: center; }
.cta-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(79, 70, 229, 0.25) 0%, transparent 70%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.92) 100%);
}

.cta-section .cta-content { position: relative; z-index: 2; }
.cta-section .cta-content h2 { font-size: 48px; font-weight: 800; color: white; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 18px; }
.cta-section .cta-content p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 40px; line-height: 1.65; }
.cta-section .cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }

.btn-white {
  background: white !important;
  color: var(--text-primary) !important;
  padding: 17px 44px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: none;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,255,255,0.15); }
.cta-trust-row { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); }

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter-section { padding: 20px 0 100px; }
.newsletter-inner { max-width: 640px; margin: 0 auto; text-align: center; background: var(--surface-sunken); border-radius: 28px; padding: 60px 48px; }
.newsletter-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent); border-radius: 18px; margin: 0 auto 22px; }
.newsletter-inner h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.newsletter-inner > p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 8px; }

.newsletter-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  background: white;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.newsletter-input-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.newsletter-input-wrap svg { flex-shrink: 0; color: var(--text-tertiary); }
.newsletter-input-wrap input { width: 100%; padding: 15px 0; font-size: 14px; color: var(--text-primary); background: none; }
.newsletter-input-wrap input::placeholder { color: #bbb; }

.newsletter-form button {
  padding: 15px 30px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}

.newsletter-form button:hover { background: #4338ca; transform: translateY(-1px); }
.newsletter-note { display: block; margin-top: 16px; font-size: 12px; color: var(--text-tertiary); }

/* ========================================
   FOOTER
   ======================================== */

.footer { background: #0f172a; padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 56px; padding-bottom: 56px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-text { color: white; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 28px; }

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-socials a:hover { background: rgba(255,255,255,0.12); color: white; transform: translateY(-2px); }

.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.9); margin-bottom: 20px; }

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding: 6px 0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-col a:hover { color: white; transform: translateX(3px); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom > span { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-payments { display: flex; gap: 8px; }
.footer-payments span { padding: 5px 14px; background: rgba(255,255,255,0.06); border-radius: 6px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }

/* ========================================
   ANIMATIONS
   ======================================== */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   PAGE COMPONENTS (shared across pages)
   ======================================== */

/* Page Header */
.page-header { background: var(--surface-sunken); padding: 120px 0 48px; }
.page-header-dark { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.page-header-content { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.page-header-content h1 { font-size: 40px; font-weight: 800; color: var(--text-primary); margin: 0 0 12px; letter-spacing: -0.8px; }
.page-header-dark .page-header-content h1 { color: white; }
.page-header-content p { font-size: 17px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.page-header-dark .page-header-content p { color: rgba(255,255,255,0.6); }

/* Page Hero (with image) */
.page-hero { position: relative; padding: 160px 0 80px; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.82) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: 48px; font-weight: 800; color: white; letter-spacing: -1.5px; margin: 0 0 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Page Search Bar */
.page-search { max-width: 860px; margin: 0 auto; }
.page-search-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.page-hero .page-search-bar { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: none; }
.page-search-cell { display: flex; align-items: center; gap: 10px; padding: 12px 18px; flex: 1; min-width: 0; }
.page-search-cell svg { flex-shrink: 0; color: var(--text-tertiary); }
.page-hero .page-search-cell svg { color: rgba(255,255,255,0.4); }
.page-search-cell .cell-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 3px; }
.page-hero .page-search-cell .cell-label { color: rgba(255,255,255,0.8); }
.page-search-cell input, .page-search-cell select { width: 100%; font-size: 13px; color: var(--text-primary); background: none; border: none; outline: none; font-family: inherit; }
.page-hero .page-search-cell input { color: white; }
.page-search-cell input::placeholder { color: var(--text-tertiary); }
.page-hero .page-search-cell input::placeholder { color: rgba(255,255,255,0.3); }
.page-search-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.page-hero .page-search-divider { background: rgba(255,255,255,0.12); }
.page-search { margin-top: 36px; }
.page-search-btn { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--accent); color: white; border-radius: 50%; cursor: pointer; transition: transform 0.2s var(--ease); border: none; }
.page-search-btn:hover { transform: scale(1.06); }

/* Category Pills */
.categories-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; padding: 40px 0; }
.category-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.category-pill:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(79,70,229,0.1); }
.category-pill-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.category-pill-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.category-pill-count { font-size: 11px; color: var(--text-tertiary); }

/* Filter Pills */
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-pill {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-secondary);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.filter-pill:hover { border-color: var(--text-tertiary); color: var(--text-primary); }
.filter-pill.active { background: var(--accent); color: white; border-color: var(--accent); }

/* Card Grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Generic Card */
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 20px; }
.card-badge { position: absolute; top: 12px; left: 12px; padding: 5px 14px; color: white; font-size: 12px; font-weight: 700; border-radius: var(--radius-full); background: var(--accent); }
.card-badge-red { background: #ef4444; }
.card-badge-gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.card-badge-green { background: #16a34a; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 10px; border-radius: var(--radius-full); }
.card-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 600; color: #f59e0b; }
.card-title { font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 6px; line-height: 1.3; transition: color 0.2s var(--ease); }
.card:hover .card-title { color: var(--accent); }
.card-location { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-tertiary); margin-bottom: 16px; }
.card-location svg { flex-shrink: 0; opacity: 0.5; }
.card-footer { display: flex; align-items: baseline; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.card-price { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.card-price-was { font-size: 14px; color: var(--text-tertiary); text-decoration: line-through; margin-left: 8px; }
.card-price-per { font-size: 13px; color: var(--text-tertiary); }

/* Trust Grid */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { padding: 40px 32px; text-align: center; position: relative; }
.trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.trust-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 16px; margin: 0 auto 18px; }
.trust-icon-indigo { background: rgba(79,70,229,0.08); color: #4f46e5; }
.trust-icon-blue { background: rgba(2,132,199,0.08); color: #0284c7; }
.trust-icon-amber { background: rgba(245,158,11,0.08); color: #d97706; }
.trust-icon-green { background: rgba(22,163,74,0.08); color: #16a34a; }
.trust-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.trust-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* How It Works Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: center; padding: 48px 0; }
.step-item .step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: white; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Form Components (shared by checkout, login, profile) */
.form-section { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-section-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.form-section-title svg { color: var(--accent); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-tertiary); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 90px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-tertiary); padding: 20px 0; }
.breadcrumb a { color: var(--text-secondary); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--text-primary); font-weight: 600; }

/* Checkout Nav */
.checkout-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.checkout-nav .logo-text { color: var(--text-primary); }
.checkout-nav-help { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.checkout-nav-help svg { color: var(--accent); }

/* Progress Steps */
.progress-steps { background: white; border-bottom: 1px solid var(--border); padding: 28px 40px; }
.steps-track { display: flex; align-items: center; justify-content: center; max-width: 560px; margin: 0 auto; }
.step { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.step-number { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; background: var(--surface-sunken); color: var(--text-tertiary); border: 2px solid var(--border-strong); flex-shrink: 0; }
.step.active .step-number { background: var(--accent); color: white; border-color: var(--accent); }
.step.completed .step-number { background: var(--accent); color: white; border-color: var(--accent); }
.step-label { font-size: 14px; font-weight: 600; color: var(--text-tertiary); }
.step.active .step-label { color: var(--text-primary); }
.step.completed .step-label { color: var(--accent); }
.step-line { width: 80px; height: 2px; background: var(--border-strong); margin: 0 16px; flex-shrink: 0; }
.step-line.completed { background: var(--accent); }

/* Auth Page Components (login/signup) */
.auth-view { transition: opacity 0.3s ease; }
.auth-divider { display: flex; align-items: center; gap: 16px; margin: 28px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-strong); }
.auth-divider span { font-size: 13px; color: var(--text-tertiary); font-weight: 500; white-space: nowrap; }
.auth-social-buttons { display: flex; gap: 12px; }
.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.auth-social-btn:hover { background: var(--surface-sunken); border-color: rgba(0,0,0,0.15); }
.auth-social-btn svg { flex-shrink: 0; }
.auth-toggle-text { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-secondary); }
.auth-toggle-text a { color: var(--accent); font-weight: 700; cursor: pointer; transition: color 0.2s; }
.auth-toggle-text a:hover { color: var(--accent-light); }
.auth-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s;
}
.auth-password-toggle:hover { color: var(--text-secondary); }
.auth-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.auth-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.auth-checkbox label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; cursor: pointer; }
.auth-checkbox label a { color: var(--accent); font-weight: 600; }
.auth-checkbox label a:hover { text-decoration: underline; }
.auth-strength-bars { display: flex; gap: 4px; margin-top: 8px; height: 4px; }
.auth-strength-bar { flex: 1; border-radius: 100px; background: var(--border-strong); transition: background 0.3s ease; }
.auth-strength-bar.weak { background: #ef4444; }
.auth-strength-bar.medium { background: #f59e0b; }
.auth-strength-bar.strong { background: #22c55e; }
.auth-strength-label { font-size: 12px; margin-top: 5px; color: var(--text-tertiary); font-weight: 500; }
.auth-strength-label.weak { color: #ef4444; }
.auth-strength-label.medium { color: #f59e0b; }
.auth-strength-label.strong { color: #22c55e; }

@media (max-width: 768px) {
  .auth-social-buttons { flex-direction: column; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hotels-scroll { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2)::after { display: none; }
  .dest-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: 260px 260px 260px; }
  .dest-a { grid-column: 1 / -1; }
  .dest-f { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(3)::after { display: none; }
  .page-hero h1 { font-size: 36px; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-title-actions { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; margin-left: auto; }
  .nav-inner { padding: 0 12px; }

  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .hero-floating-pills { display: none; }

  .search-box { border-radius: 20px; padding: 16px; }
  .search-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 2px; margin-bottom: 14px; }
  .search-tab { white-space: nowrap; padding: 7px 14px; font-size: 12px; gap: 5px; }
  .search-tab svg { width: 15px; height: 15px; }
  .search-bar { flex-direction: column; border-radius: var(--radius-lg); padding: 8px; }
  .search-cell { padding: 12px 14px; }
  .search-divider { width: 100%; height: 1px; }
  .search-cell-wide, .search-cell-narrow { flex: auto; }
  .search-btn { width: 100%; height: auto; border-radius: var(--radius-full); padding: 14px; margin-left: 0; margin-top: 4px; }

  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 120px; }

  .dest-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .dest-a, .dest-f { grid-column: 1 / -1; }

  .deals-grid { grid-template-columns: 1fr; }
  .hotels-scroll { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card::after { display: none !important; }


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

  /* Search results responsive */
  .search-page-header { padding: 80px 0 20px; }
  .results-layout { grid-template-columns: 1fr; }
  .filters-sidebar { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000; border-radius: 0; overflow-y: auto; padding: 24px; padding-top: 60px; }
  .filters-sidebar.show { display: flex; }
  .filter-close { display: flex; }
  .mobile-filter-toggle { display: flex; }
  .results-list { grid-template-columns: repeat(2, 1fr); }
  .results-header { flex-wrap: wrap; gap: 12px; }
  .faq-header { position: static; }

  .cta-section .cta-inner { padding: 48px 24px; border-radius: 20px; }
  .cta-section .cta-content h2 { font-size: 28px; }

  .newsletter-section { padding: 0 0 64px; }
  .newsletter-inner { padding: 40px 24px; border-radius: 22px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input-wrap { padding: 0 16px; }

  .footer { padding-top: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Shared component responsive */
  .page-header { padding: 0 20px; }
  .page-hero { padding: 80px 20px 60px; min-height: 320px; }
  .page-hero h1 { font-size: 32px; }
  .page-search-bar { flex-direction: column; border-radius: var(--radius-lg); }
  .page-search-divider { width: 100%; height: 1px; }
  .page-search-btn { width: 100%; border-radius: var(--radius-full); padding: 14px; }
  .categories-row { padding: 24px 0; gap: 8px; }
  .card-grid, .card-grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item::after { display: none !important; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .checkout-nav { padding: 0 20px; }
  .progress-steps { padding: 20px; }
  .steps-track { flex-direction: column; gap: 12px; }
  .step-line { width: 2px; height: 24px; margin: 0; }
  .gallery { grid-template-columns: 1fr; max-height: none; border-radius: 16px; }
  .gallery-main { height: 260px; }
  .gallery-thumb { height: 140px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card { flex-direction: column; }
  .room-img { width: 100%; height: 200px; }
  .reviews-overview { flex-direction: column; gap: 16px; }
  .review-cards { grid-template-columns: 1fr; }
  .review-card:last-child:nth-child(odd) { grid-column: auto; }
  .hotel-name { font-size: 24px; }
  .hotel-meta { gap: 8px; }
  .detail-layout { gap: 24px; padding: 24px 0 48px; }
  .detail-title-bar { flex-direction: column; gap: 16px; }
  .detail-title-actions { display: flex; }
  .booking-card { padding: 20px; }
  .similar-section { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; letter-spacing: -0.8px; }
  .hero-visual-wrap { margin: 8px; border-radius: 20px; }
  .hero-trust { flex-wrap: wrap; justify-content: center; }
  .dest-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-card { aspect-ratio: 16/10; }
  .dest-a, .dest-b, .dest-c, .dest-d, .dest-e, .dest-f { grid-column: auto; grid-row: auto; }
  .hotels-scroll { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .results-list { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .categories-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .category-pill { flex-shrink: 0; }
  .breadcrumb { font-size: 12px; flex-wrap: wrap; }
}
