/* BookNLoop v10 - Final Polish */
:root {
  --bg-dark: #0a0a0f;
  --bg-card: #131318;
  --bg-card-hover: #1a1a22;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(139,92,246,0.5);
  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.5);
  --accent: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-soft: rgba(139,92,246,0.15);
  --accent-glow: rgba(139,92,246,0.3);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 14px;
  --radius-sm: 8px;
  --menu-width: 240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.5; }

/* ========== LOGO ========== */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo .logo-icon svg {
  width: 28px;
  height: 28px;
}
.brand-logo .brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand-logo .brand-text .n {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-logo.small .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.brand-logo.small .logo-icon svg {
  width: 22px;
  height: 22px;
}
.brand-logo.small .brand-text {
  font-size: 1.25rem;
}

/* ========== LANDING PAGE ========== */
.landing { 
  display: none; 
  min-height: 100vh; 
  flex-direction: column; 
  padding: 24px 40px; 
  max-width: 960px; 
  margin: 0 auto; 
}
.landing.active { display: flex; }

.landing-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding-bottom: 32px;
}

.header-actions { display: flex; gap: 10px; }
.header-btn { 
  background: transparent; 
  border: 1px solid var(--border); 
  color: var(--text-soft); 
  padding: 10px 20px; 
  border-radius: var(--radius-sm); 
  cursor: pointer; 
  font-size: 0.875rem; 
  font-weight: 500;
  transition: all 0.2s;
}
.header-btn:hover { border-color: var(--text-muted); color: var(--text); }
.header-btn.primary { 
  background: linear-gradient(135deg, #8b5cf6, #ec4899); 
  border: none; 
  color: white; 
}
.header-btn.primary:hover { filter: brightness(1.1); }

.landing-main { 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  padding: 40px 0; 
}
.landing-title { 
  font-size: 3.25rem; 
  font-weight: 800; 
  margin-bottom: 14px; 
  letter-spacing: -1.5px; 
  line-height: 1.1; 
}
.landing-subtitle { 
  font-size: 1.125rem; 
  color: var(--text-muted); 
  margin-bottom: 48px; 
  max-width: 420px; 
}

/* Choice Cards */
.choice-cards { 
  display: flex; 
  gap: 16px; 
  margin-bottom: 48px; 
  width: 100%; 
  max-width: 720px;
}
.choice-card { 
  flex: 1; 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 32px 24px; 
  cursor: pointer; 
  transition: all 0.2s ease;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
}
.choice-card:hover { 
  border-color: var(--border-hover); 
  transform: translateY(-4px); 
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

.card-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon { font-size: 2.25rem; }

.card-title { 
  font-size: 1.1rem; 
  font-weight: 600; 
  color: var(--text);
  margin-bottom: 6px;
}
.card-desc { 
  font-size: 0.875rem; 
  color: var(--text-muted);
}

/* Stats */
.stats-row { display: flex; gap: 40px; }
.stat { text-align: center; }
.stat-num { 
  font-size: 1.5rem; 
  font-weight: 700; 
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; 
}
.stat-label { 
  font-size: 0.7rem; 
  color: var(--text-muted); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-top: 4px;
}

/* Footer */
.landing-footer { 
  padding: 24px 0; 
  text-align: center; 
  color: var(--text-muted); 
  font-size: 0.8rem; 
  border-top: 1px solid var(--border); 
}

/* ========== MODALS ========== */
.modal-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.85); 
  z-index: 1000; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
  backdrop-filter: blur(4px); 
}
.modal-overlay.active { display: flex; }
.modal { 
  background: var(--bg-card); 
  border-radius: var(--radius); 
  padding: 28px; 
  max-width: 400px; 
  width: 100%; 
  position: relative; 
  border: 1px solid var(--border); 
}
.modal-close { 
  position: absolute; 
  top: 14px; 
  right: 14px; 
  background: none; 
  border: none; 
  color: var(--text-muted); 
  font-size: 1.4rem; 
  cursor: pointer; 
  line-height: 1;
}
.modal h2 { margin-bottom: 6px; font-weight: 700; font-size: 1.25rem; }
.modal-subtitle { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }
.modal-options { display: flex; flex-direction: column; gap: 10px; }
.modal-option { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  padding: 16px; 
  background: var(--bg-dark); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  text-decoration: none; 
  color: var(--text); 
  transition: all 0.15s; 
}
.modal-option:hover { border-color: var(--accent); }
.modal-option-icon { font-size: 1.5rem; }
.modal-option-title { font-weight: 600; display: block; font-size: 0.95rem; }
.modal-option-desc { font-size: 0.8rem; color: var(--text-muted); }

