/* =========================================
   INSPECTRA — styles.css
   Version 0.5 | Investor Ready Prototype
   ========================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #050d1a;
  --navy-800: #091428;
  --navy-700: #0d1e3a;
  --navy-600: #112650;
  --navy-500: #1a3260;
  --accent-teal: #00d4c8;
  --accent-blue: #0ea5e9;
  --accent-glow: rgba(0, 212, 200, 0.15);
  --verified: #10b981;
  --verified-bg: rgba(16, 185, 129, 0.12);
  --conditional: #f59e0b;
  --conditional-bg: rgba(245, 158, 11, 0.12);
  --failed: #ef4444;
  --failed-bg: rgba(239, 68, 68, 0.12);
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.08);
  --white-8: rgba(255,255,255,0.05);
  --card-bg: rgba(13, 30, 58, 0.9);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(0, 212, 200, 0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.6);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-800); }
::-webkit-scrollbar-thumb { background: var(--navy-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-teal); }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 17px;
  color: var(--white-70);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  color: var(--navy-900);
  box-shadow: 0 0 30px rgba(0, 212, 200, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 212, 200, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  background: var(--accent-glow);
}
.btn-compare {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: var(--white-15);
  color: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-compare:hover {
  background: var(--accent-glow);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.navbar.scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { color: var(--accent-teal); font-size: 22px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-70);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--accent-teal); }
.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  color: var(--navy-900);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(0,212,200,0.4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,200,0.15), transparent 70%);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.12), transparent 70%);
  bottom: -50px; right: 10%;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,200,0.08), transparent 70%);
  top: 50%; right: -80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white-8);
  font-size: 12px;
  font-weight: 500;
  color: var(--white-70);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 40%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 16px;
  color: var(--white-40);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-teal);
  letter-spacing: -0.03em;
}
.stat-label { font-size: 12px; color: var(--white-40); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-float { position: relative; width: 380px; height: 380px; }
.float-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite alternate;
}
.fc-1 { top: 30px; left: 0; animation-delay: 0s; }
.fc-2 { bottom: 40px; right: -20px; animation-delay: 0.8s; }
.fc-3 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.4s; }
@keyframes floatCard {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
.fc-3 { animation: floatCard3 4s ease-in-out infinite alternate; }
@keyframes floatCard3 {
  from { transform: translateY(-50%) translateX(0); }
  to { transform: translateY(calc(-50% - 12px)) translateX(0); }
}
.fc-icon { font-size: 24px; }
.fc-info { display: flex; flex-direction: column; }
.fc-info strong { font-size: 13px; font-weight: 600; }
.fc-info span { font-size: 11px; color: var(--white-40); }
.fc-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
}
.hero-sphere {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
}
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.sphere-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0,212,200,0.1);
  position: relative;
  overflow: hidden;
}
.sphere-line {
  position: absolute;
  left: 50%; top: 50%;
  width: 100%; height: 1px;
  background: rgba(0,212,200,0.15);
  transform-origin: center;
}
.sphere-line:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.sphere-line:nth-child(2) { transform: translateX(-50%) rotate(60deg); }
.sphere-line:nth-child(3) { transform: translateX(-50%) rotate(120deg); }
.sphere-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 20px var(--accent-teal);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span { font-size: 11px; color: var(--white-40); letter-spacing: 0.1em; }
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent-teal), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(0.6);opacity:0.4;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card:hover::before { transform: scaleX(1); }
.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  border: 1px solid rgba(0,212,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  margin-bottom: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-teal);
  opacity: 0.5;
  margin-bottom: 8px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p { font-size: 14px; color: var(--white-70); line-height: 1.65; }

/* ---------- HOTEL MARKETPLACE ---------- */
.hotel-marketplace { background: var(--navy-800); }
.marketplace-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.toolbar-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--border);
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-glow);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hotel-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.hotel-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hotel-card.selected { border-color: var(--accent-teal); box-shadow: 0 0 0 1px var(--accent-teal), var(--shadow); }
.hotel-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.hotel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5,13,26,0.8) 100%);
}
.hotel-price-tag {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  z-index: 2;
}
.hotel-price-tag span { font-size: 12px; font-weight: 400; color: var(--white-70); }
.hotel-select-check {
  position: absolute;
  top: 12px; right: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}
