/* =====================
   RENTEN — style.css
   ===================== */

:root {
  --orange: #FF5C00;
  --orange-light: #FF7A2B;
  --dark: #0D0D0D;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --white: #FFFFFF;
  --gray: #9CA3AF;
  --light-bg: #F8F8F6;
  --font: 'Plus Jakarta Sans', sans-serif;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0,0,0,.18);
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======= NAVBAR ======= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
}
.navbar.scrolled { background: rgba(13,13,13,.97); }

.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}

.logo { text-decoration: none; display: flex; flex-direction: column; gap: 0; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.logo-swoosh { width: 48px; height: 10px; margin-top: -2px; }

.nav-links {
  display: flex; list-style: none; gap: 28px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; gap: 10px; margin-left: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 50px; font-size: 14px;
  font-weight: 700; text-decoration: none; cursor: pointer;
  border: none; font-family: var(--font); transition: all .2s;
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,92,0,.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: rgba(255,255,255,.7); }
.btn-dark { background: var(--dark3); color: #fff; border: 1.5px solid rgba(255,255,255,.12); }
.btn-dark:hover { background: var(--dark4); }
.btn-lg { padding: 13px 26px; font-size: 15px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; }

.mobile-menu {
  display: none; flex-direction: column; gap: 12px;
  padding: 16px 24px 20px; background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 15px; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(13,13,13,.55) 0%, rgba(13,13,13,.75) 60%, rgba(13,13,13,1) 100%),
    url('../hero.png') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
}

.hero-overlay { display: none; }

.hero-content { max-width: 640px; margin: 0 auto 0 10%; }

.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px; border-radius: 50px; font-size: 11px;
  font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.6; transform:scale(1.3); }
}

.hero-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.white { color: var(--white); }
.orange { color: var(--orange); }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.75);
  max-width: 580px; margin-bottom: 32px; line-height: 1.65;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-proof {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,.7); flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 6px; }