.auth-form { display: flex; flex-direction: column; gap: 10px; }
.input { 
  background: var(--bg-dark); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  padding: 12px 14px; 
  color: var(--text); 
  font-size: 0.95rem; 
  width: 100%; 
}
.input:focus { outline: none; border-color: var(--accent); }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.75rem; margin-top: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-card { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 12px; 
  background: var(--bg-dark); 
  border-radius: var(--radius-sm); 
}
.contact-icon { font-size: 1.1rem; }
.contact-card div { display: flex; flex-direction: column; }
.contact-card strong { font-size: 0.9rem; }
.contact-card span { font-size: 0.7rem; color: var(--text-muted); }

/* ========== APP LAYOUT ========== */
.app { display: none; height: 100vh; }
.app[style*="display: flex"] { display: flex !important; }

.menu-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.6); 
  z-index: 99; 
}
.menu-overlay.active { display: block; }

.menu { 
  position: fixed; 
  left: 0; 
  top: 0; 
  bottom: 0; 
  width: var(--menu-width); 
  background: var(--bg-card); 
  border-right: 1px solid var(--border); 
  z-index: 100; 
  display: flex; 
  flex-direction: column; 
  transform: translateX(-100%); 
  transition: transform 0.25s; 
}
.menu.open { transform: translateX(0); }

.menu-header { 
  padding: 18px 16px; 
  border-bottom: 1px solid var(--border); 
}

.menu-nav { flex: 1; padding: 12px; overflow-y: auto; }
.menu-link { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  padding: 11px 12px; 
  border-radius: var(--radius-sm); 
  color: var(--text-soft); 
  text-decoration: none; 
  margin-bottom: 4px; 
  transition: all 0.15s; 
  font-size: 0.9rem;
}
.menu-link:hover { background: var(--bg-card-hover); }
.menu-link.active { background: var(--accent-soft); color: var(--accent); }
.menu-icon { font-size: 1rem; width: 20px; text-align: center; }
.menu-divider { height: 1px; background: var(--border); margin: 12px 0; }

.main-content { 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  overflow: hidden; 
}

.top-bar { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 14px 24px; 
  border-bottom: 1px solid var(--border); 
  background: var(--bg-dark); 
}
.back-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 10px;
  margin-right: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.back-btn:hover {
  background: var(--bg-card);
}
.menu-toggle { 
  background: none; 
  border: none; 
  color: var(--text); 
  font-size: 1.2rem; 
  cursor: pointer; 
  padding: 6px; 
}
.top-title { font-weight: 600; flex: 1; font-size: 0.95rem; }
.top-btn { 
  background: transparent; 
  border: 1px solid var(--border); 
  color: var(--text-soft); 
  padding: 7px 14px; 
  border-radius: var(--radius-sm); 
  font-size: 0.8rem; 
  cursor: pointer; 
}

/* ========== SCREENS ========== */
.screen { display: none; flex: 1; overflow-y: auto; }
.screen.active { display: block; }

/* KEY FIX: More padding from sidebar */
.screen-content { 
  padding: 32px 40px 32px 48px; 
  max-width: 560px; 
}
.screen-content.center { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  min-height: 50vh; 
  text-align: center; 
  max-width: 100%;
  padding: 40px;
}

.back-btn { 
  background: none; 
  border: none; 
  color: var(--text-muted); 
  padding: 14px 24px 14px 40px; 
  cursor: pointer; 
  font-size: 0.85rem; 
}
.back-btn:hover { color: var(--text); }

h2 { font-size: 1.4rem; margin-bottom: 8px; font-weight: 700; }
.subtitle { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }
.muted-text { color: var(--text-muted); }

/* Search */
.search-box { margin-bottom: 16px; }
.search-textarea { 
  width: 100%; 
  min-height: 90px; 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 14px 16px; 
  color: var(--text); 
  font-size: 0.95rem; 
  resize: none; 
  margin-bottom: 10px; 
  font-family: inherit;
}
.search-textarea:focus { outline: none; border-color: var(--accent); }
.search-textarea::placeholder { color: var(--text-muted); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: 100px; 
  padding: 9px 16px; 
  color: var(--text-soft); 
  font-size: 0.8rem; 
  cursor: pointer; 
  transition: all 0.15s; 
}
.chip:hover { border-color: var(--accent); color: var(--text); }

