/* ═══════════════════════════════════════════════════════
   MOBILNY SERWIS ROWEROWY — PROFESSIONAL STYLESHEET
   ═══════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --orange: #F97316;
  --orange-dark: #ea6c0a;
  --orange-light: #fdba74;
  --orange-glow: rgba(249,115,22,.25);
  --navy: #0a0f1e;
  --navy-2: #0d1526;
  --navy-3: #111827;
  --surface: #141e32;
  --surface-2: #1a2540;
  --surface-3: #1e2d4a;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(249,115,22,.4);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --white: #ffffff;
  --green: #22c55e;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 40px rgba(249,115,22,.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,.4);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(249,115,22,.2);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Outfit', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }
button { border: none; cursor: pointer; background: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section base ─── */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 100px;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag--light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto; }
.section-desc--light { color: rgba(255,255,255,.7); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,115,22,.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-xl { padding: 18px 36px; font-size: 1.15rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
.btn-secondary svg { width: 16px; height: 16px; }
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.4); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .4s ease;
}
.navbar.scrolled {
  background: rgba(10,15,30,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: var(--transition);
}
.nav-logo:hover { color: var(--orange-light); }
.logo-icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  line-height: 1.3;
  color: var(--text-secondary);
}
.logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
  margin-left: 8px;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(249,115,22,.5); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 48px;
}
.hero-bg-anim {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 30%, rgba(249,115,22,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(99,102,241,.06) 0%, transparent 60%),
              var(--navy);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(249,115,22,.06);
  border-radius: 50%;
  animation: spin linear infinite;
}
.orbit-1 { width: 600px; height: 600px; top: -200px; left: -200px; animation-duration: 60s; }
.orbit-2 { width: 900px; height: 900px; top: -350px; right: -350px; animation-duration: 90s; animation-direction: reverse; }
.orbit-3 { width: 1200px; height: 1200px; bottom: -600px; left: 50%; transform: translateX(-50%); animation-duration: 120s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-3 { transform: translateX(-50%); }

.floating-gear {
  position: absolute;
  animation: floatGear linear infinite;
  color: var(--orange);
}
.gear-1 { width: 180px; height: 180px; top: 15%; right: 5%; animation-duration: 20s; }
.gear-2 { width: 120px; height: 120px; bottom: 20%; left: 3%; animation-duration: 14s; animation-direction: reverse; }
@keyframes floatGear {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-20px); }
  100% { transform: rotate(360deg) translateY(0); }
}

.road-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.road-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,.4), transparent);
  animation: roadAnim 3s linear infinite;
}
.road-line:nth-child(2) { animation-delay: -1s; }
.road-line:nth-child(3) { animation-delay: -2s; }
@keyframes roadAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 100px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp .6s ease both;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--orange); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp .6s .1s ease both;
}
.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp .6s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp .6s .3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp .6s .4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Animated bike */
.hero-bike-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight .8s .3s ease both;
  position: relative;
}
.hero-bike-svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 0 40px rgba(249,115,22,.15));
}
.wheel { animation: wheelSpin 4s linear infinite; transform-origin: center; }
.rear-wheel { transform-origin: 105px 195px; }
.front-wheel { transform-origin: 315px 195px; }

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .75rem;
  transition: var(--transition);
  animation: fadeInUp .6s .8s ease both;
  text-decoration: none;
}
.scroll-indicator:hover { color: var(--orange); }
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .3; }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--navy-3); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(249,115,22,.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(249,115,22,.04));
  border-color: rgba(249,115,22,.3);
}
.service-badge-featured {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 100px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(249,115,22,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: var(--transition);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon { background: rgba(249,115,22,.2); transform: scale(1.1); }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card p {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-secondary);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-section {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(249,115,22,.2);
  transform: translateY(-4px);
}
.why-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  transition: var(--transition);
}
.why-icon-wrap svg { width: 28px; height: 28px; }
.why-card:hover .why-icon-wrap { background: rgba(249,115,22,.2); transform: scale(1.1) rotate(5deg); }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.why-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section { background: var(--navy-3); }
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.reviews-stars { display: flex; gap: 4px; color: var(--orange); }
.reviews-stars svg { width: 22px; height: 22px; }
.reviews-score { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); }
.reviews-count { color: var(--text-muted); font-size: .9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover {
  border-color: rgba(249,115,22,.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.review-card--featured {
  background: linear-gradient(135deg, rgba(249,115,22,.08), var(--surface));
  border-color: rgba(249,115,22,.25);
}
.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: .95rem; color: var(--text-primary); }
.reviewer-info span { font-size: .78rem; color: var(--text-muted); }
.review-stars { display: flex; gap: 2px; margin-left: auto; }
.review-stars svg { width: 14px; height: 14px; }
.review-text {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.review-tag {
  padding: 4px 10px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.15);
  border-radius: 100px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
}
.reviews-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,.15) 0%, rgba(249,115,22,.03) 50%, rgba(99,102,241,.08) 100%);
  border-top: 1px solid rgba(249,115,22,.15);
  border-bottom: 1px solid rgba(249,115,22,.15);
}
.cta-band-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-accent { color: var(--orange); }
.cta-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: .85rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { background: var(--navy-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
  transition: var(--transition);
}
a.contact-value:hover { color: var(--orange); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }
.map-link {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.map-link:hover { border-color: rgba(249,115,22,.3); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.map-visual { position: relative; }
.map-svg { width: 100%; height: auto; border-radius: var(--radius-lg); }
.map-cta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,15,30,.95), transparent);
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.map-cta svg { width: 18px; height: 18px; }
.map-link:hover .map-cta { color: var(--orange-light); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  color: var(--text-secondary);
}
.footer-links-col h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li a {
  font-size: .9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links-col li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   FLOATING CALL BUTTON
══════════════════════════════════════ */
.floating-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(249,115,22,.45);
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.floating-call svg { width: 18px; height: 18px; }
.floating-call:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 40px rgba(249,115,22,.55); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(249,115,22,.45); }
  50% { box-shadow: 0 8px 40px rgba(249,115,22,.65), 0 0 0 8px rgba(249,115,22,.08); }
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 32px;
  }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-bike-wrap { order: -1; }
  .hero-bike-svg { max-width: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 70px 0 0 0; background: rgba(10,15,30,.97); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 998; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .nav-cta { font-size: 1.1rem; padding: 14px 28px; }
  .hamburger { display: flex; }
  .floating-call { display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .section { padding: 70px 0; }
  .hero { padding-top: 90px; padding-bottom: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
  .hero-bike-svg { max-width: 280px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