.stars { color: #FBBF24; font-size: 14px; }
.proof-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* ======= APP SECTION ======= */
.app-section { background: var(--light-bg); padding: 100px 0; }

.app-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.phone-wrap { position: relative; display: flex; justify-content: center; }

.phone-mockup {
  width: 260px; height: 520px;
  background: #1a1a1a; border-radius: 36px;
  border: 6px solid #2a2a2a;
  box-shadow: 0 40px 100px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden; position: relative;
}

.phone-screen { padding: 20px 14px; height: 100%; overflow: hidden; }

.app-topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.app-greeting { font-size: 11px; color: rgba(255,255,255,.5); }
.app-name { font-size: 15px; font-weight: 700; color: #fff; }
.app-avatar { width: 34px; height: 34px; background: var(--orange); border-radius: 50%; }

.app-search {
  background: rgba(255,255,255,.08); border-radius: 8px;
  padding: 9px 12px; font-size: 11px; color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}

.app-chips { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.app-chips span {
  background: rgba(255,255,255,.08); border-radius: 20px;
  padding: 4px 10px; font-size: 10px; color: rgba(255,255,255,.7);
}

.app-card { background: rgba(255,255,255,.06); border-radius: 10px; overflow: hidden; }
.app-card.big { display: flex; margin-bottom: 10px; }
.app-card-img { width: 70px; background: rgba(255,92,0,.15); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.app-card-info { padding: 10px 12px; flex: 1; }
.app-card-name { font-size: 12px; font-weight: 700; color: #fff; }
.app-card-loc { font-size: 10px; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.app-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.app-price { font-size: 13px; font-weight: 800; color: #fff; }
.app-price.orange { color: var(--orange); }
.app-price small { font-size: 9px; font-weight: 400; color: rgba(255,255,255,.5); }
.rent-btn { background: var(--orange); color: #fff; border: none; border-radius: 6px; padding: 4px 10px; font-size: 10px; font-weight: 700; cursor: pointer; }

.app-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-card.small { padding: 10px; text-align: center; }
.app-card-emoji { font-size: 22px; margin-bottom: 4px; }
.app-card.small .app-card-name { font-size: 10px; margin-bottom: 3px; }
.app-card.small .app-price { font-size: 10px; color: rgba(255,255,255,.5); }

.badge-saved {
  position: absolute; top: 60px; right: -20px;
  background: #fff; border-radius: 10px;
  padding: 10px 14px; font-size: 12px; font-weight: 700; color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); line-height: 1.4;
}
.badge-saved small { font-weight: 400; color: #666; font-size: 10px; }

.badge-users {
  position: absolute; bottom: 60px; left: -20px;
  background: var(--orange); border-radius: 10px;
  padding: 10px 14px; font-size: 14px; font-weight: 800; color: #fff;
  box-shadow: 0 8px 24px rgba(255,92,0,.35); line-height: 1.3;
}
.badge-users small { font-weight: 400; font-size: 10px; opacity: .85; }

.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  margin-bottom: 14px; display: block;
}
.section-tag.center { text-align: center; }
.orange-tag { color: var(--orange) !important; }

.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px;
}
.section-title.dark { color: #111; }
.section-title.center { text-align: center; }
.section-title.white { color: #fff; }

.section-sub {
  font-size: 16px; color: var(--gray); line-height: 1.65;
  margin-bottom: 32px; max-width: 480px;
}
.section-sub.center { text-align: center; margin: 0 auto 48px; }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 42px; height: 42px; background: rgba(255,92,0,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.feature-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 2px; }
.feature-desc { font-size: 13px; color: #666; }

.playstore-btn { display: inline-flex !important; gap: 12px; padding: 12px 22px !important; }
.playstore-btn small { font-size: 10px; font-weight: 400; opacity: .7; }
.playstore-btn strong { font-size: 15px; }

/* ======= HOW IT WORKS ======= */
.how-section { background: var(--dark2); padding: 100px 0; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}

.step-card {
  background: var(--dark3); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid rgba(255,255,255,.06);
  position: relative; transition: transform .3s;
}
.step-card:hover { transform: translateY(-4px); }

.step-num {
  font-size: 48px; font-weight: 800; color: rgba(255,92,0,.15);
  line-height: 1; margin-bottom: 12px;
}
.step-icon { font-size: 32px; margin-bottom: 14px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ======= USE CASES ======= */
.usecases-section { background: var(--light-bg); padding: 100px 0; }

.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}

.case-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid rgba(0,0,0,.06);
  transition: all .3s; cursor: default;
}
.case-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.case-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.case-card h4 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 6px; }
.case-card p { font-size: 13px; color: #666; }

/* ======= TRUST ======= */
.trust-section { background: var(--dark); padding: 100px 0; }

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

.trust-card {
  background: var(--dark3); border-radius: var(--radius);
  padding: 28px 22px; border: 1px solid rgba(255,255,255,.06);
  text-align: center; transition: transform .3s;
}
.trust-card:hover { transform: translateY(-3px); }
.trust-icon { font-size: 36px; margin-bottom: 14px; }
.trust-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ======= TESTIMONIALS ======= */
/* ======= TESTIMONIALS ======= */
.testimonials-section {
  padding: 80px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

/* SCROLLING WRAP */
.testi-scroll-wrap {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
}

.testi-scroll-wrap::before,
.testi-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testi-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f8, transparent);
}

.testi-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f8, transparent);
}

.testi-track {
  display: flex;
  gap: 20px;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}

.testi-track:hover { animation-play-state: paused; }

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

/* CARDS */
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: 280px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.testi-stars { color: #FF5C00; font-size: 18px; margin-bottom: 12px; }

.testi-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 13px; color: #111; }
.testi-author small { font-size: 11px; color: #FF5C00; font-weight: 600; }

/* NEW badge for fresh reviews */
.testi-card.new-review {
  border: 1.5px solid #FF5C00;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ======= MODAL ======= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  animation: slideUp 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-header h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.modal-header p { font-size: 13px; color: #9ca3af; }

.modal-close {
  background: rgba(255,255,255,0.08);
  border: none; color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.modal-body { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: none;
  transition: border .2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #FF5C00; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

/* STAR PICKER */
.star-picker { display: flex; gap: 6px; }
.star-picker span {
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color .15s, transform .15s;
  line-height: 1;
}
.star-picker span:hover,
.star-picker span.active { color: #FF5C00; transform: scale(1.2); }

.modal-submit { width: 100%; justify-content: center; }
.modal-msg { text-align: center; font-size: 13px; margin-top: 12px; min-height: 20px; }
.modal-msg.success { color: #22c55e; }
.modal-msg.error { color: #ef4444; }

/* ======= FAQ ======= */
.faq-section { background: var(--dark2); padding: 100px 0; }

.faq-inner { max-width: 700px; }

.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--dark3); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06); overflow: hidden;
}

.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 18px 20px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-arrow { font-size: 11px; color: var(--gray); transition: transform .3s; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none; padding: 0 20px 18px;
  font-size: 14px; color: var(--gray); line-height: 1.7;
}
.faq-a.open { display: block; }

/* ======= CTA ======= */
.cta-section { background: var(--orange); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-title { font-size: clamp(28px,4vw,44px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.15; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; }

.cta-form {
  display: flex; gap: 10px; max-width: 480px;
  margin: 0 auto 14px; flex-wrap: wrap; justify-content: center;
}
.cta-form input {
  flex: 1; min-width: 220px; padding: 13px 18px; border-radius: 50px;
  border: none; font-size: 15px; font-family: var(--font); outline: none;
}
.cta-form .btn-orange {
  background: #111; color: #fff;
}
.cta-form .btn-orange:hover { background: #222; box-shadow: none; }
.cta-note { font-size: 12px; color: rgba(255,255,255,.65); }

/* ======= FOOTER ======= */
.footer { background: var(--dark); padding: 70px 0 0; border-top: 1px solid rgba(255,255,255,.06); }

.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 60px; padding-bottom: 60px;
}

.footer-brand p { font-size: 14px; color: var(--gray); margin: 16px 0 24px; max-width: 280px; line-height: 1.6; }

.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark3); border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: #fff; border: 1px solid rgba(255,255,255,.08);
  transition: all .2s;
}
.store-badge:hover { border-color: rgba(255,255,255,.2); transform: translateY(-1px); }
.store-badge small { font-size: 10px; opacity: .6; }
.store-badge strong { font-size: 13px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col a { display: block; font-size: 14px; color: var(--gray); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; font-size: 13px; color: var(--gray);
  max-width: 1140px; margin: 0 auto;
}

/* ======= CHAT BUTTON ======= */
.chat-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); border: none; cursor: pointer;
  font-size: 22px; box-shadow: 0 8px 24px rgba(255,92,0,.4);
  transition: transform .2s;
}
.chat-btn:hover { transform: scale(1.1); }

/* ======= ANIMATIONS ======= */
.fade-up { animation: fadeUp .7s ease both; }
.fade-left { animation: fadeLeft .7s ease both; }
.fade-right { animation: fadeRight .7s ease both; }

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-content { margin-left: 0; }
  .cases-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: #FF5C00;
  transform: translateY(-2px);
}

/* LOCATION BANNER */
.location-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,92,0,0.3);
  padding: 8px 24px;
  z-index: 2;
}
.location-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.location-pulse {
  font-size: 14px;
  animation: pulse 2s infinite;
}

.location-text {
  font-size: 12px;
  font-weight: 700;
  color: #FF5C00;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.location-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.location-chips span {
  background: rgba(255,92,0,0.12);
  border: 1px solid rgba(255,92,0,0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.location-more {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
}