/* Buttons */
.btn-primary { 
  background: linear-gradient(135deg, #8b5cf6, #ec4899); 
  color: white; 
  border: none; 
  padding: 13px 22px; 
  border-radius: var(--radius-sm); 
  font-size: 0.95rem; 
  font-weight: 600; 
  cursor: pointer; 
  transition: all 0.15s; 
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline { 
  background: transparent; 
  border: 1px solid var(--border); 
  color: var(--text); 
  padding: 13px 22px; 
  border-radius: var(--radius-sm); 
  font-size: 0.95rem; 
  cursor: pointer; 
}
.btn-outline:hover { border-color: var(--text-muted); }
.btn-full { width: 100%; }
.btn-small { padding: 9px 16px; font-size: 0.8rem; }
.btn-row { display: flex; gap: 10px; }
.btn-row > * { flex: 1; }

/* Loader */
.loader { 
  width: 40px; 
  height: 40px; 
  border: 3px solid var(--border); 
  border-top-color: var(--accent); 
  border-radius: 50%; 
  animation: spin 1s linear infinite; 
  margin-bottom: 20px; 
}
@keyframes spin { to { transform: rotate(360deg); } }

.pulse-ring { 
  width: 64px; 
  height: 64px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(236,72,153,0.25)); 
  animation: pulse 1.5s ease-in-out infinite; 
  margin-bottom: 20px; 
}
@keyframes pulse { 
  0%, 100% { transform: scale(1); opacity: 1; } 
  50% { transform: scale(1.12); opacity: 0.7; } 
}

/* Progress */
.progress-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.progress-step { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.progress-step.active { color: var(--accent); }
.progress-step.done { color: var(--success); }

.progress-bar-container { 
  width: 100%; 
  max-width: 280px; 
  height: 5px; 
  background: var(--bg-card); 
  border-radius: 3px; 
  overflow: hidden; 
  margin-top: 20px; 
}
.progress-bar { 
  height: 100%; 
  background: linear-gradient(90deg, #8b5cf6, #ec4899); 
  width: 0; 
  transition: width 0.2s; 
}

/* Intent/Summary Box */
.intent-box { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 20px; 
  margin-bottom: 24px; 
}
.intent-row { 
  display: flex; 
  justify-content: space-between; 
  padding: 10px 0; 
  border-bottom: 1px solid var(--border); 
  font-size: 0.9rem;
}
.intent-row:last-child { border-bottom: none; }
.intent-label { color: var(--text-muted); }
.intent-value { font-weight: 600; }

/* Tabs */
.tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.tab { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: 100px; 
  padding: 9px 18px; 
  color: var(--text-muted); 
  font-size: 0.8rem; 
  cursor: pointer; 
  transition: all 0.15s; 
}
.tab:hover { border-color: var(--text-muted); }
.tab.active { 
  background: linear-gradient(135deg, #8b5cf6, #ec4899); 
  border-color: transparent; 
  color: white; 
}

/* Results */
.results-header { margin-bottom: 16px; }
.results-list { display: flex; flex-direction: column; gap: 12px; }

.offer-card { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  overflow: hidden; 
  cursor: pointer; 
  transition: all 0.15s; 
}
.offer-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.offer-card.live { border-left: 3px solid var(--success); }

.offer-image { 
  height: 130px; 
  background-size: cover; 
  background-position: center; 
  background-color: var(--bg-card-hover); 
}
.offer-content { padding: 14px 16px; }
.offer-badge { 
  display: inline-block; 
  padding: 4px 10px; 
  border-radius: 6px; 
  font-size: 0.65rem; 
  font-weight: 600; 
  text-transform: uppercase; 
  margin-bottom: 8px; 
}
.offer-badge.instant { background: var(--bg-dark); color: var(--text-muted); }
.offer-badge.live { background: rgba(16,185,129,0.15); color: var(--success); }
.offer-header { display: flex; justify-content: space-between; margin-bottom: 4px; }
.offer-name { font-weight: 600; font-size: 0.95rem; }
.offer-stars { color: var(--warning); font-size: 0.8rem; }
.offer-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.offer-footer { display: flex; justify-content: space-between; align-items: center; }
.offer-price { font-size: 1.2rem; font-weight: 700; color: var(--success); }
.offer-price small { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); }
.offer-match { 
  font-size: 0.75rem; 
  color: var(--text-muted); 
  background: var(--bg-dark); 
  padding: 4px 10px; 
  border-radius: 6px; 
}

/* Bid */
.bid-banner { 
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(236,72,153,0.12)); 
  border: 1px solid rgba(139,92,246,0.25); 
  border-radius: var(--radius); 
  padding: 14px 16px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-top: 20px; 
  font-size: 0.9rem;
}
.bid-input-group { margin-bottom: 20px; }
.bid-input-group label { 
  display: block; 
  color: var(--text-muted); 
  margin-bottom: 8px; 
  font-size: 0.85rem; 
}
.bid-input-row { 
  display: flex; 
  align-items: center; 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  padding: 4px 14px; 
}
.bid-input-row .currency { color: var(--text-muted); font-size: 1.1rem; }
.bid-input { 
  flex: 1; 
  background: none; 
  border: none; 
  color: var(--text); 
  font-size: 1.3rem; 
  font-weight: 700; 
  padding: 10px; 
}
.bid-input:focus { outline: none; }
.bid-suggestion { margin-top: 10px; font-size: 0.85rem; }

.bid-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.bid-options-label { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 6px; }
.bid-opt { display: flex; align-items: center; cursor: pointer; }
.bid-opt input { display: none; }
.opt-box { 
  flex: 1; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 12px 14px; 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  transition: all 0.15s; 
}
.bid-opt input:checked + .opt-box { border-color: var(--accent); background: var(--accent-soft); }
.opt-thumb { 
  width: 44px; 
  height: 44px; 
  border-radius: 8px; 
  object-fit: cover; 
  background: var(--bg-card-hover); 
}
.opt-text strong { display: block; font-size: 0.9rem; }
.opt-text small { color: var(--text-muted); font-size: 0.75rem; }

.hint-neutral { color: var(--text-muted); }
.hint-low { color: var(--danger); }
.hint-medium { color: var(--warning); }
.hint-good { color: var(--success); }
.hint-great { color: #22c55e; }

/* Bid Response */
.bid-response { text-align: center; padding: 16px 0; }
.response-icon { font-size: 3.5rem; margin-bottom: 14px; }
.response-card { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 16px 18px; 
  margin: 20px 0; 
  text-align: left; 
}
.response-card.success { border-color: var(--success); }
.savings { color: var(--success); font-size: 0.85rem; display: block; margin-top: 8px; }
.accepted-price { color: var(--success); font-weight: 700; font-size: 1.05rem; }

/* Detail */
.detail-image { 
  height: 180px; 
  background-size: cover; 
  background-position: center; 
  border-radius: var(--radius); 
  margin-bottom: 18px; 
  position: relative; 
  background-color: var(--bg-card-hover); 
}
.detail-type { 
  position: absolute; 
  top: 12px; 
  left: 12px; 
  background: rgba(0,0,0,0.7); 
  padding: 5px 12px; 
  border-radius: 6px; 
  font-size: 0.7rem; 
  font-weight: 500; 
}
.detail-name { font-size: 1.35rem; margin-bottom: 8px; }
.detail-meta { 
  display: flex; 
  gap: 14px; 
  color: var(--text-muted); 
  font-size: 0.85rem; 
  margin-bottom: 16px; 
}
.detail-rating { color: var(--warning); }
.detail-description { 
  color: var(--text-soft); 
  margin-bottom: 20px; 
  line-height: 1.6; 
  font-size: 0.9rem;
}
.detail-section { margin-bottom: 24px; }
.detail-section h3 { font-size: 0.95rem; margin-bottom: 12px; font-weight: 600; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.detail-item { 
  background: var(--bg-card); 
  padding: 12px; 
  border-radius: var(--radius-sm); 
  border: 1px solid var(--border); 
}
.detail-item .label { 
  display: block; 
  font-size: 0.7rem; 
  color: var(--text-muted); 
  margin-bottom: 3px; 
}
.detail-item span:not(.label) { font-size: 0.9rem; }
.amenities-list { display: flex; flex-wrap: wrap; gap: 6px; }
.amenity-tag { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  padding: 7px 12px; 
  border-radius: 6px; 
  font-size: 0.8rem; 
}
.reviews-list { display: flex; flex-direction: column; gap: 10px; }
.review-card { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  padding: 14px; 
  border-radius: var(--radius); 
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; }
.review-stars { color: var(--warning); font-size: 0.8rem; }
.review-card p { color: var(--text-soft); font-size: 0.85rem; line-height: 1.5; }
.includes-list { list-style: none; }
.includes-list li { 
  padding: 9px 0; 
  border-bottom: 1px solid var(--border); 
  color: var(--text-soft); 
  font-size: 0.9rem;
}
.includes-list li:last-child { border-bottom: none; }

.detail-actions { 
  display: flex; 
  gap: 10px; 
  padding: 16px 24px; 
  border-top: 1px solid var(--border); 
  background: var(--bg-dark); 
}
.detail-actions > * { flex: 1; }

.price-box { 
  background: linear-gradient(135deg, #8b5cf6, #ec4899); 
  border-radius: var(--radius); 
  padding: 20px; 
  margin-bottom: 20px; 
}
.price-box .label { font-size: 0.8rem; opacity: 0.85; margin-bottom: 4px; }
.price-box .price { font-size: 2rem; font-weight: 800; }
.price-box .price-total { font-size: 0.85rem; opacity: 0.85; margin-top: 4px; }
.price-box .price-original { text-decoration: line-through; opacity: 0.6; font-size: 0.85rem; }

/* Deals */
.flash-list { display: flex; flex-direction: column; gap: 10px; }
.flash-card { 
  background: var(--bg-card); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 16px; 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}
.flash-badge { 
  background: linear-gradient(135deg, #8b5cf6, #ec4899); 
  color: white; 
  padding: 7px 12px; 
  border-radius: 6px; 
  font-weight: 700; 
  font-size: 0.8rem; 
}
.flash-info { flex: 1; }
.flash-location { font-weight: 600; margin-bottom: 3px; font-size: 0.95rem; }
.flash-meta { font-size: 0.75rem; color: var(--text-muted); }
.flash-prices { margin-top: 8px; }
.old-price { text-decoration: line-through; color: var(--text-muted); margin-right: 8px; font-size: 0.85rem; }
.new-price { color: var(--success); font-weight: 700; font-size: 0.95rem; }

/* Success */
.success-icon { font-size: 4rem; margin-bottom: 16px; }

/* ========== CONTACT FORM ========== */
.contact-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 20px 0 16px;
  position: relative;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--border);
}
.contact-divider::before { left: 0; }
.contact-divider::after { right: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form .textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}
.contact-feedback {
  display: none;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-top: 8px;
}
.contact-feedback.success {
  background: rgba(16,185,129,0.15);
  color: var(--success);
}
.contact-feedback.error {
  background: rgba(239,68,68,0.15);
  color: var(--danger);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.how-it-works h3 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.steps {
  display: flex;
  gap: 16px;
}
.step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-soft);
}
.step-num {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== FLASH DEAL NOTIFICATION ========== */
.flash-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}
.flash-notification.show {
  transform: translateX(0);
}
.flash-notification-content {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(139,92,246,0.2);
}
.flash-notification-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.flash-notification-hotel {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.flash-notification-details {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.flash-notification-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.flash-notification-price .old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.flash-notification-price .new {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--success);
}
.flash-notification-price .discount {
  background: rgba(16,185,129,0.15);
  color: var(--success);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.flash-notification-actions {
  display: flex;
  gap: 8px;
}
.flash-btn-view {
  flex: 1;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s;
}
.flash-btn-view:hover {
  filter: brightness(1.1);
}
.flash-btn-dismiss {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.15s;
}
.flash-btn-dismiss:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* Flash highlight animation for new cards */
.offer-card.flash-highlight {
  animation: flash-glow 2s ease-out;
}
@keyframes flash-glow {
  0% {
    box-shadow: 0 0 0 3px rgba(139,92,246,0.5), 0 0 20px rgba(139,92,246,0.3);
  }
  100% {
    box-shadow: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (min-width: 769px) {
  .menu { transform: translateX(0); }
  .menu-toggle { display: none; }
  .main-content { margin-left: var(--menu-width); }
  .menu-overlay { display: none !important; }
}

@media (max-width: 768px) {
  .landing { padding: 20px; }
  .landing-header { 
    flex-direction: column; 
    gap: 16px; 
    align-items: flex-start; 
    padding-bottom: 24px; 
  }
  .brand-logo .logo-icon { width: 38px; height: 38px; border-radius: 10px; }
  .brand-logo .logo-icon svg { width: 24px; height: 24px; }
  .brand-logo .brand-text { font-size: 1.3rem; }
  .header-actions { width: 100%; }
  .header-btn { flex: 1; text-align: center; padding: 11px; font-size: 0.85rem; }
  
  .landing-title { font-size: 2rem; }
  .landing-subtitle { font-size: 0.95rem; margin-bottom: 36px; }
  
  .choice-cards { flex-direction: column; gap: 12px; }
  .choice-card { padding: 24px 20px; }
  .card-icon-wrap { width: 56px; height: 56px; border-radius: 14px; }
  .card-icon { font-size: 1.75rem; }
  .card-title { font-size: 1rem; }
  .card-desc { font-size: 0.8rem; }
  
  .stats-row { gap: 28px; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: 0.65rem; }
  
  .screen-content { padding: 24px 20px; }
  .back-btn { padding: 14px 20px; }
  
  /* Steps responsive */
  .steps { flex-direction: column; gap: 10px; }
  .step { padding: 10px 12px; }
  
  /* Flash notification responsive */
  .flash-notification {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .flash-notification-content {
    width: auto;
  }
}
