/* =============================================
   URBAN RIDE GREEN MOTORS — FUTURISTIC THEME
   Cyber-Electric Design System
   ============================================= */

:root {
  --primary: #00f5a0;
  --primary-dark: #00c87a;
  --accent: #00d4ff;
  --accent2: #7b2fff;
  --bg-dark: #020810;
  --bg-mid: #050f1a;
  --bg-card: #0a1628;
  --bg-card-hover: #0e1f38;
  --text-primary: #e8f4f8;
  --text-muted: #7a9db5;
  --border-glow: rgba(0, 245, 160, 0.3);
  --border-accent: rgba(0, 212, 255, 0.3);
  --glow-green: 0 0 20px rgba(0, 245, 160, 0.5);
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
  --glow-purple: 0 0 20px rgba(123, 47, 255, 0.5);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.accent { color: var(--primary); }
.accent-glow {
  color: var(--primary);
  text-shadow: 0 0 30px var(--primary), 0 0 60px rgba(0,245,160,0.4);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4%;
  background: rgba(2, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 0.7rem 4%;
  background: rgba(2, 8, 16, 0.98);
  box-shadow: var(--glow-green);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 900;
}
.logo-icon { font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--primary)); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: var(--glow-green);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg-dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em;
  transition: var(--transition);
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 245, 160, 0.5);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--accent);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 4% 4rem;
  position: relative; z-index: 1;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 245, 160, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(123, 47, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  flex: 1; max-width: 600px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid var(--border-glow);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,245,160,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0,245,160,0); }
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.hero-title .line2 {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.06em;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border-glow);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; min-height: 450px;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-ring linear infinite;
}
.ring1 {
  width: 350px; height: 350px;
  border-color: rgba(0, 245, 160, 0.2);
  animation-duration: 20s;
}
.ring2 {
  width: 260px; height: 260px;
  border-color: rgba(0, 212, 255, 0.15);
  animation-duration: 15s;
  animation-direction: reverse;
}
.ring3 {
  width: 170px; height: 170px;
  border-color: rgba(123, 47, 255, 0.2);
  animation-duration: 10s;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.scooter-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,245,160,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}
.hero-scooter-img {
  position: relative; z-index: 2;
  max-width: 360px;
  filter: drop-shadow(0 0 30px rgba(0,245,160,0.5));
  animation: float-scooter 4s ease-in-out infinite;
}
@keyframes float-scooter {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  position: relative; z-index: 1;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2), var(--primary));
  background-size: 300% 100%;
  animation: gradient-shift 4s linear infinite;
  padding: 0.7rem 0;
  overflow: hidden;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.marquee-inner {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: 0.1em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMONS ===== */
section { position: relative; z-index: 1; padding: 6rem 4%; }

.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border-accent);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem; max-width: 500px; margin: 0 auto;
}

/* ===== MODELS GRID ===== */
.models-section { background: var(--bg-mid); }

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.bike-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 160, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  group: true;
}
.bike-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.bike-card:hover::before { transform: scaleX(1); }
.bike-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 245, 160, 0.35);
  box-shadow: 0 20px 60px rgba(0, 245, 160, 0.15), 0 0 30px rgba(0,212,255,0.1);
  background: var(--bg-card-hover);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #0a1a2e, #040d1a);
  overflow: hidden;
}
.card-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bike-card:hover .card-img-wrapper img { transform: scale(1.06); }

.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #0a1a2e, #040d1a);
}

.card-color-dots {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; gap: 6px;
}
.color-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.4); }

.card-img-count {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-glow);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.65rem; font-weight: 700;
}

.card-body { padding: 1.4rem; }
.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.card-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-bottom: 1rem;
}
.spec-item {
  background: rgba(0, 245, 160, 0.05);
  border: 1px solid rgba(0, 245, 160, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  text-align: center;
}
.spec-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--primary);
}
.spec-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-cta {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em;
}
.card-cta-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.bike-card:hover .card-cta-arrow {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: var(--glow-blue);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
  grid-column: 1 / -1;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  padding: 3rem;
  color: var(--text-muted);
}
.spinner-ring {
  width: 50px; height: 50px;
  border: 3px solid rgba(0,245,160,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(2, 8, 16, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  max-width: 900px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), var(--glow-green);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
  position: sticky; top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: rgba(255,80,80,0.3); border-color: rgba(255,80,80,0.5); }

.modal-image-zone {
  display: flex; align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 0.8rem;
  clear: both;
}

.slide-arrow {
  background: rgba(0,245,160,0.1);
  border: 1.5px solid var(--border-glow);
  color: var(--primary);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slide-arrow:hover {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: var(--glow-green);
}
.slide-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.modal-img-wrapper {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a1a2e, #040d1a);
  aspect-ratio: 16/9;
}
.modal-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.modal-main-img.fade-out { opacity: 0; transform: scale(0.97); }

.color-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glow);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em;
}
.img-counter {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: var(--text-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}

.modal-thumbnails {
  display: flex; gap: 0.6rem;
  padding: 0 1.5rem 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}
.modal-thumb {
  width: 70px; height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.modal-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-thumb.active {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}
.modal-thumb:hover:not(.active) { border-color: rgba(0,245,160,0.4); }

.modal-info { padding: 0 1.5rem 2rem; }
.modal-info h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 900;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-specs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8rem; margin-bottom: 1.2rem;
}
.modal-spec-item {
  background: rgba(0,245,160,0.06);
  border: 1px solid rgba(0,245,160,0.15);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}
.modal-spec-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--primary);
}
.modal-spec-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.modal-cta { width: 100%; justify-content: center; }

/* ===== FEATURES SECTION ===== */
.features-section { background: var(--bg-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}
.feature-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.4));
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.7;
}

/* ===== VISIT SECTION ===== */
.visit-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}
.visit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.visit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}
.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-green);
}
.visit-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.visit-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}
.visit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,245,160,0.03) 40px, rgba(0,245,160,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,245,160,0.03) 40px, rgba(0,245,160,0.03) 41px);
}
.map-overlay-text {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
  position: relative; z-index: 1;
}
.map-overlay-text span {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glow);
  padding: 4rem 4% 2rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 900;
  display: block; margin-bottom: 0.8rem;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.9rem; max-width: 300px;
}
.footer-links h5, .footer-social h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: var(--text-muted); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.social-icons { display: flex; flex-direction: column; gap: 0.6rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.88rem;
  transition: color 0.2s;
}
.social-btn:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted); font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 8rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 280px; margin-top: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(2,8,16,0.98);
    padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border-glow);
  }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-image-zone { padding: 1rem; }
}