.hotel-select-check.checked {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: var(--navy-900);
}
.hotel-body { padding: 20px; }
.hotel-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.badge-verified { background: var(--verified-bg); color: var(--verified); border: 1px solid rgba(16,185,129,0.2); }
.badge-conditional { background: var(--conditional-bg); color: var(--conditional); border: 1px solid rgba(245,158,11,0.2); }
.badge-failed { background: var(--failed-bg); color: var(--failed); border: 1px solid rgba(239,68,68,0.2); }
.hotel-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.hotel-location { font-size: 13px; color: var(--white-40); margin-bottom: 14px; }
.hotel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hotel-rating { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--white-70); }
.star { color: var(--conditional); font-size: 13px; }
.hotel-actions { display: flex; gap: 10px; }
.inspect-btn {
  flex: 1;
  padding: 11px 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.inspect-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ---------- REVIEWS ---------- */
.reviews-section { background: var(--navy-900); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.review-quote {
  font-size: 36px;
  color: var(--accent-teal);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}
.review-text { font-size: 15px; color: var(--white-70); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-stars { margin-bottom: 12px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-info strong { font-size: 14px; display: block; }
.review-info span { font-size: 12px; color: var(--white-40); }

/* ---------- VERIFICATION ---------- */
.verification-section { background: var(--navy-800); }
.verify-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.badge-list { display: flex; flex-direction: column; gap: 24px; }
.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.verified-badge { background: var(--verified-bg); color: var(--verified); border: 1px solid rgba(16,185,129,0.3); }
.conditional-badge { background: var(--conditional-bg); color: var(--conditional); border: 1px solid rgba(245,158,11,0.3); }
.failed-badge { background: var(--failed-bg); color: var(--failed); border: 1px solid rgba(239,68,68,0.3); }
.badge-text strong { font-size: 15px; font-family: var(--font-display); font-weight: 700; display: block; margin-bottom: 4px; }
.badge-text p { font-size: 13px; color: var(--white-70); line-height: 1.6; }
.verify-card-stack { position: relative; height: 320px; }
.vcard {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  width: 300px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.vcard-1 { top: 0; left: 30px; z-index: 2; border-color: rgba(16,185,129,0.3); }
.vcard-2 { bottom: 0; right: 0; z-index: 1; border-color: rgba(245,158,11,0.3); }
.vcard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.vcard-badge {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}
.vcard-score { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--accent-teal); }
.vcard-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.vcard-rooms { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.vcard-rooms span { font-size: 11px; background: var(--white-15); padding: 4px 10px; border-radius: 50px; }
.vcard-foot { font-size: 11px; color: var(--white-40); }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-900); border-top: 1px solid var(--border); }
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer-brand p { font-size: 14px; color: var(--white-40); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white-40);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { border-color: var(--accent-teal); color: var(--accent-teal); background: var(--accent-glow); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--white-40); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-teal); }
.footer-bottom { padding: 18px 0; border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--white-40);
}

/* ---------- MODAL OVERLAY ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-container {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 1060px;
  max-height: 90vh;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.95) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white-15);
  color: var(--white-70);
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--failed-bg); border-color: var(--failed); color: var(--failed); }
.modal-left {
  width: 300px;
  flex-shrink: 0;
  background: var(--navy-800);
  border-right: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}
.modal-hotel-info .modal-badge { margin-bottom: 10px; }
.modal-hotel-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal-meta { font-size: 13px; color: var(--white-40); line-height: 1.7; }
.room-nav-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--white-40);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.room-buttons { display: flex; flex-direction: column; gap: 6px; }
.room-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.room-btn:hover { background: var(--white-8); color: var(--white); border-color: var(--border); }
.room-btn.active { background: var(--accent-glow); border-color: rgba(0,212,200,0.3); color: var(--accent-teal); }
.room-btn-icon { font-size: 18px; }
.booking-btns { display: flex; flex-direction: column; gap: 10px; }
.book-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.airbnb-btn { background: rgba(255,90,96,0.15); color: #ff5a60; border: 1px solid rgba(255,90,96,0.25); }
.airbnb-btn:hover { background: rgba(255,90,96,0.25); }
.booking-btn { background: rgba(0,120,200,0.15); color: #0078c8; border: 1px solid rgba(0,120,200,0.25); }
.booking-btn:hover { background: rgba(0,120,200,0.25); }
.modal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.panorama-header {
  padding: 20px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.panorama-label { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.panorama-hint { font-size: 12px; color: var(--white-40); }
.panorama-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: grab;
  min-height: 340px;
}
.panorama-container:active { cursor: grabbing; }
.panorama-scene {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.panorama-room {
  width: 300%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.05s linear;
  will-change: transform;
}
.panorama-compass {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  pointer-events: none;
}
.panorama-crosshair {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  pointer-events: none;
  opacity: 0.35;
}
.ch-h { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--accent-teal); transform: translateY(-50%); }
.ch-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--accent-teal); transform: translateX(-50%); }
.panorama-ui {
  position: absolute;
  right: 14px; top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pano-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(5,13,26,0.7);
  color: var(--white-70);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-weight: 700;
}
.pano-btn:hover { border-color: var(--accent-teal); color: var(--accent-teal); }
.room-thumbnail-strip {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--navy-800);
  overflow-x: auto;
}
.room-thumb {
  flex-shrink: 0;
  width: 70px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.room-thumb:hover, .room-thumb.active { border-color: var(--accent-teal); background: var(--accent-glow); }

/* ---------- COMPARE MODAL ---------- */
.compare-modal-container {
  max-width: 900px;
  flex-direction: column;
  padding: 0;
}
.compare-modal-inner { padding: 40px; overflow-y: auto; max-height: 90vh; }
.compare-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--white-70);
  vertical-align: middle;
}
.compare-table td:first-child { color: var(--white); font-weight: 600; font-family: var(--font-display); font-size: 15px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--white-8); }
.compare-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--white-40);
  font-size: 15px;
}

/* ---------- ANIMATIONS ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .verify-layout { grid-template-columns: 1fr; }
  .verify-visual { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-container { flex-direction: column; max-height: 95vh; }
  .modal-left { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 24px; gap: 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}
